/openthread-3.7.0/tests/unit/ |
D | test_linked_list.cpp | 138 LinkedList<Entry> list; in TestLinkedList() local 143 VerifyOrQuit(list.IsEmpty(), "failed after init"); in TestLinkedList() 144 VerifyOrQuit(list.GetHead() == nullptr, "failed after init"); in TestLinkedList() 145 VerifyOrQuit(list.Pop() == nullptr, "failed when empty"); in TestLinkedList() 146 VerifyOrQuit(list.Find(a, prev) == kErrorNotFound, "succeeded when empty"); in TestLinkedList() 148 VerifyLinkedListContent(&list, nullptr); in TestLinkedList() 150 list.Push(a); in TestLinkedList() 151 VerifyOrQuit(!list.IsEmpty()); in TestLinkedList() 152 VerifyLinkedListContent(&list, &a, nullptr); in TestLinkedList() 153 VerifyOrQuit(list.Find(b, prev) == kErrorNotFound, "succeeded for a missing entry"); in TestLinkedList() [all …]
|
/openthread-3.7.0/src/core/thread/ |
D | address_resolver.cpp | 73 for (CacheEntryList *list : lists) in Clear() 77 while ((entry = list->Pop()) != nullptr) in Clear() 79 if (list == &mQueryList) in Clear() 92 const CacheEntryList *list = aIterator.GetList(); in GetNextCacheEntry() local 97 if (list == nullptr) in GetNextCacheEntry() 99 list = &mCachedList; in GetNextCacheEntry() 101 else if (list == &mCachedList) in GetNextCacheEntry() 103 list = &mSnoopedList; in GetNextCacheEntry() 105 else if (list == &mSnoopedList) in GetNextCacheEntry() 107 list = &mQueryList; in GetNextCacheEntry() [all …]
|
/openthread-3.7.0/third_party/mbedtls/repo/docs/architecture/ |
D | psa-storage-resilience.md | 127 …) follow this pattern, with `t` being the file containing the transaction list that the recovery c… 133 …list”, with one entry per key. In this section, we explore recovery strategies, and we determine w… 165 Each entry in the transaction list contains the API key identifier, the key lifetime (or at least t… 170 2. Add the key to the transaction list, indicating that it is being created. 173 5. Remove the key from the transaction list. 175 During recovery, for each key in the transaction list that was being created: 177 * If the key exists in the secure element, just remove it from the transaction list. 178 …element, first remove the key file if it is present, then remove the key from the transaction list. 182 1. Add the key to the transaction list, indicating that it is being destroyed. 185 4. Remove the key from the transaction list. [all …]
|
/openthread-3.7.0/src/cli/ |
D | README_HISTORY.md | 7 …list is configurable through a set of OpenThread config options, e.g. `OPENTHREAD_CONFIG_HISTORY_T… 27 …tamped. When the history list is printed, the timestamps are shown relative the time the command w… 41 …ys. If the event is older than 49 days, the entry is still tracked in the list but the timestamp i… 70 Usage `history ipaddr [list] [<num-entries>]` 98 Print the unicast IPv6 address history as a list (the last 5 entries). 101 > history ipaddr list 5 112 Usage `history ipmaddr [list] [<num-entries>]` 138 Print the multicast IPv6 address history as a list. 141 > history ipmaddr list 156 Usage `history neighbor [list] [<num-entries>]` [all …]
|
D | README_SRP_CLIENT.md | 102 Service list: 113 Service list: 115 Removed service list: 125 Service list: 126 Removed service list: 134 Print the full host info (host name, state, list of host addresses). 181 Get the list of host addresses (when auto host address is not enabled). 197 Explicitly set the list of host addresses (can be set while client is running to update the host ad… 328 Print the list of services. 343 The `<servicename>` can optionally include a list of service subtype labels separated by comma. [all …]
|
/openthread-3.7.0/third_party/mbedtls/repo/library/ |
D | asn1write.c | 355 mbedtls_asn1_named_data *list, in asn1_find_named_data() argument 358 while (list != NULL) { in asn1_find_named_data() 359 if (list->oid.len == len && in asn1_find_named_data() 360 memcmp(list->oid.p, oid, len) == 0) { in asn1_find_named_data() 364 list = list->next; in asn1_find_named_data() 367 return list; in asn1_find_named_data() 370 #define asn1_find_named_data(list, oid, len) \ argument 371 ((mbedtls_asn1_named_data *) mbedtls_asn1_find_named_data(list, oid, len))
|
D | asn1parse.c | 453 const mbedtls_asn1_named_data *mbedtls_asn1_find_named_data(const mbedtls_asn1_named_data *list, in mbedtls_asn1_find_named_data() argument 456 while (list != NULL) { in mbedtls_asn1_find_named_data() 457 if (list->oid.len == len && in mbedtls_asn1_find_named_data() 458 memcmp(list->oid.p, oid, len) == 0) { in mbedtls_asn1_find_named_data() 462 list = list->next; in mbedtls_asn1_find_named_data() 465 return list; in mbedtls_asn1_find_named_data()
|
/openthread-3.7.0/third_party/mbedtls/repo/programs/hash/ |
D | generic_sum.c | 161 const int *list; in main() local 167 list = mbedtls_md_list(); in main() 168 while (*list) { in main() 169 md_info = mbedtls_md_info_from_type(*list); in main() 171 list++; in main()
|
/openthread-3.7.0/third_party/mbedtls/repo/tests/ |
D | CMakeLists.txt | 25 --list-for-cmake 37 --list-for-cmake 49 --list-for-cmake 67 list(APPEND bignum_generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/suites/${file}) 70 list(APPEND ecp_generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/suites/${file}) 73 list(APPEND psa_generated_data_files ${CMAKE_CURRENT_BINARY_DIR}/suites/${file}) 166 # from the generated_data_files list in parent scope. 177 list(APPEND bignum_generated_data_names ${generated_data_name}) 186 list(APPEND ecp_generated_data_names ${generated_data_name}) 195 list(APPEND psa_generated_data_names ${generated_data_name}) [all …]
|
/openthread-3.7.0/third_party/mbedtls/repo/programs/aes/ |
D | crypt_and_hash.c | 98 const int *list; in main() local 103 list = mbedtls_cipher_list(); in main() 104 while (*list) { in main() 105 cipher_info = mbedtls_cipher_info_from_type(*list); in main() 111 list++; in main() 115 list = mbedtls_md_list(); in main() 116 while (*list) { in main() 117 md_info = mbedtls_md_info_from_type(*list); in main() 119 list++; in main()
|
/openthread-3.7.0/ |
D | AUTHORS | 1 # This is the official list of OpenThread authors for copyright purposes. 3 # This does not necessarily list everyone who has contributed code, since in 4 # some cases, their employer may be the copyright holder. To see the full list
|
D | CMakeLists.txt | 8 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer in the 115 list(APPEND OT_PUBLIC_INCLUDES ${PROJECT_BINARY_DIR}/etc/cmake) 116 list(APPEND OT_PUBLIC_INCLUDES ${PROJECT_SOURCE_DIR}/etc/cmake) 117 list(APPEND OT_PUBLIC_INCLUDES ${PROJECT_SOURCE_DIR}/include)
|
/openthread-3.7.0/third_party/mbedtls/repo/programs/fuzz/ |
D | CMakeLists.txt | 31 list(APPEND exe_sources onefile.c) 35 list(FIND executables_with_common_c ${exe} exe_index) 37 list(APPEND exe_sources common.c)
|
/openthread-3.7.0/tools/harness-automation/ |
D | README.rst | 21 [--list-file LIST_FILE] [--continue-from CONTINUE_FROM] 22 [--auto-reboot] [--manual-reset] [--list-devices] 27 Use ``./start.sh --help`` for a full list of options.
|
/openthread-3.7.0/third_party/mbedtls/repo/ |
D | SUPPORT.md | 10 - the [Mbed TLS mailing-list 11 archives](https://lists.trustedfirmware.org/archives/list/mbed-tls@lists.trustedfirmware.org/). 16 mailing list](https://lists.trustedfirmware.org/mailman3/lists/mbed-tls.lists.trustedfirmware.org).
|
/openthread-3.7.0/etc/cmake/ |
D | print.cmake | 8 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer in the 35 # The print.cmake handles this issue by taking a CMake list and prints each item 36 # in the list on a new line.
|
D | options.cmake | 8 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer in the 136 # values from `values` list mapping to OPENTHREAD_CONFIG 155 list(FIND ${values} "${${name}}" ot_index) 261 # Get a list of the available platforms and output as a list to the 'arg_platforms' argument 263 list(APPEND result "NO" "posix" "external") 268 list(APPEND result "${platform}") 271 list(REMOVE_ITEM result utils) 272 list(SORT result) 280 list(FIND OT_PLATFORM_VALUES "${OT_PLATFORM}" ot_index) [all …]
|
/openthread-3.7.0/script/ |
D | check-gn-build | 42 gn args gn-out --list 51 gn args gn-out --list
|
/openthread-3.7.0/third_party/mbedtls/repo/docs/architecture/psa-migration/ |
D | syms.sh | 45 list() { function 72 list $ITEM
|
/openthread-3.7.0/tests/scripts/thread-cert/pktverify/ |
D | test_layer_fields.py | 92 self.assertIsInstanceOrNull(coap.tlv.type, list) 167 self.assertIsInstanceOrNull(p.thread_meshcop.tlv.net_name, list) 177 self.assertIsInstance(thread_meshcop.tlv.net_name, list) 183 self.assertIsInstance(thread_meshcop.tlv.channel, list) 223 self.assertIsInstance(thread_meshcop.tlv.pan_id, list) 252 self.assertIsInstanceOrNull(icmpv6.mldr.mar.multicast_address, list) 274 self.assertIsInstanceOrNull(lowpan.nhc.pattern, list) 278 self.assertIsInstanceOrNull(lowpan.pattern, list) 335 self.assertIsInstance(rv, list)
|
/openthread-3.7.0/tools/gerrit/ |
D | README.md | 5 …By default the changes are committed with a commit message containing the list of all squashed com… 10 git-squash-merge [--no-list] [--no-commit] <branch> [<commit msg>]" 20 - `--no-list` when used the commit message will not include the list of squashed commits.
|
/openthread-3.7.0/tests/scripts/thread-cert/ |
D | README.md | 41 - `list` - list available nodes.
|
/openthread-3.7.0/src/lib/spinel/ |
D | CMakeLists.txt | 8 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer in the 84 list(APPEND COMMON_SOURCES ${OT_SPINEL_VENDOR_HOOK_SOURCE_DIR}${OT_SPINEL_VENDOR_HOOK_SOURCE}) 85 list(APPEND COMMON_INCLUDES ${OT_SPINEL_VENDOR_HOOK_SOURCE_DIR})
|
/openthread-3.7.0/src/ncp/ |
D | CMakeLists.txt | 8 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer in the 47 list(APPEND COMMON_SOURCES ${OT_NCP_VENDOR_HOOK_SOURCE_DIR}${OT_NCP_VENDOR_HOOK_SOURCE})
|
/openthread-3.7.0/src/posix/platform/ |
D | vendor_extension_example.cmake | 8 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer in the 48 list(APPEND CMAKE_MODULE_PATH ${VENDOR_MODULE_PATH})
|