董小虫 2012-02-21
在Android源码里,有许多方法都是使用Jni机制调用底层的C++实现,比如大家都很熟悉的Binder.java里,就有
public static final native int getCallingPid();
public static final native int getCallingUid();
public static final native long clearCallingIdentity();
等方法都是直接调用C++里的实现。
通过下面命令可以很快找到对应的实现,
. build/envsetup
cgrep ./frameworks '"getCallingPid"'
这时会查找到如下结果:
./frameworks/base/core/jni/android_util_Binder.cpp:745: { "getCallingPid", "()I", (void*)android_os_Binder_getCallingPid },
这样就可以知道对应的C++实现方法名字为android_os_Binder_getCallingPid, 在该文件中找这个方法的实现即可。