/openthread-3.5.0/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 87 // This function verifies the content of the linked list matches a given list of entries. 101 VerifyOrQuit(argEntry != nullptr, "List contains more entries than expected"); in VerifyLinkedListContent() 102 VerifyOrQuit(argEntry == &entry, "List does not contain the same entry"); in VerifyLinkedListContent() 108 VerifyOrQuit(prev == argPrev, "List::Find() returned prev entry is incorrect"); in VerifyLinkedListContent() 111 VerifyOrQuit(prev == argPrev, "List::FindMatching() returned prev entry is incorrect"); in VerifyLinkedListContent() 114 VerifyOrQuit(prev == argPrev, "List::FindMatching() returned prev entry is incorrect"); in VerifyLinkedListContent() 122 VerifyOrQuit(argEntry == nullptr, "List contains less entries than expected"); in VerifyLinkedListContent() 138 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() 81 …uit(addressObserved[index], "Child::IterateIp6Addresses() missed an entry from the expected list"); in VerifyChildIp6Addresses() 96 … "Child::GetMeshLocalIp6Address() returned an address not in the expected list"); in VerifyChildIp6Addresses() 137 …Quit(addressIsInList, "Child::IterateIp6Addresses() returned an address not in the expected list"); in VerifyChildIp6Addresses() 143 …uit(addressObserved[index], "Child::IterateIp6Addresses() missed an entry from the expected list"); in VerifyChildIp6Addresses() 262 printf("Checking for failure when adding an address already in list"); in TestChildIp6Address() 274 printf("Removing addresses from list starting from front of the list"); in TestChildIp6Address() 282 "RemoveIp6Address() did not fail when removing an address not on the list"); in TestChildIp6Address() [all …]
|
/openthread-3.5.0/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. 58 * Represents a linked list entry. 60 * Provides methods to `GetNext()` and `SetNext()` in the linked list entry. 73 * Gets the next entry in the linked list. 75 … * @returns A pointer to the next entry in the linked list or `nullptr` if at the end of the list. 81 * 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. 65 * On destruction, all existing entries in the list are freed. 71 * Clears the list and frees all existing entries in it. 82 * Clears the list and frees all existing entries in it. 88 * Pops an entry from head of the linked list and return an `OwnedPtr` to it. [all …]
|
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. 48 * Returns the second argument in a list of input arguments if any. 50 * @note: This macro works when the list contains either one or two arguments. 52 * @param[in] ... A list of arguments (MUST contain either one or two arguments). 60 * Expands to comma separated list of arguments excluding the first one. 67 * @param[in] ... A list of arguments (MUST contain at least one). [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 104 * Represents a list of events. 111 * Represents a bit-field indicating a list of events (with values from `Event`) 117 * Initializes the `Events` list (as empty). 126 * Clears the `Events` list. 132 * Indicates whether the `Events` list contains a given event. 136 * @returns TRUE if the list contains the @p aEvent, FALSE otherwise. 142 * Indicates whether the `Events` list contains any of a given set of events. 146 * @returns TRUE if the list contains any of the @p aEvents set, FALSE otherwise. [all …]
|
D | tasklet.cpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 51 // Tasklets are saved in a circular singly linked list. in PostTasklet() 72 // keep a copy the current list and then clear the main list by in ProcessQueuedTasklets()
|
/openthread-3.5.0/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 87 * Adds a port to the allowed unsecured port list. 91 * @retval kErrorNone The port was successfully added to the allowed unsecure port list. 93 * @retval kErrorNoBufs The unsecure port list is full. 99 * Removes a port from the allowed unsecure port list. 103 …* @retval kErrorNone The port was successfully removed from the allowed unsecure port list. 105 * @retval kErrorNotFound The port was not found in the unsecure port list. 111 * Checks whether a port is in the unsecure port list. 115 * @returns Whether the given port is in the unsecure port list. [all …]
|
/openthread-3.5.0/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 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() [all …]
|
D | child.hpp | 8 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer in the 95 * IPv6 address list. 147 * Indicates whether the iterator has reached end of the list. 149 * @retval TRUE There are no more entries in the list (reached end of the list). 234 * Clears the IPv6 address list for the child. 253 * @retval kErrorNotFound No mesh-local IPv6 address in the IPv6 address list. 289 * Adds an IPv6 address to the list. 294 * @retval kErrorAlready Address is already in the list. 302 * Removes an IPv6 address from the list. [all …]
|
/openthread-3.5.0/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 51 …fies the maximum number of entries in Network Info (role, mode, partition ID, RLOC16) history list. 63 * Specifies the maximum number of entries in unicast IPv6 address history list. 75 * Specifies the maximum number of entries in multicast IPv6 address history list. 87 * Specifies the maximum number of entries in RX history list. 99 * Specifies the maximum number of entries in TX history list. 121 * Specifies the maximum number of entries in neighbor table history list. 133 * Specifies the maximum number of entries in router table history list. 145 * Specifies the maximum number of entries in Network Data On Mesh Prefix history list. [all …]
|
/openthread-3.5.0/third_party/mbedtls/repo/3rdparty/everest/ |
D | CMakeLists.txt | 1 list (APPEND everest_src) 2 list (APPEND everest_inc_public) 3 list (APPEND everest_inc) 4 list (APPEND everest_def) 12 list(APPEND everest_inc_public ${CMAKE_CURRENT_SOURCE_DIR}/include) 13 list(APPEND everest_inc ${CMAKE_CURRENT_SOURCE_DIR}/include/everest ${CMAKE_CURRENT_SOURCE_DIR}/inc…
|
/openthread-3.5.0/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-3.5.0/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" 110 * Represents an iterator to iterate through a history list. 122 * the beginning of the list. 153 * Iterates over the entries in the network info history list. 161 * @returns A pointer to `NetworkInfo` entry or `nullptr` if no more entries in the list. 170 * Iterates over the entries in the unicast address history list. 178 * @returns A pointer to `UnicastAddress` entry or `nullptr` if no more entries in the list. 187 * Iterates over the entries in the multicast address history list. [all …]
|
/openthread-3.5.0/third_party/mbedtls/repo/3rdparty/ |
D | CMakeLists.txt | 1 list (APPEND thirdparty_src) 2 list (APPEND thirdparty_lib) 3 list (APPEND thirdparty_inc_public) 4 list (APPEND thirdparty_inc) 5 list (APPEND thirdparty_def)
|
/openthread-3.5.0/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 80 …* It can be used either as an allow list or a deny list. Once the filter is cleared, the first `no… 81 …* or `nodeidfilter deny` will determine whether it is set up as an allow or deny list. Subsequent … 83 * up as an allow list), a subsequent `nodeidfilter deny` will result in `InvalidState` error. 86 … - `nodeidfilter deny <nodeid>` : It denies the connection to a specified node (use as deny-list). 87 …- `nodeidfilter allow <nodeid> : It allows the connection to a specified node (use as allow-list). 89 …* - `nodeidfilter` : Outputs filter mode (allow-list or deny-list) and filtered…
|
/openthread-3.5.0/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. 59 def wait(self, duration: float) -> List[str]: 76 def shell(self, cmd: str, timeout: float) -> List[str]: 115 def execute_command(self, cmd, timeout=10) -> List[str]: 133 def wait(self, duration: float) -> List[str]: 159 …pect_line(self, timeout: float, expect_line: Union[str, Pattern], asynchronous=False) -> List[str]: [all …]
|
D | errors.py | 9 # notice, this list of conditions and the following disclaimer. 11 # notice, this list of conditions and the following disclaimer in the 29 from typing import List 47 def __init__(self, cmd: str, output: List[str]): 58 def __init__(self, output: List[str]):
|
/openthread-3.5.0/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 63 * Represents an iterator to iterate through a history list. 167 …* the device (re)starts and when the previous children list is retrieved from non-volatile setting… 259 * An iterator can be initialized again to start from the beginning of the list. 261 …* When iterating over entries in a list, to ensure the entry ages are consistent, the age is given… 271 * Iterates over the entries in the network info history list. 280 …@returns A pointer to `otHistoryTrackerNetworkInfo` entry or `NULL` if no more entries in the list. 288 * Iterates over the entries in the unicast address history list. 297 …s A pointer to `otHistoryTrackerUnicastAddressInfo` entry or `NULL` if no more entries in the list. [all …]
|
/openthread-3.5.0/tests/scripts/expect/ |
D | cli-macfilter.exp | 9 # notice, this list of conditions and the following disclaimer. 11 # notice, this list of conditions and the following disclaimer in the 36 expect "RssIn List:" 58 expect "RssIn List:" 78 expect "RssIn List:" 93 expect "RssIn List:" 115 expect "RssIn List:"
|
/openthread-3.5.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. 40 foreach(item ${LIST})
|
/openthread-3.5.0/src/cli/ |
D | README_SRP_CLIENT.md | 3 ## Command List 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. [all …]
|
/openthread-3.5.0/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
D | test_case.py | 22 from typing import Iterable, List, Optional 40 self.comments = [] #type: List[str] 42 self.dependencies = [] #type: List[str] 44 self.arguments = [] #type: List[str] 52 def set_dependencies(self, dependencies: List[str]) -> None: 58 def set_arguments(self, arguments: List[str]) -> None:
|
/openthread-3.5.0/third_party/tcplp/bsdtcp/sys/ |
D | queue.h | 9 * notice, this list of conditions and the following disclaimer. 11 * notice, this list of conditions and the following disclaimer in the 43 * A singly-linked list is headed by a single forward pointer. The elements 46 * added to the list after an existing element or at the head of the list. 47 * Elements being removed from the head of the list should use the explicit 48 * macro for this purpose for optimum efficiency. A singly-linked list may 54 * head of the list and the other to the tail of the list. The elements are 57 * to the list after an existing element, at the head of the list, or at the 58 * end of the list. Elements being removed from the head of the tail queue 64 * A list is headed by a single forward pointer (or an array of forward [all …]
|
/openthread-3.5.0/tests/scripts/thread-cert/ |
D | debug.py | 9 # notice, this list of conditions and the following disclaimer. 11 # notice, this list of conditions and the following disclaimer in the 40 `list` - list available nodes. 97 elif line == 'list':
|