Home
last modified time | relevance | path

Searched refs:to_binder_result (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Virtualization/compos/src/
Dcompsvc.rs42 use compos_common::binder::to_binder_result;
92 return to_binder_result(result); in initializeSystemProperties()
106 to_binder_result(self.do_odrefresh(args)) in odrefresh()
110 to_binder_result(compos_key::get_public_key()) in getPublicKey()
114 to_binder_result(compos_key::get_attestation_chain()) in getAttestationChain()
/packages/modules/Virtualization/compos/composd/src/
Dservice.rs32 use compos_common::binder::to_binder_result;
56 to_binder_result(self.do_start_staged_apex_compile(callback)) in startStagedApexCompile()
70 to_binder_result(self.do_start_test_compile(prefer_staged, callback)) in startTestCompile()
/packages/modules/Virtualization/compos/common/
Dbinder.rs26 pub fn to_binder_result<T, E: Debug>(result: Result<T, E>) -> BinderResult<T> { in to_binder_result() function