Home
last modified time | relevance | path

Searched refs:test_command (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/blueberry/tests/avrcp/
Dbluetooth_avrcp_test.py159 def execute_media_play_pause_test_logic(self, command_sender, test_command): argument
176 if test_command not in [bt_constants.CMD_MEDIA_PLAY,
180 (test_command, bt_constants.CMD_MEDIA_PLAY,
186 test_command == bt_constants.CMD_MEDIA_PAUSE):
198 if test_command == bt_constants.CMD_MEDIA_PLAY:
201 elif test_command == bt_constants.CMD_MEDIA_PAUSE:
220 def execute_skip_next_prev_test_logic(self, command_sender, test_command): argument
237 if test_command not in [bt_constants.CMD_MEDIA_SKIP_NEXT,
241 (test_command, bt_constants.CMD_MEDIA_SKIP_NEXT,
246 and test_command == bt_constants.CMD_MEDIA_SKIP_PREV):
[all …]
/packages/modules/Bluetooth/system/include/hardware/
Dbt_gatt_client.h311 bt_status_t (*test_command)(int command, const btgatt_test_params_t& params); member
/packages/modules/Bluetooth/system/blueberry/tests/topshim/lib/
Dgatt_client.py322 async def test_command(self): member in GattClient
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dgatt.rs1361 pub fn test_command(&self, command: i32, params: &BtGattTestParams) -> BtStatus { in test_command() method
1362 BtStatus::from(ccall!(self, test_command, command, params)) in test_command()
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dgatt_service.rs657 fn test_command(&mut self, ctx: RpcContext<'_>, _req: Empty, sink: UnarySink<Empty>) { in test_command() method
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_gatt.cpp2548 sGattIf->client->test_command(command, params); in gattTestNative()