/system/core/init/ |
D | check_builtins.h | 29 Result<void> check_chown(const BuiltinArguments& args); 30 Result<void> check_exec(const BuiltinArguments& args); 31 Result<void> check_exec_background(const BuiltinArguments& args); 32 Result<void> check_exec_reboot_on_failure(const BuiltinArguments& args); 33 Result<void> check_interface_restart(const BuiltinArguments& args); 34 Result<void> check_interface_start(const BuiltinArguments& args); 35 Result<void> check_interface_stop(const BuiltinArguments& args); 36 Result<void> check_load_system_props(const BuiltinArguments& args); 37 Result<void> check_loglevel(const BuiltinArguments& args); 38 Result<void> check_mkdir(const BuiltinArguments& args); [all …]
|
D | service_parser.h | 39 Result<void> ParseSection(std::vector<std::string>&& args, const std::string& filename, 41 Result<void> ParseLineSection(std::vector<std::string>&& args, int line) override; 42 Result<void> EndSection() override; 46 using OptionParser = Result<void> (ServiceParser::*)(std::vector<std::string>&& args); 49 Result<void> ParseCapabilities(std::vector<std::string>&& args); 50 Result<void> ParseClass(std::vector<std::string>&& args); 51 Result<void> ParseConsole(std::vector<std::string>&& args); 52 Result<void> ParseCritical(std::vector<std::string>&& args); 53 Result<void> ParseDisabled(std::vector<std::string>&& args); 54 Result<void> ParseEnterNamespace(std::vector<std::string>&& args); [all …]
|
D | check_builtins.cpp | 58 Result<void> InitializeHostPropertyInfoArea(const std::vector<PropertyInfoEntry>& property_infos) { in InitializeHostPropertyInfoArea() 70 static Result<void> check_stub(const BuiltinArguments& args) { in check_stub() 76 Result<void> check_chown(const BuiltinArguments& args) { in check_chown() 95 Result<void> check_exec(const BuiltinArguments& args) { in check_exec() 106 Result<void> check_exec_background(const BuiltinArguments& args) { in check_exec_background() 110 Result<void> check_exec_reboot_on_failure(const BuiltinArguments& args) { in check_exec_reboot_on_failure() 119 Result<void> check_interface_restart(const BuiltinArguments& args) { in check_interface_restart() 126 Result<void> check_interface_start(const BuiltinArguments& args) { in check_interface_start() 130 Result<void> check_interface_stop(const BuiltinArguments& args) { in check_interface_stop() 134 Result<void> check_load_system_props(const BuiltinArguments& args) { in check_load_system_props() [all …]
|
/system/server_configurable_flags/aconfigd/ |
D | storage_files.h | 57 base::Result<void>& status); 103 base::Result<PackageFlagContext> GetPackageFlagContext( 107 base::Result<bool> HasPackage(const std::string& package); 110 base::Result<bool> HasFlag(const std::string& package, 114 base::Result<uint8_t> GetFlagAttribute(const PackageFlagContext& context); 117 base::Result<std::string> GetServerFlagValue(const PackageFlagContext& context); 120 base::Result<std::string> GetLocalFlagValue(const PackageFlagContext& context); 123 base::Result<std::string> GetBootFlagValue(const PackageFlagContext& context); 126 base::Result<std::string> GetDefaultFlagValue(const PackageFlagContext& context); 129 base::Result<void> SetServerFlagValue(const PackageFlagContext& context, [all …]
|
D | storage_files_manager.h | 65 base::Result<StorageFiles*> GetStorageFiles(const std::string& container); 68 base::Result<StorageFiles*> AddNewStorageFiles(const std::string& container, 74 base::Result<void> RestoreStorageFiles(const PersistStorageRecord& pb); 77 base::Result<void> UpdateStorageFiles(const std::string& container, 83 base::Result<bool> AddOrUpdateStorageFiles(const std::string& container, 89 base::Result<void> CreateStorageBootCopy(const std::string& container); 92 base::Result<void> ResetAllStorage(); 95 base::Result<std::string> GetContainer(const std::string& package); 104 base::Result<void> WritePersistStorageRecordsToFile( 108 base::Result<void> UpdateFlagValue(const std::string& package_name, [all …]
|
D | aconfigd.h | 68 base::Result<void> InitializeInMemoryStorageRecords(); 71 base::Result<void> InitializePlatformStorage(); 74 base::Result<void> InitializeMainlineStorage(); 77 base::Result<void> HandleSocketRequest(const StorageRequestMessage& message, 83 base::Result<void> HandleFlagOverride( 88 base::Result<void> HandleOTAStaging( 93 base::Result<void> HandleNewStorage( 98 base::Result<void> HandleFlagQuery( 103 base::Result<void> HandleLocalOverrideRemoval( 108 base::Result<void> HandleStorageReset(StorageReturnMessage& return_msg); [all …]
|
/system/apex/apexd/ |
D | apexd.h | 77 android::base::Result<void> Unmount( 80 android::base::Result<void> ResumeRevertIfNeeded(); 82 android::base::Result<void> PreinstallPackages( 85 android::base::Result<void> StagePackages( 87 android::base::Result<void> UnstagePackages( 90 android::base::Result<std::vector<ApexFile>> SubmitStagedSession( 94 android::base::Result<std::vector<ApexFile>> GetStagedApexFiles( 97 android::base::Result<ClassPath> MountAndDeriveClassPath( 99 android::base::Result<void> MarkStagedSessionReady(const int session_id) 101 android::base::Result<void> MarkStagedSessionSuccessful(const int session_id) [all …]
|
/system/authgraph/core/src/ |
D | traits.rs | 53 fn generate_key(&self, rng: &mut dyn Rng) -> Result<AesKey, Error> { in generate_key() 65 ) -> Result<Vec<u8>, Error>; in encrypt() 73 ) -> Result<Vec<u8>, Error>; in decrypt() 81 fn generate_key(&self) -> Result<EcExchangeKey, Error>; in generate_key() 88 ) -> Result<EcdhSecret, Error>; in compute_shared_secret() 98 fn generate_key(&self, _curve: EllipticCurve) -> Result<(EcSignKey, EcVerifyKey), Error> { in generate_key() 111 fn sign(&self, sign_key: &EcSignKey, data: &[u8]) -> Result<Vec<u8>, Error>; in sign() 122 ) -> Result<(), Error>; in verify_signature() argument 128 fn compute_hmac(&self, key: &HmacKey, data: &[u8]) -> Result<Vec<u8>, Error>; in compute_hmac() 134 fn extract(&self, salt: &[u8], ikm: &EcdhSecret) -> Result<PseudoRandKey, Error>; in extract() [all …]
|
/system/keymint/common/src/crypto/ |
D | traits.rs | 106 ) -> Result<KeyMaterial, Error> { in generate_key() 132 ) -> Result<(KeyMaterial, KeySizeInBits), Error> { in import_key() 147 ) -> Result<Box<dyn EmittingOperation>, Error>; in begin() 155 ) -> Result<Box<dyn AadOperation>, Error>; in begin_aead() 166 ) -> Result<KeyMaterial, Error> { in generate_key() 175 fn import_key(&self, data: &[u8], _params: &[keymint::KeyParam]) -> Result<KeyMaterial, Error> { in import_key() 189 ) -> Result<Box<dyn EmittingOperation>, Error>; in begin() 201 ) -> Result<KeyMaterial, Error> { in generate_key() 216 ) -> Result<(KeyMaterial, KeySizeInBits), Error> { in import_key() 230 ) -> Result<Box<dyn AccumulatingOperation>, Error>; in begin() [all …]
|
/system/tools/aidl/tests/rust/ |
D | test_service.rs | 61 fn GetName(&self) -> binder::Result<String> { in GetName() 71 fn RealName(&self) -> binder::Result<String> { in RealName() 82 fn RealName(&self) -> binder::Result<String> { in RealName() 95 ) -> binder::Result<Option<binder::Strong<dyn ITestService::ITestService>>> { in GetTestService() 109 fn $repeat_name(&self, token: $type) -> binder::Result<$type> { 121 ) -> binder::Result<Vec<$type>> { 141 ) -> binder::Result<Option<Vec<$type>>> { 151 fn UnimplementedMethod(&self, _: i32) -> binder::Result<i32> { in UnimplementedMethod() 156 fn TestOneway(&self) -> binder::Result<()> { in TestOneway() argument 160 fn Deprecated(&self) -> binder::Result<()> { in Deprecated() argument [all …]
|
D | test_service_async.rs | 65 async fn GetName(&self) -> binder::Result<String> { in GetName() 76 async fn RealName(&self) -> binder::Result<String> { in RealName() 88 async fn RealName(&self) -> binder::Result<String> { in RealName() 102 ) -> binder::Result<Option<binder::Strong<dyn ITestService::ITestService>>> { in GetTestService() 121 fn $repeat_name<'a, 'b>(&'a self, token: $type) -> BoxFuture<'b, binder::Result<$type>> 137 ) -> BoxFuture<'d, binder::Result<Vec<$type>>> 165 ) -> BoxFuture<'c, binder::Result<Option<Vec<$type>>>> 181 async fn UnimplementedMethod(&self, _: i32) -> binder::Result<i32> { in UnimplementedMethod() 186 async fn TestOneway(&self) -> binder::Result<()> { in TestOneway() argument 190 async fn Deprecated(&self) -> binder::Result<()> { in Deprecated() argument [all …]
|
/system/libbase/ |
D | result_test.cpp | 43 Result<std::string> result = "success"; in TEST() 54 ASSERT_TRUE(Result<std::string>("success").ok()); in TEST() 55 ASSERT_TRUE(Result<std::string>("success").has_value()); in TEST() 57 EXPECT_EQ("success", *Result<std::string>("success")); in TEST() 58 EXPECT_EQ("success", Result<std::string>("success").value()); in TEST() 60 EXPECT_EQ('s', Result<std::string>("success")->data()[0]); in TEST() 64 Result<void> ok = {}; in TEST() 69 Result<void> fail = Error() << "failure" << 1; in TEST() 76 auto test = [](bool ok) -> Result<void> { in TEST() 89 Result<void> result = Error() << "failure" << 1; in TEST() [all …]
|
/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/ |
D | ITestService.rs | 21 fn r#UnimplementedMethod(&self, _arg_arg: i32) -> binder::Result<i32>; 23 fn r#Deprecated(&self) -> binder::Result<()>; 24 fn r#TestOneway(&self) -> binder::Result<()>; 25 fn r#RepeatBoolean(&self, _arg_token: bool) -> binder::Result<bool>; 26 fn r#RepeatByte(&self, _arg_token: i8) -> binder::Result<i8>; 27 fn r#RepeatChar(&self, _arg_token: u16) -> binder::Result<u16>; 28 fn r#RepeatInt(&self, _arg_token: i32) -> binder::Result<i32>; 29 fn r#RepeatLong(&self, _arg_token: i64) -> binder::Result<i64>; 30 fn r#RepeatFloat(&self, _arg_token: f32) -> binder::Result<f32>; 31 fn r#RepeatDouble(&self, _arg_token: f64) -> binder::Result<f64>; [all …]
|
/system/tools/aidl/tests/golden_output/frozen/aidl-test-interface-rust-source/gen/android/aidl/tests/ |
D | ITestService.rs | 21 fn r#UnimplementedMethod(&self, _arg_arg: i32) -> binder::Result<i32>; 23 fn r#Deprecated(&self) -> binder::Result<()>; 24 fn r#TestOneway(&self) -> binder::Result<()>; 25 fn r#RepeatBoolean(&self, _arg_token: bool) -> binder::Result<bool>; 26 fn r#RepeatByte(&self, _arg_token: i8) -> binder::Result<i8>; 27 fn r#RepeatChar(&self, _arg_token: u16) -> binder::Result<u16>; 28 fn r#RepeatInt(&self, _arg_token: i32) -> binder::Result<i32>; 29 fn r#RepeatLong(&self, _arg_token: i64) -> binder::Result<i64>; 30 fn r#RepeatFloat(&self, _arg_token: f32) -> binder::Result<f32>; 31 fn r#RepeatDouble(&self, _arg_token: f64) -> binder::Result<f64>; [all …]
|
/system/keymint/ta/src/ |
D | device.rs | 73 fn root_kek(&self, context: &[u8]) -> Result<OpaqueOr<hmac::Key>, Error>; in root_kek() 77 fn kek_context(&self) -> Result<Vec<u8>, Error> { in kek_context() 83 fn kak(&self) -> Result<OpaqueOr<aes::Key>, Error>; in kak() 92 fn unique_id_hbk(&self, ckdf: &dyn crypto::Ckdf) -> Result<crypto::hmac::Key, Error> { in unique_id_hbk() 101 fn timestamp_token_mac_input(&self, token: &TimeStampToken) -> Result<Vec<u8>, Error> { in timestamp_token_mac_input() 109 fn hmac(&self, imp: &dyn crypto::Hmac, data: &[u8]) -> Result<Vec<u8>, Error>; in hmac() 153 fn signing_key(&self, key_type: SigningKeyType) -> Result<KeyMaterial, Error>; in signing_key() 161 fn cert_chain(&self, key_type: SigningKeyType) -> Result<Vec<keymint::Certificate>, Error>; in cert_chain() 168 fn get(&self) -> Result<crate::AttestationIdInfo, Error>; in get() 171 fn destroy_all(&mut self) -> Result<(), Error>; in destroy_all() argument [all …]
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V2-rust-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.rs | 23 fn r#originalApi(&self) -> binder::Result<()>; 24 …rg_u: &crate::mangled::_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::Result<String>; 25 …ate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::Result<i32>; 26 … _arg_foos: &[crate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo]) -> binder::Result<i32>; 27 fn r#newApi(&self) -> binder::Result<()>; 28 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 31 fn r#getInterfaceHash(&self) -> binder::Result<String> { 43 fn r#originalApi<'a>(&'a self) -> binder::BoxFuture<'a, binder::Result<()>>; 44 …_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::BoxFuture<'a, binder::Result<String>>; 45 …d_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::BoxFuture<'a, binder::Result<i32>>; [all …]
|
/system/tools/aidl/tests/golden_output/frozen/aidl-test-versioned-interface-V2-rust-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.rs | 23 fn r#originalApi(&self) -> binder::Result<()>; 24 …rg_u: &crate::mangled::_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::Result<String>; 25 …ate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::Result<i32>; 26 … _arg_foos: &[crate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo]) -> binder::Result<i32>; 27 fn r#newApi(&self) -> binder::Result<()>; 28 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 31 fn r#getInterfaceHash(&self) -> binder::Result<String> { 43 fn r#originalApi<'a>(&'a self) -> binder::BoxFuture<'a, binder::Result<()>>; 44 …_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::BoxFuture<'a, binder::Result<String>>; 45 …d_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::BoxFuture<'a, binder::Result<i32>>; [all …]
|
/system/tools/aidl/tests/golden_output/frozen/aidl-test-versioned-interface-V3-rust-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.rs | 23 fn r#originalApi(&self) -> binder::Result<()>; 24 …rg_u: &crate::mangled::_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::Result<String>; 25 …ate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::Result<i32>; 26 … _arg_foos: &[crate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo]) -> binder::Result<i32>; 27 fn r#newApi(&self) -> binder::Result<()>; 28 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 31 fn r#getInterfaceHash(&self) -> binder::Result<String> { 43 fn r#originalApi<'a>(&'a self) -> binder::BoxFuture<'a, binder::Result<()>>; 44 …_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::BoxFuture<'a, binder::Result<String>>; 45 …d_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::BoxFuture<'a, binder::Result<i32>>; [all …]
|
/system/tools/aidl/tests/golden_output/aidl-test-versioned-interface-V3-rust-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.rs | 23 fn r#originalApi(&self) -> binder::Result<()>; 24 …rg_u: &crate::mangled::_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::Result<String>; 25 …ate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::Result<i32>; 26 … _arg_foos: &[crate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo]) -> binder::Result<i32>; 27 fn r#newApi(&self) -> binder::Result<()>; 28 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 31 fn r#getInterfaceHash(&self) -> binder::Result<String> { 43 fn r#originalApi<'a>(&'a self) -> binder::BoxFuture<'a, binder::Result<()>>; 44 …_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::BoxFuture<'a, binder::Result<String>>; 45 …d_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::BoxFuture<'a, binder::Result<i32>>; [all …]
|
/system/tools/aidl/tests/golden_output/frozen/tests/trunk_stable_test/android.aidl.test.trunk-V1-rust-source/gen/android/aidl/test/trunk/ |
D | ITrunkStableTest.rs | 23 …id_4_aidl_4_test_5_trunk_16_ITrunkStableTest_12_MyParcelable) -> binder::Result<crate::mangled::_7… 24 …7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::Result<crate::mangled::_7… 25 …_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::Result<crate::mangled::_7… 26 …ngled::_7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_11_IMyCallback>) -> binder::Result<()>; 27 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 30 fn r#getInterfaceHash(&self) -> binder::Result<String> { 42 …nk_16_ITrunkStableTest_12_MyParcelable) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 43 …t_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 44 …_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 45 …l_4_test_5_trunk_16_ITrunkStableTest_11_IMyCallback>) -> binder::BoxFuture<'a, binder::Result<()>>; [all …]
|
/system/tools/aidl/tests/golden_output/tests/trunk_stable_test/android.aidl.test.trunk-V1-rust-source/gen/android/aidl/test/trunk/ |
D | ITrunkStableTest.rs | 23 …id_4_aidl_4_test_5_trunk_16_ITrunkStableTest_12_MyParcelable) -> binder::Result<crate::mangled::_7… 24 …7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::Result<crate::mangled::_7… 25 …_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::Result<crate::mangled::_7… 26 …ngled::_7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_11_IMyCallback>) -> binder::Result<()>; 27 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 30 fn r#getInterfaceHash(&self) -> binder::Result<String> { 42 …nk_16_ITrunkStableTest_12_MyParcelable) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 43 …t_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 44 …_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 45 …l_4_test_5_trunk_16_ITrunkStableTest_11_IMyCallback>) -> binder::BoxFuture<'a, binder::Result<()>>; [all …]
|
/system/authgraph/wire/src/ |
D | cbor.rs | 65 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { in fmt() argument 80 pub fn cbor_type_error<T>(value: &Value, want: &'static str) -> Result<T, CborError> { in cbor_type_error() 98 pub fn read_to_value(mut slice: &[u8]) -> Result<Value, CborError> { in read_to_value() 112 fn from_cbor_value(value: Value) -> Result<Self, CborError>; in from_cbor_value() 115 fn to_cbor_value(self) -> Result<Value, CborError>; in to_cbor_value() 118 fn from_slice(slice: &[u8]) -> Result<Self, CborError> { in from_slice() 123 fn into_vec(self) -> Result<Vec<u8>, CborError> { in into_vec() 132 fn from_cbor_value(value: Value) -> Result<Self, CborError> { in from_cbor_value() 143 fn to_cbor_value(self) -> Result<Value, CborError> { in to_cbor_value() 152 fn from_cbor_value(value: Value) -> Result<Self, CborError> { in from_cbor_value() [all …]
|
/system/tools/aidl/tests/golden_output/frozen/tests/trunk_stable_test/android.aidl.test.trunk-V2-rust-source/gen/android/aidl/test/trunk/ |
D | ITrunkStableTest.rs | 23 …id_4_aidl_4_test_5_trunk_16_ITrunkStableTest_12_MyParcelable) -> binder::Result<crate::mangled::_7… 24 …7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::Result<crate::mangled::_7… 25 …_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::Result<crate::mangled::_7… 26 …ngled::_7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_11_IMyCallback>) -> binder::Result<()>; 27 …aidl_4_test_5_trunk_16_ITrunkStableTest_17_MyOtherParcelable) -> binder::Result<crate::mangled::_7… 28 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 31 fn r#getInterfaceHash(&self) -> binder::Result<String> { 43 …nk_16_ITrunkStableTest_12_MyParcelable) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 44 …t_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 45 …_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… [all …]
|
/system/tools/aidl/tests/golden_output/tests/trunk_stable_test/android.aidl.test.trunk-V2-rust-source/gen/android/aidl/test/trunk/ |
D | ITrunkStableTest.rs | 23 …id_4_aidl_4_test_5_trunk_16_ITrunkStableTest_12_MyParcelable) -> binder::Result<crate::mangled::_7… 24 …7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::Result<crate::mangled::_7… 25 …_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::Result<crate::mangled::_7… 26 …ngled::_7_android_4_aidl_4_test_5_trunk_16_ITrunkStableTest_11_IMyCallback>) -> binder::Result<()>; 27 …aidl_4_test_5_trunk_16_ITrunkStableTest_17_MyOtherParcelable) -> binder::Result<crate::mangled::_7… 28 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 31 fn r#getInterfaceHash(&self) -> binder::Result<String> { 43 …nk_16_ITrunkStableTest_12_MyParcelable) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 44 …t_5_trunk_16_ITrunkStableTest_6_MyEnum) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… 45 …_5_trunk_16_ITrunkStableTest_7_MyUnion) -> binder::BoxFuture<'a, binder::Result<crate::mangled::_7… [all …]
|
/system/tools/aidl/tests/golden_output/frozen/aidl-test-versioned-interface-V1-rust-source/gen/android/aidl/versioned/tests/ |
D | IFooInterface.rs | 23 fn r#originalApi(&self) -> binder::Result<()>; 24 …rg_u: &crate::mangled::_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::Result<String>; 25 …ate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::Result<i32>; 26 … _arg_foos: &[crate::mangled::_7_android_4_aidl_9_versioned_5_tests_3_Foo]) -> binder::Result<i32>; 27 fn r#getInterfaceVersion(&self) -> binder::Result<i32> { 30 fn r#getInterfaceHash(&self) -> binder::Result<String> { 42 fn r#originalApi<'a>(&'a self) -> binder::BoxFuture<'a, binder::Result<()>>; 43 …_7_android_4_aidl_9_versioned_5_tests_8_BazUnion) -> binder::BoxFuture<'a, binder::Result<String>>; 44 …d_4_aidl_9_versioned_5_tests_3_Foo, _arg_value: i32) -> binder::BoxFuture<'a, binder::Result<i32>>; 45 …ngled::_7_android_4_aidl_9_versioned_5_tests_3_Foo]) -> binder::BoxFuture<'a, binder::Result<i32>>; [all …]
|