Lines Matching refs:buffer
134 void hci_dump_setup_header_packetlogger(uint8_t * buffer, uint32_t tv_sec, uint32_t tv_us, uint8_t … in hci_dump_setup_header_packetlogger() argument
135 big_endian_store_32( buffer, 0, HCI_DUMP_HEADER_SIZE_PACKETLOGGER - 4 + len); in hci_dump_setup_header_packetlogger()
136 big_endian_store_32( buffer, 4, tv_sec); in hci_dump_setup_header_packetlogger()
137 big_endian_store_32( buffer, 8, tv_us); in hci_dump_setup_header_packetlogger()
161 buffer[12] = packet_logger_type; in hci_dump_setup_header_packetlogger()
164 void hci_dump_setup_header_bluez(uint8_t * buffer, uint32_t tv_sec, uint32_t tv_us, uint8_t packet_… in hci_dump_setup_header_bluez() argument
165 little_endian_store_16( buffer, 0u, 1u + len); in hci_dump_setup_header_bluez()
166 buffer[2] = in; in hci_dump_setup_header_bluez()
167 buffer[3] = 0; in hci_dump_setup_header_bluez()
168 little_endian_store_32( buffer, 4, tv_sec); in hci_dump_setup_header_bluez()
169 little_endian_store_32( buffer, 8, tv_us); in hci_dump_setup_header_bluez()
170 buffer[12] = packet_type; in hci_dump_setup_header_bluez()
174 void hci_dump_setup_header_btsnoop(uint8_t * buffer, uint32_t ts_usec_high, uint32_t ts_usec_low, u… in hci_dump_setup_header_btsnoop() argument
186 big_endian_store_32(buffer, 0, len); // Original Length in hci_dump_setup_header_btsnoop()
187 big_endian_store_32(buffer, 4, len); // Included Length in hci_dump_setup_header_btsnoop()
188 big_endian_store_32(buffer, 8, packet_flags); // Packet Flags in hci_dump_setup_header_btsnoop()
189 big_endian_store_32(buffer, 12, cumulative_drops); // Cumulativ Drops in hci_dump_setup_header_btsnoop()
190 big_endian_store_32(buffer, 16, ts_usec_high); // Timestamp Microseconds High in hci_dump_setup_header_btsnoop()
191 big_endian_store_32(buffer, 20, ts_usec_low); // Timestamp Microseconds Low in hci_dump_setup_header_btsnoop()