跳转至

Parcel源码分析

//frameworks/base/core/java/android/os/Parcel.java
1
2
3
4
5
6
7
8
9
//frameworks/base/core/jni/android_os_Parcel.cpp
static jobject android_os_Parcel_readStrongBinder(JNIEnv* env, jclass clazz, jlong nativePtr)
{
    Parcel* parcel = reinterpret_cast<Parcel*>(nativePtr);
    if (parcel != NULL) {
        return javaObjectForIBinder(env, parcel->readStrongBinder());
    }
    return NULL;
}
//frameworks/base/core/jni/android_os_Parcel.cpp