HomeSort by relevance Sort by last modified time
    Searched defs:TestPacket (Results 1 - 2 of 2) sorted by null

  /system/bt/vendor_libs/test_vendor_lib/test/
iterator_test.cc 27 class TestPacket : public HciPacket {
29 static std::shared_ptr<TestPacket> make_new_packet(vector<uint8_t> v) {
30 return std::shared_ptr<TestPacket>(new TestPacket(v));
36 TestPacket(vector<uint8_t> v) { test_vector_ = v; }
45 void SetUp() { packet = TestPacket::make_new_packet(complete_l2cap_packet); }
49 std::shared_ptr<TestPacket> packet;
l2cap_test.cc 31 class TestPacket : public HciPacket {
33 TestPacket(const std::vector<uint8_t>& packet) { complete_packet_ = packet; }
34 TestPacket() = default;
79 shared_ptr<TestPacket> expected(new TestPacket(good_l2cap_packet));
98 expected.reset(new TestPacket(complete_l2cap_packet));
203 shared_ptr<TestPacket> expected(new TestPacket(empty_l2cap_payload));

Completed in 170 milliseconds