/openthread-latest/tests/toranj/ncp/ |
D | wpan.py | 576 for item in scan_result: 577 if all([item.panid == panid, item.channel == channel, item.ext_address == ext_address]): 578 if (item.type == ScanResult.TYPE_DISCOVERY_SCAN): 579 if all([item.network_name == name, item.xpanid == xpanid]): 1061 items = [item.strip() for item in result_text.split('|')] 1124 …return [ScanResult(item) for item in scan_result.split('\n')[2:]] # skip first two lines which ar… 1226 return [OnMeshPrefix(item) for item in on_mesh_prefix_list.split('\n')[1:-1]] 1245 items = [item[:-1] if item[-1] == ',' else item for item in text[2:-1].split()] 1252 dict = {item.split(':')[0]: item.split(':')[1] for item in items[1:]} 1291 return [ChildEntry(item) for item in child_table_list.split('\n')[1:-1]] [all …]
|
/openthread-latest/tools/harness-simulation/posix/ |
D | launch_testbed.py | 152 ot_devices = [(item['tag'], item['number']) for item in ot_build['ot']] 153 otbr_devices = [(item['tag'], item['number']) for item in ot_build['otbr']] 188 for item in ot_build['otbr']: 189 tag = item['tag'] 190 ot_rcp_path = os.path.join(ot_path, item['rcp_subpath'], 'examples/apps/ncp/ot-rcp') 191 docker_image = item['docker_image'] 192 for _ in range(item['number']):
|
D | install.sh | 127 for item in $(jq -c '.ot_build.ot | .[]' <<<"$CONFIG"); do 128 build_ot "$item" 145 for item in $(jq -c '.ot_build.otbr | .[]' <<<"$CONFIG"); do 146 build_otbr "$item"
|
/openthread-latest/src/core/common/ |
D | iterator_utils.hpp | 154 explicit ItemPtrIterator(ItemType *item) in ItemPtrIterator() argument 155 : mItem(item) in ItemPtrIterator()
|
/openthread-latest/script/ |
D | update-makefiles.py | 111 core_cpp_files = [item for item in core_cpp_files if not item.endswith("extension_example.cpp")]
|
/openthread-latest/tools/harness-automation/ |
D | gencsv.py | 11 def get_key(item): argument 12 ds = item[0].split('_')
|
/openthread-latest/tests/scripts/thread-cert/pktverify/ |
D | layer_fields_container.py | 61 def __getitem__(self, item): argument 62 return getattr(self, item)
|
D | bytes.py | 105 def __getitem__(self, item) -> Union['Bytes', int]: argument 112 x = super().__getitem__(item)
|
D | null_field.py | 55 def __getattr__(self, item): argument
|
/openthread-latest/etc/cmake/ |
D | print.cmake | 35 # The print.cmake handles this issue by taking a CMake list and prints each item 40 foreach(item ${LIST}) 41 execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${item})
|
/openthread-latest/tools/harness-simulation/harness/Thread_Harness/THCI/ |
D | OpenThread_Sim.py | 46 ot_subpath = {item['tag']: item['subpath'] for item in config['ot_build']['ot']}
|
/openthread-latest/src/cli/ |
D | README_SRP_CLIENT.md | 218 - `ToAdd`: item to be added/registered. 219 - `Adding`: item is being added/registered. 220 - `ToRefresh`: item to be refreshed (renew lease). 221 - `Refreshing`: item is being refreshed. 222 - `ToRemove`: item to be removed. 223 - `Removing`: item is being removed. 224 - `Registered`: item is registered with server. 225 - `Removed`: item is removed.
|
D | README_HISTORY.md | 256 Print the Network Data on mesh prefix history. Each item provides: 307 Print the Network Data external route history. Each item provides: 346 Print the route table history. Each item provides:
|
/openthread-latest/tests/scripts/thread-cert/ |
D | command.py | 546 for item in addresses: 547 if isinstance(item, mle.AddressFull) and ipaddress.ip_address(item.ipv6_address) == addr: 570 for item in addresses: 571 if isinstance(item, mle.AddressCompressed): 572 if cid == item.cid: 574 if iid == item.iid.hex():
|
D | node.py | 3459 ip = [item.strip() for item in addrs[::2]] 3460 ttl = [int(item.split('TTL:')[1]) for item in addrs[1::2]] 3620 for item in info.split(' '): 3621 k, v = item.split(':') 3681 for item in line.strip().split(' '): 3682 k, v = item.split(':') 3704 return [int(item) for item in line.split()]
|
/openthread-latest/src/core/net/ |
D | nat64_translator.cpp | 561 AddressMapping *item = static_cast<AddressMapping *>(aIterator.mPtr); in GetNextAddressMapping() local 563 VerifyOrExit(item != nullptr); in GetNextAddressMapping() 565 item->CopyTo(aMapping, now); in GetNextAddressMapping() 566 aIterator.mPtr = item->GetNext(); in GetNextAddressMapping()
|
/openthread-latest/third_party/mbedtls/repo/tests/scripts/ |
D | audit-validity-dates.py | 139 def __getitem__(self, item): argument 140 return self.parsers[item]
|
D | generate_tls13_compat_tests.py | 260 for item in items: 261 for i in map_table[item]:
|
D | all.sh | 932 for item in $(sed -n 's/^#define PSA_WANT_\(ECC_[0-9A-Z_a-z]*\).*/\1/p' <"$CRYPTO_CONFIG_H"); do 933 loc_list="$loc_list $item" 944 for item in $(sed -n 's/^#define PSA_WANT_\(DH_RFC7919_[0-9]*\).*/\1/p' <"$CRYPTO_CONFIG_H"); do 945 loc_list="$loc_list $item" 957 …for item in $(sed -n "s/^#define PSA_WANT_\(KEY_TYPE_${key_type}_[0-9A-Z_a-z]*\).*/\1/p" <"$CRYPTO… 960 if [ "$item" != "KEY_TYPE_ECC_KEY_PAIR_DERIVE" ]; then 961 loc_list="$loc_list $item" 2879 for item in $(sed -n 's/^#define PSA_WANT_\(ECC_[0-9A-Z_a-z]*\).*/\1/p' <"$CRYPTO_CONFIG_H"); do 2880 case $item in 2882 loc_weierstrass_list="$loc_weierstrass_list $item" [all …]
|
/openthread-latest/tools/otci/otci/ |
D | otci.py | 897 ips = [Ip6Addr(item.strip()) for item in addrs[::2]] 898 ttls = [int(item.split('TTL:')[1]) for item in addrs[1::2]] 1911 for item in allowlist: 1912 if isinstance(item, str): 1913 self.add_allowlist(item) 1915 addr, rssi = item[0], item[1]
|
/openthread-latest/third_party/mbedtls/repo/scripts/ |
D | code_size_compare.py | 652 sort_by_k = lambda item: item[0].lower() argument
|
/openthread-latest/tests/toranj/cli/ |
D | cli.py | 930 for item in result['Radios'][1:-1].split(','): 931 name, prf = item.strip().split('(')
|
/openthread-latest/tools/harness-thci/ |
D | OpenThread_WpanCtl.py | 542 for item in router: 543 if 'RouterId' in item: 544 routerid = item.split(':')[1]
|
/openthread-latest/third_party/mbedtls/repo/ |
D | CMakeLists.txt | 175 # Remove the last item if there are more than one
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/ |
D | psa-storage-resilience.md | 211 …the transaction list, and ignoring any failure of a removal action if the item to remove does not … 236 …the transaction list, and ignoring any failure of a removal action if the item to remove does not …
|