Home
last modified time | relevance | path

Searched refs:thisParcel (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/jni/
Dandroid_os_Parcel.cpp617 Parcel* thisParcel = reinterpret_cast<Parcel*>(thisNativePtr); in android_os_Parcel_compareData() local
618 LOG_ALWAYS_FATAL_IF(thisParcel == nullptr, "Should not be null"); in android_os_Parcel_compareData()
623 return thisParcel->compareData(*otherParcel); in android_os_Parcel_compareData()
629 Parcel* thisParcel = reinterpret_cast<Parcel*>(thisNativePtr); in android_os_Parcel_compareDataInRange() local
630 LOG_ALWAYS_FATAL_IF(thisParcel == nullptr, "Should not be null"); in android_os_Parcel_compareDataInRange()
637 thisParcel->compareDataInRange(thisOffset, *otherParcel, otherOffset, length, &result); in android_os_Parcel_compareDataInRange()
648 Parcel* thisParcel = reinterpret_cast<Parcel*>(thisNativePtr); in android_os_Parcel_appendFrom() local
649 if (thisParcel == NULL) { in android_os_Parcel_appendFrom()
657 status_t err = thisParcel->appendFrom(otherParcel, offset, length); in android_os_Parcel_appendFrom()