Home
last modified time | relevance | path

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

/frameworks/libs/native_bridge_support/android_api/libbinder_ndk/
Dstubs_arm.cc114 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeDoubleArray);
303 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeDoubleArray); in init_stub_library()
Dstubs_arm64.cc114 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeDoubleArray);
303 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeDoubleArray); in init_stub_library()
Dstubs_riscv64.cc114 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AParcel_writeDoubleArray);
303 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AParcel_writeDoubleArray); in init_stub_library()
/frameworks/native/libs/binder/ndk/
Dlibbinder_ndk.map.txt63 AParcel_writeDoubleArray;
Dparcel.cpp615 binder_status_t AParcel_writeDoubleArray(AParcel* parcel, const double* arrayData, int32_t length) { in AParcel_writeDoubleArray() function
/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_parcel.h911 binder_status_t AParcel_writeDoubleArray(AParcel* parcel, const double* arrayData, int32_t length)
/frameworks/native/libs/binder/ndk/include_cpp/android/
Dbinder_parcel_utils.h1246 return AParcel_writeDoubleArray(parcel, vec.data(), static_cast<int32_t>(vec.size()));
1254 if (!vec) return AParcel_writeDoubleArray(parcel, nullptr, -1);
1475 return AParcel_writeDoubleArray(parcel, arr.data(), static_cast<int32_t>(arr.size()));
/frameworks/native/libs/binder/rust/src/parcel/
Dparcelable.rs503 impl SerializeArray for f64 = sys::AParcel_writeDoubleArray;