Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dbinder_ndk.cpp92 PARCEL_READ(std::string, ndk::AParcel_readString),
93 PARCEL_READ(std::optional<std::string>, ndk::AParcel_readString),
/frameworks/libs/native_bridge_support/libbinder_ndk/
Dstubs_arm.cc80 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readString);
196 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readString); in init_stub_library()
Dstubs_arm64.cc80 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_readString);
196 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_readString); in init_stub_library()
/frameworks/native/libs/binder/ndk/
Dlibbinder_ndk.map.txt48 AParcel_readString;
Dparcel.cpp329 binder_status_t AParcel_readString(const AParcel* parcel, void* stringData, in AParcel_readString() function
424 binder_status_t status = AParcel_readString(parcel, static_cast<void*>(&adapter), in AParcel_readStringArray()
/frameworks/native/libs/binder/ndk/include_cpp/android/
Dbinder_parcelable_utils.h129 binder_status_t status = AParcel_readString(mParcel.get(), &parcelableDescInParcel); in getParcelable()
Dbinder_parcel_utils.h357 static inline binder_status_t AParcel_readString(const AParcel* parcel, std::string* str) { in AParcel_readString() function
359 return AParcel_readString(parcel, stringData, AParcel_stdStringAllocator); in AParcel_readString()
377 static inline binder_status_t AParcel_readString(const AParcel* parcel, in AParcel_readString() function
380 return AParcel_readString(parcel, stringData, AParcel_nullableStdStringAllocator); in AParcel_readString()
/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_parcel.h519 binder_status_t AParcel_readString(const AParcel* parcel, void* stringData,
/frameworks/native/libs/binder/rust/src/parcel/
Dparcelable.rs523 sys::AParcel_readString( in deserialize()