Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 186) sorted by relevance

12345678

/openthread-latest/tests/unit/
Dtest_linked_list.cpp139 LinkedList<Entry> list; in TestLinkedList() local
144 VerifyOrQuit(list.IsEmpty(), "failed after init"); in TestLinkedList()
145 VerifyOrQuit(list.GetHead() == nullptr, "failed after init"); in TestLinkedList()
146 VerifyOrQuit(list.Pop() == nullptr, "failed when empty"); in TestLinkedList()
147 VerifyOrQuit(list.Find(a, prev) == kErrorNotFound, "succeeded when empty"); in TestLinkedList()
149 VerifyLinkedListContent(&list, nullptr); in TestLinkedList()
151 list.Push(a); in TestLinkedList()
152 VerifyOrQuit(!list.IsEmpty()); in TestLinkedList()
153 VerifyLinkedListContent(&list, &a, nullptr); in TestLinkedList()
154 VerifyOrQuit(list.Find(b, prev) == kErrorNotFound, "succeeded for a missing entry"); in TestLinkedList()
[all …]
/openthread-latest/src/core/thread/
Daddress_resolver.cpp60 for (CacheEntryList *list : lists) in Clear()
64 while ((entry = list->Pop()) != nullptr) in Clear()
66 if (list == &mQueryList) in Clear()
79 const CacheEntryList *list = aIterator.GetList(); in GetNextCacheEntry() local
84 if (list == nullptr) in GetNextCacheEntry()
86 list = &mCachedList; in GetNextCacheEntry()
88 else if (list == &mCachedList) in GetNextCacheEntry()
90 list = &mSnoopedList; in GetNextCacheEntry()
92 else if (list == &mSnoopedList) in GetNextCacheEntry()
94 list = &mQueryList; in GetNextCacheEntry()
[all …]
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dpsa-storage-resilience.md127 …) follow this pattern, with `t` being the file containing the transaction list that the recovery c…
133list”, 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-latest/src/cli/
DREADME_HISTORY.md7list 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 …]
DREADME_SRP_CLIENT.md102 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-latest/third_party/mbedtls/repo/library/
Dasn1write.c355 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))
Dasn1parse.c453 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-latest/third_party/mbedtls/repo/programs/hash/
Dgeneric_sum.c161 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-latest/third_party/mbedtls/repo/tests/
DCMakeLists.txt25 --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-latest/third_party/mbedtls/repo/programs/aes/
Dcrypt_and_hash.c98 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-latest/
DAUTHORS1 # 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
/openthread-latest/tools/harness-automation/
DREADME.rst21 [--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-latest/third_party/mbedtls/repo/programs/fuzz/
DCMakeLists.txt31 list(APPEND exe_sources onefile.c)
35 list(FIND executables_with_common_c ${exe} exe_index)
37 list(APPEND exe_sources common.c)
/openthread-latest/third_party/mbedtls/repo/
DSUPPORT.md10 - 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-latest/etc/cmake/
Dprint.cmake8 # 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.
Doptions.cmake8 # 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)
267 # Get a list of the available platforms and output as a list to the 'arg_platforms' argument
269 list(APPEND result "NO" "posix" "external" "nexus")
274 list(APPEND result "${platform}")
277 list(REMOVE_ITEM result utils)
278 list(SORT result)
286 list(FIND OT_PLATFORM_VALUES "${OT_PLATFORM}" ot_index)
[all …]
/openthread-latest/script/
Dcheck-gn-build42 gn args gn-out --list
51 gn args gn-out --list
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dsyms.sh45 list() { function
72 list $ITEM
/openthread-latest/tests/scripts/thread-cert/pktverify/
Dtest_layer_fields.py92 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-latest/tools/gerrit/
DREADME.md5 …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-latest/tests/scripts/thread-cert/
DREADME.md41 - `list` - list available nodes.
/openthread-latest/src/lib/spinel/
DCMakeLists.txt8 # notice, this list of conditions and the following disclaimer.
10 # notice, this list of conditions and the following disclaimer in the
86 list(APPEND COMMON_SOURCES ${OT_SPINEL_VENDOR_HOOK_SOURCE_DIR}${OT_SPINEL_VENDOR_HOOK_SOURCE})
87 list(APPEND COMMON_INCLUDES ${OT_SPINEL_VENDOR_HOOK_SOURCE_DIR})
/openthread-latest/src/posix/platform/
Dvendor_extension_example.cmake8 # 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})
/openthread-latest/third_party/mbedtls/repo/scripts/
Dgenerate_driver_wrappers.py40 def render(template_path: str, driver_jsoncontext: list) -> str: argument
54 driver_jsoncontext: list) -> None: argument
136 jsondriver_list: str) -> list:
Dgenerate_ssl_debug_helpers.py237 matches = list(sig_alg_pattern.finditer(source_code, start, end))
244 assert isinstance(definitions, list) and definitions
296 matches = list(named_group_pattern.finditer(source_code, start, end))
303 assert isinstance(definitions, list) and definitions

12345678