/packages/modules/Bluetooth/tools/rootcanal/model/hci/ |
D | hci_socket_transport.cc | 32 std::shared_ptr<std::vector<uint8_t>> packet_copy = in RegisterCallbacks() local 34 packet_callback(PacketType::COMMAND, packet_copy); in RegisterCallbacks() 38 std::shared_ptr<std::vector<uint8_t>> packet_copy = in RegisterCallbacks() local 40 packet_callback(PacketType::ACL, packet_copy); in RegisterCallbacks() 43 std::shared_ptr<std::vector<uint8_t>> packet_copy = in RegisterCallbacks() local 45 packet_callback(PacketType::SCO, packet_copy); in RegisterCallbacks() 48 std::shared_ptr<std::vector<uint8_t>> packet_copy = in RegisterCallbacks() local 50 packet_callback(PacketType::ISO, packet_copy); in RegisterCallbacks()
|
/packages/modules/Bluetooth/tools/rootcanal/hal/ |
D | bluetooth_hci.cc | 217 std::shared_ptr<std::vector<uint8_t>> packet_copy = in sendHciCommand() local 219 controller_->HandleCommand(packet_copy); in sendHciCommand() 226 std::shared_ptr<std::vector<uint8_t>> packet_copy = in sendAclData() local 228 controller_->HandleAcl(packet_copy); in sendAclData() 235 std::shared_ptr<std::vector<uint8_t>> packet_copy = in sendScoData() local 237 controller_->HandleSco(packet_copy); in sendScoData() 244 std::shared_ptr<std::vector<uint8_t>> packet_copy = in sendIsoData() local 246 controller_->HandleIso(packet_copy); in sendIsoData()
|
/packages/modules/Bluetooth/system/packet/tests/avrcp/ |
D | register_notification_packet_test.cc | 45 std::vector<uint8_t> packet_copy = register_play_status_notification; in TEST() local 46 packet_copy.push_back(0x00); in TEST() 47 auto test_packet = TestRegNotifReqPacket::Make(packet_copy); in TEST() 79 std::vector<uint8_t> packet_copy = interim_volume_changed_notification; in TEST() local 80 packet_copy.push_back(0x00); in TEST() 81 auto test_packet = TestRegNotifRspPacket::Make(packet_copy); in TEST()
|
D | set_addressed_player_packet_test.cc | 49 auto packet_copy = set_addressed_player_request; in TEST() local 50 packet_copy.push_back(0x00); in TEST() 51 auto test_packet = TestSetAddrPlayerPacket::Make(packet_copy); in TEST()
|
D | play_item_packet_test.cc | 52 auto packet_copy = play_item_request; in TEST() local 53 packet_copy.push_back(0x00); in TEST() 54 auto test_packet = TestPlayItemReqPacket::Make(packet_copy); in TEST()
|
D | list_player_application_setting_values_test.cc | 47 std::vector<uint8_t> packet_copy = list_player_application_setting_attribute_values_request; in TEST() local 48 packet_copy.push_back(0x00); in TEST() 49 auto test_packet = ListPlayerApplicationSettingValuesRequestTestPacket::Make(packet_copy); in TEST()
|
D | get_total_number_of_items_packet_test.cc | 62 auto packet_copy = get_total_number_of_items_request_now_playing; in TEST() local 63 packet_copy.push_back(0x00); in TEST() 64 auto test_packet = TestGetTotalNumItemsReqPacket::Make(packet_copy); in TEST()
|
D | set_browsed_player_packet_test.cc | 60 auto packet_copy = set_browsed_player_request; in TEST() local 61 packet_copy.push_back(0x00); in TEST() 62 auto test_packet = TestSetBrowsedPlayerPacket::Make(packet_copy); in TEST()
|
D | set_absolute_volume_packet_test.cc | 58 auto packet_copy = set_absolute_volume_request; in TEST() local 59 packet_copy.push_back(0x00); in TEST() 60 auto test_packet = TestSetVolumeRspPacket::Make(packet_copy); in TEST()
|
D | set_player_application_setting_value_test.cc | 50 std::vector<uint8_t> packet_copy = set_player_application_setting_value_request; in TEST() local 51 packet_copy.push_back(0x00); in TEST() 52 auto test_packet = SetPlayerApplicationSettingValueRequestTestPacket::Make(packet_copy); in TEST()
|
D | get_current_player_application_setting_value_test.cc | 48 std::vector<uint8_t> packet_copy = get_current_player_application_setting_value_request; in TEST() local 49 packet_copy.push_back(0x00); in TEST() 50 auto test_packet = GetCurrentPlayerApplicationSettingValueRequestTestPacket::Make(packet_copy); in TEST()
|
D | pass_through_packet_test.cc | 62 std::vector<uint8_t> packet_copy = pass_through_command_play_pushed; in TEST() local 63 packet_copy.push_back(0x00); in TEST() 64 auto test_packet = TestPassThroughPacket::Make(packet_copy); in TEST()
|
D | change_path_packet_test.cc | 63 auto packet_copy = change_path_request; in TEST() local 64 packet_copy.push_back(0x00); in TEST() 65 auto test_packet = TestChangePathReqPacket::Make(packet_copy); in TEST()
|
D | avrcp_browse_packet_test.cc | 106 auto packet_copy = get_folder_items_request; in TEST() local 107 packet_copy.push_back(0x00); in TEST() 108 auto test_browse_packet = TestBrowsePacket::Make(packet_copy); in TEST()
|
D | get_capabilities_packet_test.cc | 42 std::vector<uint8_t> packet_copy = get_capabilities_request; in TEST() local 43 packet_copy.push_back(0x00); in TEST() 44 auto test_packet = GetCapRequestTestPacket::Make(packet_copy); in TEST()
|
D | get_item_attributes_packet_test.cc | 110 auto packet_copy = get_item_attributes_request_all_attributes; in TEST() local 111 packet_copy.push_back(0x00); in TEST() 112 auto test_packet = TestGetItemAttrsReqPacket::Make(packet_copy); in TEST()
|
D | get_element_attributes_packet_test.cc | 65 std::vector<uint8_t> packet_copy = get_element_attributes_request_partial; in TEST() local 66 packet_copy.push_back(0x00); in TEST() 67 auto test_packet = TestGetElemAttrReqPacket::Make(packet_copy); in TEST()
|
/packages/modules/Bluetooth/tools/rootcanal/model/setup/ |
D | phy_device.cc | 47 std::shared_ptr<std::vector<uint8_t>> packet_copy = in Receive() local 50 model::packets::LinkLayerPacketView::Create(pdl::packet::slice(packet_copy)); in Receive()
|