Home
last modified time | relevance | path

Searched refs:acl_packet (Results 1 – 3 of 3) sorted by relevance

/hardware/interfaces/bluetooth/1.1/vts/functional/
DVtsHalBluetoothV1_1TargetTest.cpp352 hidl_vec<uint8_t> acl_packet = acl_queue.front(); in handle_no_ops() local
353 uint16_t connection_handle = acl_packet[1] & 0xF; in handle_no_ops()
355 connection_handle |= acl_packet[0]; in handle_no_ops()
533 hidl_vec<uint8_t> acl_packet; in sendAndCheckACL() local
544 acl_packet = acl_vector; in sendAndCheckACL()
553 EXPECT_EQ(acl_packet.size(), acl_loopback.size()); in sendAndCheckACL()
556 for (size_t i = 0; i < acl_packet.size(); i++) { in sendAndCheckACL()
557 if (acl_packet[i] == acl_loopback[i]) { in sendAndCheckACL()
561 acl_packet[i], acl_loopback[i]); in sendAndCheckACL()
563 acl_packet[i + 1], acl_loopback[i + 1]); in sendAndCheckACL()
[all …]
/hardware/interfaces/bluetooth/1.0/vts/functional/
DVtsHalBluetoothV1_0TargetTest.cpp340 hidl_vec<uint8_t> acl_packet = acl_queue.front(); in handle_no_ops() local
341 uint16_t connection_handle = acl_packet[1] & 0xF; in handle_no_ops()
343 connection_handle |= acl_packet[0]; in handle_no_ops()
521 hidl_vec<uint8_t> acl_packet; in sendAndCheckACL() local
532 acl_packet = acl_vector; in sendAndCheckACL()
541 EXPECT_EQ(acl_packet.size(), acl_loopback.size()); in sendAndCheckACL()
542 for (size_t i = 0; i < acl_packet.size() && i < acl_loopback.size(); i++) { in sendAndCheckACL()
543 EXPECT_EQ(acl_packet[i], acl_loopback[i]) << " at byte number " << i; in sendAndCheckACL()
/hardware/interfaces/bluetooth/aidl/vts/
DVtsHalBluetoothTargetTest.cpp427 std::vector<uint8_t> acl_packet; in discard_qca_debugging() local
428 acl_queue.front(acl_packet); in discard_qca_debugging()
431 std::make_shared<std::vector<uint8_t>>(acl_packet))); in discard_qca_debugging()
609 std::vector<uint8_t> acl_packet; in sendAndCheckAcl() local
610 ::bluetooth::packet::BitInserter bi{acl_packet}; in sendAndCheckAcl()
616 hci->sendAclData(acl_packet); in sendAndCheckAcl()
623 ASSERT_EQ(acl_packet, acl_loopback); in sendAndCheckAcl()