Searched refs:binary_data (Results 1 – 6 of 6) sorted by relevance
/openthread-3.7.0/tests/toranj/ncp/ |
D | test-002-form.py | 92 node.set(wpan.WPAN_XPANID, '1020031510006016', binary_data=True) 93 node.set(wpan.WPAN_KEY, '0123456789abcdeffecdba9876543210', binary_data=True)
|
D | test-001-get-set.py | 66 node.set(wpan.WPAN_XPANID, '1020031510006016', binary_data=True) 69 node.set(wpan.WPAN_KEY, '0123456789abcdeffecdba9876543210', binary_data=True)
|
D | wpan.py | 409 def set(self, prop_name, value, binary_data=False): argument 410 return self._update_prop('set', prop_name, value, binary_data) 412 def add(self, prop_name, value, binary_data=False): argument 413 return self._update_prop('add', prop_name, value, binary_data) 415 def remove(self, prop_name, value, binary_data=False): argument 416 return self._update_prop('remove', prop_name, value, binary_data) 418 def _update_prop(self, action, prop_name, value, binary_data): argument 419 … return self.wpanctl(action + ' ' + prop_name + ' ' + ('-d ' if binary_data else '') + '-v ' +
|
D | test-009-insecure-traffic-join.py | 101 node2.set(wpan.WPAN_KEY, node1.get(wpan.WPAN_KEY)[1:-1], binary_data=True)
|
D | test-003-join.py | 97 node2.set(wpan.WPAN_KEY, node1.get(wpan.WPAN_KEY)[1:-1], binary_data=True)
|
/openthread-3.7.0/tests/toranj/ |
D | README_NCP.md | 62 node.set(prop_name, value, binary_data=False) 63 node.add(prop_name, value, binary_data=False) 64 node.remove(prop_name, value, binary_data=False) 75 >>> node.set(wpan.WPAN_KEY, '65F2C35C7B543BAC1F3E26BB9F866C1D', binary_data=True)
|