D | btsnoop.py | 159 def send_command_sock(self, opcode, len, data): argument 162 hci_len=struct.pack("<B", len) 164 if len > 0: 168 def send_command_file(self, opcode, len, data): argument 171 hci_len=struct.pack("<B", len) 173 if len > 0: 177 def send_monitor_command(self, opcode, len, data): argument 179 self.send_command_file(opcode, len, data) 181 self.send_command_sock( opcode, len, data) 192 l = len(name) [all …]
|