如何查找原生java函数调用的源代码

Jak*_*ake 6 java android native

Android OS在android.os.Binder.java中有一个名为BinderProxy的类.该类具有以下函数声明:

public native boolean transact(int code, Parcel data, Parcel reply, int flags) throws RemoteException;
Run Code Online (Sandbox Code Playgroud)

我想知道调用此函数时执行的代码.

我该怎么做?

MBy*_*ByD 4

这里,这是Binder.cpp的源代码,其中包含了这个函数。