Home
last modified time | relevance | path

Searched refs:new_exception (Results 1 – 21 of 21) sorted by relevance

/aosp_15_r20/system/authgraph/hal/src/
H A Dchannel.rs40 binder::Status::new_exception( in write_msg()
48 binder::Status::new_exception( in write_msg()
55 binder::Status::new_exception( in write_msg()
69 binder::Status::new_exception(binder::ExceptionCode::TRANSACTION_FAILED, None) in read_msg()
75 binder::Status::new_exception(binder::ExceptionCode::TRANSACTION_FAILED, None) in read_msg()
H A Dlib.rs138 binder::Status::new_exception( in arg_err()
151 binder::Status::new_exception(binder::ExceptionCode::UNSUPPORTED_OPERATION, None) in errcode_to_binder()
154 binder::Status::new_exception(binder::ExceptionCode::SERVICE_SPECIFIC, None) in errcode_to_binder()
H A Dservice.rs173 PubKey::SignedKey(_) => Err(binder::Status::new_exception( in unsigned_pub_key()
/aosp_15_r20/system/keymint/hal/src/
H A Dlib.rs79 return Err(binder::Status::new_exception( in extract_rsp()
93 binder::Status::new_exception( in write_msg()
101 binder::Status::new_exception( in write_msg()
108 binder::Status::new_exception( in write_msg()
122 binder::Status::new_exception(binder::ExceptionCode::TRANSACTION_FAILED, None) in read_msg()
128 binder::Status::new_exception(binder::ExceptionCode::TRANSACTION_FAILED, None) in read_msg()
264 binder::Status::new_exception( in send_hal_info()
/aosp_15_r20/external/uwb/src/rust/uci_hal_android/
H A Duci_hal_android.rs107 BinderStatus::new_exception(ExceptionCode::TRANSACTION_FAILED, None), in onHalEvent()
115 BinderStatus::new_exception(ExceptionCode::TRANSACTION_FAILED, None) in onHalEvent()
119 BinderStatus::new_exception(ExceptionCode::TRANSACTION_FAILED, None) in onHalEvent()
128 BinderStatus::new_exception(ExceptionCode::TRANSACTION_FAILED, None) in onUciMessage()
H A Derror.rs42 BinderStatus::new_exception(status_code_to_exception_code(e), None) in from()
45 BinderStatus::new_exception(uwb_core_error_to_exception_code(e), None) in from()
/aosp_15_r20/packages/modules/Virtualization/tests/testapk/src/native/
Dtestbinary.rs75 a.checked_add(b).ok_or_else(|| Status::new_exception(ExceptionCode::ILLEGAL_ARGUMENT, None)) in addInteger()
140 Err(Status::new_exception(ExceptionCode::UNSUPPORTED_OPERATION, Some(message))) in unimplemented()
/aosp_15_r20/system/core/trusty/keymint/src/
H A Dkeymint_hal_main.rs50 binder::Status::new_exception( in execute()
66 binder::Status::new_exception( in execute()
/aosp_15_r20/system/secretkeeper/hal/src/
H A Dlib.rs87 binder::Status::new_exception( in deleteIds()
133 binder::Status::new_exception( in failed_cbor()
/aosp_15_r20/frameworks/native/libs/binder/rust/src/
H A Derror.rs154 pub fn new_exception(exception: ExceptionCode, message: Option<&CStr>) -> Status { in new_exception() method
172 Self::new_exception(exception, message.and_then(to_cstring).as_deref()) in new_exception_str()
H A Dbinder.rs957 let status = $crate::Status::new_exception(
/aosp_15_r20/hardware/interfaces/light/aidl/default/
H A Dlights.rs72 Err(Status::new_exception(ExceptionCode::UNSUPPORTED_OPERATION, None)) in setLightState()
/aosp_15_r20/device/google/cuttlefish/guest/hals/light/
Dlights.rs110 Err(Status::new_exception(ExceptionCode::UNSUPPORTED_OPERATION, None)) in setLightState()
/aosp_15_r20/packages/modules/Virtualization/android/composd/src/
Dservice.rs120 Err(Status::new_exception(ExceptionCode::SECURITY, None)) in check_permissions()
/aosp_15_r20/system/core/trusty/secretkeeper/src/
H A Dhal_main.rs54 binder::Status::new_exception( in binderr()
/aosp_15_r20/external/python/cpython3/Lib/test/test_capi/
Dtest_misc.py100 new_exception = _testcapi.set_exception(orig_exception)
108 self.assertEqual(new_exception, new_exc)
109 self.assertEqual(new_sys_exception, new_exception)
/aosp_15_r20/system/security/keystore2/src/error/
H A Dtests.rs74 Err(BinderStatus::new_exception(ex, None)) in binder_exception()
/aosp_15_r20/frameworks/native/libs/binder/rust/tests/
H A Dserialization.rs300 reply.write(&Status::new_exception( in on_transact()
/aosp_15_r20/art/runtime/
H A Dthread.cc4769 void Thread::SetAsyncException(ObjPtr<mirror::Throwable> new_exception) { in SetAsyncException() argument
4770 CHECK(new_exception != nullptr); in SetAsyncException()
4779 tlsPtr_.async_exception = new_exception.Ptr(); in SetAsyncException()
4798 void Thread::SetException(ObjPtr<mirror::Throwable> new_exception) { in SetException() argument
4799 CHECK(new_exception != nullptr); in SetException()
4801 tlsPtr_.exception = new_exception.Ptr(); in SetException()
H A Dthread.h706 void SetException(ObjPtr<mirror::Throwable> new_exception) REQUIRES_SHARED(Locks::mutator_lock_);
714 void SetAsyncException(ObjPtr<mirror::Throwable> new_exception)
/aosp_15_r20/external/python/setuptools/
DCHANGES.rst1449 * #2199: Fix exception causes all over the codebase by using ``raise new_exception from old_excepti…