Searched refs:node_id (Results 1 – 9 of 9) sorted by relevance
/openthread-latest/tools/harness-simulation/harness/Thread_Harness/THCI/ |
D | OpenThread_Sim.py | 52 def __init__(self, ip, port, username, password, device, node_id): argument 57 self.node_id = node_id 86 … self.__stdin, self.__stdout, _ = self.__handle.exec_command(device + ' ' + str(self.node_id)) 126 print('%d@%s - %s - %s' % (self.node_id, self.ip, time.strftime('%b %d %H:%M:%S'), msg)) 142 self.device, self.node_id) 157 self.tag, self.node_id = prefix.split('_') 158 self.node_id = int(self.node_id)
|
D | OpenThread_BR_Sim.py | 125 self.tag, self.node_id = self.docker_name.split('_') 126 self.node_id = int(self.node_id)
|
/openthread-latest/tools/tcat_ble_client/ble/ |
D | udp_stream.py | 40 def __init__(self, address, node_id): argument 45 self.address = (address, self.BASE_PORT + node_id)
|
/openthread-latest/tests/scripts/thread-cert/pktverify/ |
D | test_info.py | 84 def get_node_name(self, node_id: int) -> str: 91 return self.topology[node_id].get('name', 'Node%d' % node_id)
|
/openthread-latest/tests/scripts/thread-cert/ |
D | test_reed_address_solicit_rejected.py | 97 def hasAloc(self, node_id, service_id): argument 98 for addr in self.nodes[node_id].get_ip6_address(config.ADDRESS_TYPE.ALOC):
|
D | test_service.py | 75 def hasAloc(self, node_id, service_id): argument 76 for addr in self.nodes[node_id].get_ip6_address(config.ADDRESS_TYPE.ALOC):
|
/openthread-latest/tools/harness-simulation/harness/Thread_Harness/Sniffer/ |
D | SimSniffer.py | 116 device1.addBlockedNodeId(device2.node_id) 117 device2.addBlockedNodeId(device1.node_id) 121 sniffer.filterNodes(device.node_id for device in sniffer_denied_partition)
|
/openthread-latest/tools/harness-simulation/ |
D | README.md | 48 2. Run the Test Harness. The information field of the device is encoded as `<tag>_<node_id>@<ip_add…
|
/openthread-latest/tools/harness-thci/ |
D | OpenThread.py | 3316 def addBlockedNodeId(self, node_id): argument 3317 cmd = 'nodeidfilter deny %d' % node_id
|