On Android, there is a class called BinderProxy inside android.os.Binder.java. This class has the following function declaration:
public native boolean transact(int code, Parcel data, Parcel reply, int flags) throws RemoteException;
I want to know what code is executed when this function is called.
How do i do this?
source share