Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_status.h241 binder_exception_t AStatus_getExceptionCode(const AStatus* status) __INTRODUCED_IN(29);
/frameworks/native/libs/binder/ndk/
Dstatus.cpp53 binder_exception_t AStatus_getExceptionCode(const AStatus* status) { in AStatus_getExceptionCode() function
Dlibbinder_ndk.map.txt86 AStatus_getExceptionCode;
/frameworks/native/libs/binder/ndk/tests/
DbinderVendorDoubleLoadTest.cpp108 EXPECT_EQ(STATUS_OK, AStatus_getExceptionCode(status.get())) in TEST()
/frameworks/libs/native_bridge_support/android_api/libbinder_ndk/
Dstubs_arm.cc197 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getExceptionCode);
386 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getExceptionCode); in init_stub_library()
Dstubs_arm64.cc197 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getExceptionCode);
386 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getExceptionCode); in init_stub_library()
Dstubs_riscv64.cc197 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_getExceptionCode);
386 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_getExceptionCode); in init_stub_library()
/frameworks/native/libs/binder/ndk/include_cpp/android/
Dbinder_auto_utils.h266 binder_exception_t getExceptionCode() const { return AStatus_getExceptionCode(get()); } in getExceptionCode()
/frameworks/native/libs/binder/rust/src/
Derror.rs221 let code = unsafe { sys::AStatus_getExceptionCode(self.as_native()) }; in exception_code()