Home
last modified time | relevance | path

Searched refs:exception_code (Results 1 – 19 of 19) sorted by relevance

/aosp12/system/hardware/interfaces/wifi/keystore/1.0/default/
H A Dkeystore.cpp181 auto exception_code = rc.getExceptionCode(); in keyStore2GetPubKey() local
182 if (exception_code == EX_SERVICE_SPECIFIC) { in keyStore2GetPubKey()
187 << exception_code; in keyStore2GetPubKey()
221 auto exception_code = rc.getExceptionCode(); in keyStore2Sign() local
222 if (exception_code == EX_SERVICE_SPECIFIC) { in keyStore2Sign()
227 << exception_code; in keyStore2Sign()
267 auto exception_code = rc.getExceptionCode(); in keyStore2Sign() local
268 if (exception_code == EX_SERVICE_SPECIFIC) { in keyStore2Sign()
273 << exception_code; in keyStore2Sign()
283 auto exception_code = rc.getExceptionCode(); in keyStore2Sign() local
[all …]
/aosp12/system/security/keystore-engine/
H A Dkeystore2_engine.cpp221 auto exception_code = rc.getExceptionCode(); in keystore2_sign() local
222 if (exception_code == EX_SERVICE_SPECIFIC) { in keystore2_sign()
227 << exception_code; in keystore2_sign()
237 auto exception_code = rc.getExceptionCode(); in keystore2_sign() local
238 if (exception_code == EX_SERVICE_SPECIFIC) { in keystore2_sign()
243 << "Communication with Keystore finish failed error: " << exception_code; in keystore2_sign()
397 auto exception_code = rc.getExceptionCode(); in EVP_PKEY_from_keystore2() local
398 if (exception_code == EX_SERVICE_SPECIFIC) { in EVP_PKEY_from_keystore2()
403 << exception_code; in EVP_PKEY_from_keystore2()
/aosp12/system/vold/
H A DKeymaster.cpp57 auto exception_code = rc.getExceptionCode(); in logKeystore2ExceptionIfPresent() local
58 if (exception_code == EX_SERVICE_SPECIFIC) { in logKeystore2ExceptionIfPresent()
63 << " failed error: " << exception_code; in logKeystore2ExceptionIfPresent()
/aosp12/frameworks/native/libs/binder/rust/src/
H A Derror.rs209 pub fn exception_code(&self) -> ExceptionCode { in exception_code() method
278 let self_code = self.exception_code(); in eq()
279 let other_code = other.exception_code(); in eq()
/aosp12/system/security/keystore2/src/
H A Derror.rs82 match s.exception_code() { in map_km_error()
109 r.map_err(|s| match s.exception_code() { in map_rem_prov_error()
119 r.map_err(|s| match s.exception_code() { in map_binder_status()
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk-source/gen/include/aidl/android/aidl/loggable/
H A DBnLoggableInterface.h25 int32_t exception_code; member
H A DBpLoggableInterface.h31 int32_t exception_code; member
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk_platform-source/gen/include/aidl/android/aidl/loggable/
H A DBnLoggableInterface.h25 int32_t exception_code; member
H A DBpLoggableInterface.h31 int32_t exception_code; member
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/include/android/aidl/loggable/
H A DBnLoggableInterface.h29 int32_t exception_code; member
H A DBpLoggableInterface.h31 int32_t exception_code; member
/aosp12/system/netd/include/binder_utils/
H A DBinderUtil.h80 const int exceptionCode = TO_EXCEPTION(log.exception_code); in binderCallLogFn()
/aosp12/system/tools/aidl/tests/
H A Daidl_test_client_loggable_interface.cpp96 EXPECT_EQ(0, log.exception_code); in TEST_F()
H A Daidl_test_client_ndk_loggable_interface.cpp101 EXPECT_EQ(0, log.exception_code); in TEST_F()
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/android/aidl/loggable/
H A DILoggableInterface.cpp227 _transaction_log.exception_code = _aidl_status.exceptionCode(); in LogThis()
419 _transaction_log.exception_code = _aidl_status.exceptionCode(); in onTransact()
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk-source/gen/android/aidl/loggable/
H A DILoggableInterface.cpp147 _transaction_log.exception_code = AStatus_getExceptionCode(_aidl_status.get()); in _aidl_onTransact()
382 _transaction_log.exception_code = AStatus_getExceptionCode(_aidl_status.get()); in LogThis()
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-ndk_platform-source/gen/android/aidl/loggable/
H A DILoggableInterface.cpp147 _transaction_log.exception_code = AStatus_getExceptionCode(_aidl_status.get()); in _aidl_onTransact()
382 _transaction_log.exception_code = AStatus_getExceptionCode(_aidl_status.get()); in LogThis()
/aosp12/system/tools/aidl/tests/rust/
H A Dtest_client.rs354 status.exception_code(), in test_service_specific_exception()
653 assert_eq!(ret.unwrap_err().exception_code(), binder::ExceptionCode::ILLEGAL_ARGUMENT); in test_versioned_unknown_union_field_triggers_error()
/aosp12/frameworks/native/libs/binder/rust/tests/
H A Dserialization.rs301 assert_eq!(status.exception_code(), ExceptionCode::NULL_POINTER); in on_transact()