Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/ndk/tests/
Diface.cpp56 stat = AParcel_readInt32(in, &valueIn); in IFoo_Class_onTransact()
94 stat = AParcel_readInt32(parcelOut.get(), out); in doubleNumber()
/frameworks/native/libs/binder/ndk/include_cpp/android/
Dbinder_parcelable_utils.h105 RETURN_ON_FAILURE(AParcel_readInt32(parcel, &wireStability));
111 binder_status_t status = AParcel_readInt32(parcel, &dataSize);
Dbinder_parcel_utils.h699 binder_status_t status = AParcel_readInt32(parcel, &null);
739 binder_status_t status = AParcel_readInt32(parcel, &null);
752 binder_status_t status = AParcel_readInt32(parcel, &null);
1416 binder_status_t err = AParcel_readInt32(parcel, &size);
1435 binder_status_t err = AParcel_readInt32(parcel, &size);
1691 return AParcel_readInt32(parcel, value);
/frameworks/base/core/jni/
Dcom_android_internal_os_LongArrayMultiStateCounter.cpp145 THROW_ON_READ_ERROR(AParcel_readInt32(parcel.get(), &stateCount)); in native_initFromParcel()
148 THROW_ON_READ_ERROR(AParcel_readInt32(parcel.get(), &arrayLength)); in native_initFromParcel()
Dcom_android_internal_os_LongMultiStateCounter.cpp150 THROW_ON_READ_ERROR(AParcel_readInt32(parcel.get(), &stateCount)); in native_initFromParcel()
/frameworks/libs/native_bridge_support/libbinder_ndk/
Dstubs_arm.cc89 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt32);
229 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt32); in init_stub_library()
Dstubs_arm64.cc89 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readInt32);
229 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readInt32); in init_stub_library()
/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dbinder_ndk.cpp30 return AParcel_readInt32(parcel, &mValue); in readFromParcel()
113 PARCEL_READ(int32_t, AParcel_readInt32),
/frameworks/native/libs/binder/ndk/
Dlibbinder_ndk.map.txt41 AParcel_readInt32;
Dparcel.cpp524 binder_status_t AParcel_readInt32(const AParcel* parcel, int32_t* value) { in AParcel_readInt32() function
/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_parcel.h727 binder_status_t AParcel_readInt32(const AParcel* parcel, int32_t* value) __INTRODUCED_IN(29);
/frameworks/base/libs/hwui/jni/
DBitmap.cpp593 if (AParcel_readInt32(mParcel, &temp) != STATUS_OK) { in readInt32()
672 ON_ERROR_RETURN(AParcel_readInt32(parcel, (int32_t*)&type)); in readBlob()
693 ON_ERROR_RETURN(AParcel_readInt32(parcel, &size)); in readBlob()
/frameworks/native/libs/binder/rust/src/parcel/
Dparcelable.rs427 impl Deserialize for i32 = sys::AParcel_readInt32;