Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/ndk/include_cpp/android/
Dbinder_parcelable_utils.h105 AParcel_writeString(mParcel.get(), T::descriptor, strlen(T::descriptor)); in setParcelable()
Dbinder_parcel_utils.h593 static inline binder_status_t AParcel_writeString(AParcel* parcel, const std::string& str) {
594 return AParcel_writeString(parcel, str.c_str(), static_cast<int32_t>(str.size()));
608 static inline binder_status_t AParcel_writeString(AParcel* parcel,
611 return AParcel_writeString(parcel, nullptr, -1);
614 return AParcel_writeString(parcel, str->c_str(), static_cast<int32_t>(str->size()));
1615 return AParcel_writeString(parcel, value);
1660 return AParcel_writeString(parcel, value);
/frameworks/libs/native_bridge_support/android_api/libbinder_ndk/
Dstubs_arm.cc124 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeString);
313 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeString); in init_stub_library()
Dstubs_arm64.cc124 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeString);
313 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeString); in init_stub_library()
Dstubs_riscv64.cc124 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeString);
313 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeString); in init_stub_library()
/frameworks/native/libs/binder/ndk/
Dlibbinder_ndk.map.txt73 AParcel_writeString;
Dparcel.cpp324 binder_status_t AParcel_writeString(AParcel* parcel, const char* string, int32_t length) { in AParcel_writeString() function
415 binder_status_t status = AParcel_writeString(parcel, str, elementLength); in AParcel_writeStringArray()
/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_parcel.h505 binder_status_t AParcel_writeString(AParcel* parcel, const char* string, int32_t length)
/frameworks/native/libs/binder/rust/src/parcel/
Dparcelable.rs596 status_result(sys::AParcel_writeString(parcel.as_native_mut(), ptr::null(), -1)) in serialize_option()
607 status_result(sys::AParcel_writeString( in serialize_option()