Home
last modified time | relevance | path

Searched refs:last_command (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/bt/gd/security/channel/
H A Dsecurity_manager_channel_unittest.cc280 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
296 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
329 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
344 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
373 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
388 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
411 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
426 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
441 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
456 auto command_packet = GetPacketView(std::move(last_command)); in TEST_F()
[all …]
/aosp12/system/bt/gd/rust/linux/mgmt/src/bin/btmanagerd/
H A Dstate_machine.rs412 last_command: VecDeque<ExecutedCommand>, field
417 MockProcessManager { last_command: VecDeque::new() } in new()
421 self.last_command.push_back(ExecutedCommand::Start); in expect_start()
425 self.last_command.push_back(ExecutedCommand::Stop); in expect_stop()
431 let start = self.last_command.pop_front().expect("Should expect start event"); in start()
436 let stop = self.last_command.pop_front().expect("Should expect stop event"); in stop()
443 assert_eq!(self.last_command.len(), 0); in drop()
/aosp12/system/bt/gd/hci/
H A Dacl_manager_test.cc454 auto last_command = test_hci_layer_->GetCommand(OpCode::CREATE_CONNECTION); in SetUp() local
455 while (!last_command.IsValid()) { in SetUp()
456 last_command = test_hci_layer_->GetCommand(OpCode::CREATE_CONNECTION); in SetUp()
556 auto last_command = test_hci_layer_->GetCommand(OpCode::CREATE_CONNECTION); in TEST_F() local
557 while (!last_command.IsValid()) { in TEST_F()
558 last_command = test_hci_layer_->GetCommand(OpCode::CREATE_CONNECTION); in TEST_F()
580 auto last_command = test_hci_layer_->GetCommand(OpCode::CREATE_CONNECTION); in TEST_F() local
581 while (!last_command.IsValid()) { in TEST_F()
582 last_command = test_hci_layer_->GetCommand(OpCode::CREATE_CONNECTION); in TEST_F()
/aosp12/system/bt/gd/security/pairing/
H A Dclassic_pairing_handler_unittest.cc275 auto last_command = std::move(hci_layer->GetLastCommand()->command); in GetLastCommand() local
276 auto command_packet = GetPacketView(std::move(last_command)); in GetLastCommand()