Searched refs:TLVs (Results 1 – 5 of 5) sorted by relevance
| /openthread-latest/src/cli/ |
| D | README_DATASET.md | 369 Print Active Operational Dataset as hex-encoded TLVs. 498 Usage: `dataset init <active|new|pending|tlvs <hex-encoded TLVs>>` 514 Use the `tlvs` option to initialize the dataset buffer from a string of hex-encoded TLVs: 644 Print Pending Operational Dataset as hex-encoded TLVs. 728 Set the Active Operational Dataset using hex-encoded TLVs. 735 Set the Pending Operational Dataset using hex-encoded TLVs. 746 Convert the Operational Dataset to hex-encoded TLVs.
|
| D | README_COMMISSIONER.md | 157 … [sessionid <sessionid>] [steeringdata <steeringdata>] [joinerudpport <joinerudpport>] [-x <TLVs>]`
|
| D | README_NETDATA.md | 425 Print Network Data received from the Leader as hex-encoded TLVs. 444 Print local Network Data to sync with Leader as hex-encoded TLVs.
|
| /openthread-latest/tools/harness-thci/ |
| D | OpenThread_WpanCtl.py | 2172 …EncryptedPacket.TLVs = PlatformPackets.read(EncryptedPacket.Type, payload) if payload != [] else [] 2255 def MGMT_ACTIVE_GET(self, Addr='', TLVs=[]): argument 2267 if len(TLVs) != 0: 2268 tlvs = ''.join('%02x' % tlv for tlv in TLVs) 2455 def MGMT_PENDING_GET(self, Addr='', TLVs=[]): argument 2466 if len(TLVs) != 0: 2467 tlvs = ''.join('%02x' % tlv for tlv in TLVs) 2565 def MGMT_COMM_GET(self, Addr='ff02::1', TLVs=[]): argument 2576 print(TLVs) 2578 if len(TLVs) != 0: [all …]
|
| D | OpenThread.py | 2362 EncryptedPacket.TLVs = (PlatformPackets.read(EncryptedPacket.Type, payload) 2440 def MGMT_ACTIVE_GET(self, Addr='', TLVs=()): argument 2453 if len(TLVs) != 0: 2454 tlvs = ''.join('%02x' % tlv for tlv in TLVs) 2623 def MGMT_PENDING_GET(self, Addr='', TLVs=()): argument 2636 if len(TLVs) != 0: 2637 tlvs = ''.join('%02x' % tlv for tlv in TLVs) 2713 def MGMT_COMM_GET(self, Addr='ff02::1', TLVs=()): argument 2722 if len(TLVs) != 0: 2723 tlvs = ''.join('%02x' % tlv for tlv in TLVs)
|