| /openthread-latest/tests/unit/ |
| D | test_linked_list.cpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 88 // This function verifies the content of the linked list matches a given list of entries. 102 VerifyOrQuit(argEntry != nullptr, "List contains more entries than expected"); in VerifyLinkedListContent() 103 VerifyOrQuit(argEntry == &entry, "List does not contain the same entry"); in VerifyLinkedListContent() 109 VerifyOrQuit(prev == argPrev, "List::Find() returned prev entry is incorrect"); in VerifyLinkedListContent() 112 VerifyOrQuit(prev == argPrev, "List::FindMatching() returned prev entry is incorrect"); in VerifyLinkedListContent() 115 VerifyOrQuit(prev == argPrev, "List::FindMatching() returned prev entry is incorrect"); in VerifyLinkedListContent() 123 VerifyOrQuit(argEntry == nullptr, "List contains less entries than expected"); in VerifyLinkedListContent() 139 LinkedList<Entry> list; in TestLinkedList() local [all …]
|
| D | test_child.cpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 74 …Quit(addressIsInList, "Child::IterateIp6Addresses() returned an address not in the expected list"); in VerifyChildIp6Addresses() 89 …uit(addressObserved[index], "Child::IterateIp6Addresses() missed an entry from the expected list"); in VerifyChildIp6Addresses() 98 … "Child::GetMeshLocalIp6Address() returned an address not in the expected list"); in VerifyChildIp6Addresses() 175 printf("Checking for failure when adding an address already in list"); in TestChildIp6Address() 187 printf("Removing addresses from list starting from front of the list"); in TestChildIp6Address() 195 "RemoveIp6Address() did not fail when removing an address not on the list"); in TestChildIp6Address() 202 printf("Removing addresses from list starting from back of the list"); in TestChildIp6Address() 215 "RemoveIp6Address() did not fail when removing an address not on the list"); in TestChildIp6Address() [all …]
|
| /openthread-latest/src/core/common/ |
| D | linked_list.hpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 31 * This file includes definitions for a generic singly linked list. 48 * @addtogroup core-linked-list 51 * This module includes definitions for OpenThread Singly Linked List. 57 * Represents a linked list entry. 59 * Provides methods to `GetNext()` and `SetNext()` in the linked list entry. 71 * Gets the next entry in the linked list. 73 … * @returns A pointer to the next entry in the linked list or `nullptr` if at the end of the list. 78 * Gets the next entry in the linked list. [all …]
|
| D | owning_list.hpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 31 …* This file includes definitions for a singly linked list which owns its entries and frees them … 32 * the list. 46 * Represents a singly linked list which owns its entries and frees them upon destruction of the 47 * list. 63 * On destruction, all existing entries in the list are freed. 68 * Clears the list and frees all existing entries in it. 78 * Clears the list and frees all existing entries in it. 83 * Pops an entry from head of the linked list and return an `OwnedPtr` to it. [all …]
|
| D | notifier.hpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 103 * Represents a list of events. 109 * Represents a bit-field indicating a list of events (with values from `Event`) 114 * Initializes the `Events` list (as empty). 122 * Clears the `Events` list. 127 * Indicates whether the `Events` list contains a given event. 131 * @returns TRUE if the list contains the @p aEvent, FALSE otherwise. 136 * Indicates whether the `Events` list contains any of a given set of events. 140 * @returns TRUE if the list contains any of the @p aEvents set, FALSE otherwise. [all …]
|
| /openthread-latest/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-latest/third_party/mbedtls/repo/tests/opt-testcases/ |
| D | tls13-kex-modes.sh | 1569 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \ 1571 -c "client hello, adding PSK binder list" \ 1583 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \ 1585 -c "client hello, adding PSK binder list" \ 1596 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \ 1598 -c "client hello, adding PSK binder list" \ 1610 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \ 1612 -c "client hello, adding PSK binder list" \ 1624 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \ 1626 -c "client hello, adding PSK binder list" \ [all …]
|
| /openthread-latest/src/core/thread/ |
| D | address_resolver.cpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 60 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() [all …]
|
| /openthread-latest/src/core/net/ |
| D | ip6_filter.hpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 83 * Adds a port to the allowed unsecured port list. 87 * @retval kErrorNone The port was successfully added to the allowed unsecure port list. 89 * @retval kErrorNoBufs The unsecure port list is full. 94 * Removes a port from the allowed unsecure port list. 98 …* @retval kErrorNone The port was successfully removed from the allowed unsecure port list. 100 * @retval kErrorNotFound The port was not found in the unsecure port list. 105 * Checks whether a port is in the unsecure port list. 109 * @returns Whether the given port is in the unsecure port list. [all …]
|
| /openthread-latest/src/cli/ |
| D | cli_mac_filter.cpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 69 OutputLine("RssIn List:"); in OutputFilter() 153 * - Current mode of the MAC filter list: Either `AllowList`, `DenyList,` or `Disabled` in Process() 154 * - A list of all the extended addresses in the filter. The received signal strength (rss) and in Process() 177 * Adds an IEEE 802.15.4 Extended Address to the MAC filter list. in Process() 208 * This command removes the specified extended address from the MAC filter list. in Process() 209 …tion is performed if the specified extended address does not match an entry in the MAC filter list. in Process() 226 * This command clears all the extended addresses from the MAC filter list. in Process() 227 …* @note This command does not affect entries in the `RssIn` list. That list contains extended addr… in Process() [all …]
|
| /openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
| D | bignum_mod_raw.py | 6 from typing import Iterator, List 28 def arguments(self) -> List[str]: 34 def result(self) -> List[str]: 59 ] # type: List[str] 61 def result(self) -> List[str]: 78 def arguments(self) -> List[str]: 84 def result(self) -> List[str]: 102 def result(self) -> List[str]: 117 def result(self) -> List[str]: 135 def arguments(self) -> List[str]: [all …]
|
| D | ecp.py | 6 from typing import List 29 moduli = ["fffffffffffffffffffffffffffffffeffffffffffffffff"] # type: List[str] 82 def result(self) -> List[str]: 90 def arguments(self)-> List[str]: 106 moduli = ["ffffffffffffffffffffffffffffffff000000000000000000000001"] # type: List[str] 161 def result(self) -> List[str]: 169 def arguments(self)-> List[str]: 185 moduli = ["ffffffff00000001000000000000000000000000ffffffffffffffffffffffff"] # type: List[str] 246 def result(self) -> List[str]: 254 def arguments(self)-> List[str]: [all …]
|
| D | test_data_generation.py | 20 from typing import Callable, Dict, Iterable, Iterator, List, Type, TypeVar 35 dependencies: A list of dependencies required for the test case. 44 dependencies = [] # type: List[str] 55 def arguments(self) -> List[str]: 56 """Get the list of arguments for the test case. 58 Override this method to provide the list of arguments required for 62 List of arguments required for the test function. 182 parser.add_argument('--list', action='store_true', 183 help='List available targets and exit') 184 parser.add_argument('--list-for-cmake', action='store_true', [all …]
|
| D | bignum_mod.py | 6 from typing import Dict, List 28 def arguments(self) -> List[str]: 34 def result(self) -> List[str]: 47 def result(self) -> List[str]: 64 def result(self) -> List[str]: 82 def result(self) -> List[str]: 98 def result(self) -> List[str]:
|
| D | psa_information.py | 10 from typing import FrozenSet, List, Optional 31 """Return the list of known key types, algorithms, etc.""" 61 def finish_family_dependencies(dependencies: List[str], bits: int) -> List[str]: 76 def automatic_dependencies(*expressions: str) -> List[str]: 106 ) -> List[str]: 126 def hack_dependencies_not_implemented(dependencies: List[str]) -> None: 141 ret_list = list() 156 def fix_key_pair_dependencies(dep_list: List[str], usage: str):
|
| /openthread-latest/tools/otci/otci/ |
| D | command_handlers.py | 9 # notice, this list of conditions and the following disclaimer. 11 # notice, this list of conditions and the following disclaimer in the 35 from typing import Any, Callable, Optional, Union, List, Pattern 46 def execute_command(self, cmd: str, timeout: float) -> List[str]: 48 command output as a list of lines. 55 def execute_platform_command(self, cmd: str, timeout: float) -> List[str]: 57 return the command output as a list of lines. 67 def wait(self, duration: float) -> List[str]: 84 def shell(self, cmd: str, timeout: float) -> List[str]: 122 def execute_command(self, cmd, timeout=10) -> List[str]: [all …]
|
| /openthread-latest/src/core/config/ |
| D | history_tracker.h | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 58 …fies the maximum number of entries in Network Info (role, mode, partition ID, RLOC16) history list. 69 * Specifies the maximum number of entries in unicast IPv6 address history list. 80 * Specifies the maximum number of entries in multicast IPv6 address history list. 91 * Specifies the maximum number of entries in RX history list. 102 * Specifies the maximum number of entries in TX history list. 122 * Specifies the maximum number of entries in neighbor table history list. 133 * Specifies the maximum number of entries in router table history list. 144 * Specifies the maximum number of entries in Network Data On Mesh Prefix history list. [all …]
|
| /openthread-latest/src/core/utils/ |
| D | history_tracker.hpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 64 "It is derived from other configs: on-mesh prefix and external route history list sizes" 106 * Represents an iterator to iterate through a history list. 117 * the beginning of the list. 146 * Iterates over the entries in the network info history list. 154 * @returns A pointer to `NetworkInfo` entry or `nullptr` if no more entries in the list. 162 * Iterates over the entries in the unicast address history list. 170 * @returns A pointer to `UnicastAddress` entry or `nullptr` if no more entries in the list. 178 * Iterates over the entries in the multicast address history list. [all …]
|
| /openthread-latest/src/include/common/ |
| D | arg_macros.hpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 38 * Returns the first argument in a list of input arguments. 40 * @param[in] ... A list of arguments (MUST contain at least one). 42 * @returns The first argument in the given list of input arguments. 47 * Returns the second argument in a list of input arguments if any. 49 * @note: This macro works when the list contains either one or two arguments. 51 * @param[in] ... A list of arguments (MUST contain either one or two arguments). 58 * Expands to comma separated list of arguments excluding the first one. 65 * @param[in] ... A list of arguments (MUST contain at least one). [all …]
|
| /openthread-latest/tools/gerrit/ |
| D | git-squash-merge.sh | 9 # notice, this list of conditions and the following disclaimer. 11 # notice, this list of conditions and the following disclaimer in the 41 …echo "By default, the changes are committed with a commit message which includes the list of all s… 42 echo "(use --no-commit and --no-list options to change default behavior)." 44 echo "Usage: $(basename "$0") [--no-list] [--no-commit] <branch> [<commit msg>]" 49 echo " --no-list The commit message will not include the list of squashed commits" 64 --no-list) 95 # Get the list of commits (diff between current and new branch) 96 # Note that the list starts with older commits
|
| /openthread-latest/third_party/mbedtls/repo/tests/scripts/ |
| D | audit-validity-dates.py | 43 CRL = 2 # Certificate Revocation List 58 self.locations = [] # type: typing.List[str] 184 A base class that uses X509Parser to parse files to a list of AuditData. 187 - collect_default_files: Return a list of file names that are defaultly 188 used for parsing (auditing). The list will be stored in 190 - parse_file: Method that parses a single file to a list of AuditData. 196 file name list, calls `parse_file` for each file and stores the results 217 def collect_default_files(self) -> typing.List[str]: 221 def parse_file(self, filename: str) -> typing.List[AuditData]: 223 Parse a list of AuditData from file. [all …]
|
| /openthread-latest/third_party/mbedtls/repo/include/mbedtls/ |
| D | x509_crl.h | 4 * \brief X.509 certificate revocation list parsing 32 * Certificate revocation list entry. 46 /** Direct access to the list of CRL entry extensions 53 /** Next element in the linked list of entries. 54 * \p NULL indicates the end of the list. 61 * Certificate revocation list structure. 88 /** Next element in the linked list of CRL. 89 * \p NULL indicates the end of the list. 96 * \brief Parse a DER-encoded CRL and append it to the chained list 112 * \brief Parse one or more CRLs and append them to the chained list [all …]
|
| /openthread-latest/include/openthread/ |
| D | history_tracker.h | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 61 * Represents an iterator to iterate through a history list. 158 …* the device (re)starts and when the previous children list is retrieved from non-volatile setting… 243 * An iterator can be initialized again to start from the beginning of the list. 245 …* When iterating over entries in a list, to ensure the entry ages are consistent, the age is given… 254 * Iterates over the entries in the network info history list. 263 …@returns A pointer to `otHistoryTrackerNetworkInfo` entry or `NULL` if no more entries in the list. 270 * Iterates over the entries in the unicast address history list. 279 …s A pointer to `otHistoryTrackerUnicastAddressInfo` entry or `NULL` if no more entries in the list. [all …]
|
| /openthread-latest/examples/apps/cli/ |
| D | main.c | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 86 …* It can be used either as an allow list or a deny list. Once the filter is cleared, the first `no… 87 …* or `nodeidfilter deny` will determine whether it is set up as an allow or deny list. Subsequent … 89 * up as an allow list), a subsequent `nodeidfilter deny` will result in `InvalidState` error. 92 … - `nodeidfilter deny <nodeid>` : It denies the connection to a specified node (use as deny-list). 93 …- `nodeidfilter allow <nodeid> : It allows the connection to a specified node (use as allow-list). 95 …* - `nodeidfilter` : Outputs filter mode (allow-list or deny-list) and filtered…
|
| /openthread-latest/tests/scripts/thread-cert/ |
| D | run_cert_suite.py | 9 # notice, this list of conditions and the following disclaimer. 11 # notice, this list of conditions and the following disclaimer in the 37 from typing import List, Dict 154 def print_summary(scripts: List[str], script_successes: Dict[str, List[int]], script_failures: Dict… 168 def run_tests(scripts: List[str], multiply: int = 1, run_directory: str = None): 169 scripts = list(set(scripts)) 176 script_failures: Dict[str, List[int]] = defaultdict(list) 177 script_successes: Dict[str, List[int]] = defaultdict(list)
|