Searched defs:L2capSdu (Results 1 - 2 of 2) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/include/
H A Dl2cap_sdu.h48 // will be creating an L2CAP packet from a stream of L2capSdu
60 class L2capSdu { class in namespace:test_vendor_lib
62 // Returns a completed L2capSdu object.
63 L2capSdu(std::vector<uint8_t> create_from);
65 static L2capSdu L2capSduBuilder(std::vector<uint8_t> create_from);
67 // TODO: Remove this when the move to L2capSdu* is done
68 L2capSdu& operator=(L2capSdu obj1) {
112 static bool is_complete_l2cap(const L2capSdu& sdu);
116 static bool is_starting_sdu(const L2capSdu
[all...]
/system/bt/vendor_libs/test_vendor_lib/src/
H A Dl2cap_sdu.cc28 const uint16_t L2capSdu::lfsr_table_[256] = {
60 L2capSdu::L2capSdu(std::vector<uint8_t> create_from) { function in class:test_vendor_lib::L2capSdu
64 L2capSdu L2capSdu::L2capSduBuilder(std::vector<uint8_t> create_from) {
65 L2capSdu packet(std::move(create_from));
77 std::vector<uint8_t>::const_iterator L2capSdu::get_payload_begin(
82 std::vector<uint8_t>::const_iterator L2capSdu::get_payload_end() const {
86 uint16_t L2capSdu::convert_from_little_endian(
95 uint16_t L2capSdu
[all...]

Completed in 171 milliseconds