Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/ndk/include_ndk/android/
Dbinder_status.h230 bool AStatus_isOk(const AStatus* status) __INTRODUCED_IN(29);
/frameworks/native/libs/binder/ndk/
Dstatus.cpp49 bool AStatus_isOk(const AStatus* status) { in AStatus_isOk() function
Dlibbinder_ndk.map.txt90 AStatus_isOk;
/frameworks/libs/native_bridge_support/android_api/libbinder_ndk/
Dstubs_arm.cc201 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_isOk);
390 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_isOk); in init_stub_library()
Dstubs_arm64.cc201 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_isOk);
390 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_isOk); in init_stub_library()
Dstubs_riscv64.cc201 DEFINE_INTERCEPTABLE_STUB_FUNCTION(AStatus_isOk);
390 INIT_INTERCEPTABLE_STUB_FUNCTION("libbinder_ndk.so", AStatus_isOk); in init_stub_library()
/frameworks/native/libs/binder/ndk/include_cpp/android/
Dbinder_auto_utils.h261 bool isOk() const { return get() != nullptr && AStatus_isOk(get()); } in isOk()
/frameworks/native/libs/binder/rust/src/
Derror.rs188 unsafe { sys::AStatus_isOk(self.as_native()) } in is_ok()