Home
last modified time | relevance | path

Searched refs:TransactionCode (Results 1 – 15 of 15) sorted by relevance

/aosp12/system/tools/aidl/tests/golden_output/aidl-test-interface-rust-source/gen/android/aidl/tests/
H A DITestService.rs230 pub const Deprecated: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 1;
231 pub const TestOneway: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 2;
233 pub const RepeatByte: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 4;
234 pub const RepeatChar: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 5;
235 pub const RepeatInt: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 6;
236 pub const RepeatLong: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 7;
237 pub const RepeatFloat: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 8;
238 pub const RepeatDouble: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 9;
244 pub const ReverseByte: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 15;
246 pub const ReverseInt: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 17;
[all …]
H A DINamedCallback.rs28 pub const GetName: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 0;
56 fn on_transact(_aidl_service: &dyn INamedCallback, _aidl_code: binder::TransactionCode, _aidl_data:… in on_transact() argument
H A DINewName.rs28 pub const RealName: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 0;
56 fn on_transact(_aidl_service: &dyn INewName, _aidl_code: binder::TransactionCode, _aidl_data: &bind… in on_transact() argument
H A DIOldName.rs28 pub const RealName: binder::TransactionCode = binder::FIRST_CALL_TRANSACTION + 0;
56 fn on_transact(_aidl_service: &dyn IOldName, _aidl_code: binder::TransactionCode, _aidl_data: &bind… in on_transact() argument
H A DIDeprecated.rs36 fn on_transact(_aidl_service: &dyn IDeprecated, _aidl_code: binder::TransactionCode, _aidl_data: &b… in on_transact() argument
/aosp12/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp4196 case TransactionCode::OPEN_OUTPUT: in onTransactWrapper()
4198 case TransactionCode::CLOSE_OUTPUT: in onTransactWrapper()
4201 case TransactionCode::OPEN_INPUT: in onTransactWrapper()
4202 case TransactionCode::CLOSE_INPUT: in onTransactWrapper()
4205 case TransactionCode::MOVE_EFFECTS: in onTransactWrapper()
4235 case TransactionCode::MASTER_MUTE: in onTransactWrapper()
4236 case TransactionCode::SET_MODE: in onTransactWrapper()
4237 case TransactionCode::SET_MIC_MUTE: in onTransactWrapper()
4239 case TransactionCode::SYSTEM_READY: in onTransactWrapper()
4267 case TransactionCode::CREATE_TRACK: in onTransactWrapper()
[all …]
H A DAudioFlinger.h285 status_t onTransactWrapper(TransactionCode code, const Parcel& data, uint32_t flags,
/aosp12/frameworks/native/libs/binder/rust/tests/
H A Dintegration.rs22 Binder, BinderFeatures, IBinderInternal, Interface, StatusCode, ThreadState, TransactionCode,
142 code: TransactionCode, in on_transact() argument
156 .transact(TestTransactionCode::Test as TransactionCode, 0, |_| Ok(()))?; in test()
162 TestTransactionCode::GetSelinuxContext as TransactionCode, in get_selinux_context()
192 _code: TransactionCode, in on_transact_same_descriptor() argument
H A Dserialization.rs24 StatusCode, TransactionCode,
113 code: TransactionCode, in on_transact() argument
/aosp12/frameworks/native/libs/binder/rust/src/
H A Dbinder.rs38 pub type TransactionCode = u32; typedef
99 fn on_transact(&self, code: TransactionCode, data: &Parcel, reply: &mut Parcel) -> Result<()>; in on_transact() argument
109 pub const FIRST_CALL_TRANSACTION: TransactionCode = sys::FIRST_CALL_TRANSACTION;
111 pub const LAST_CALL_TRANSACTION: TransactionCode = sys::LAST_CALL_TRANSACTION;
152 code: TransactionCode, in transact() argument
767 …fn on_transact(&self, code: $crate::TransactionCode, data: &$crate::Parcel, reply: &mut $crate::Pa…
H A Dnative.rs17 …crate::binder::{AsNative, Interface, InterfaceClassMethods, Remotable, Stability, TransactionCode};
405 _code: TransactionCode, in on_transact() argument
H A Dlib.rs111 Stability, Strong, TransactionCode, TransactionFlags, Weak, FIRST_CALL_TRANSACTION,
H A Dproxy.rs21 TransactionCode, TransactionFlags,
219 code: TransactionCode, in transact() argument
/aosp12/frameworks/av/media/libaudioclient/include/media/
H A DIAudioFlinger.h469 enum class TransactionCode { enum
541 virtual status_t onTransactWrapper(TransactionCode code, in onTransactWrapper()
/aosp12/frameworks/av/media/libaudioclient/
H A DIAudioFlinger.cpp778 return mDelegate->onTransactWrapper(static_cast<Delegate::TransactionCode>(code), in onTransact()