/openthread-latest/third_party/tcplp/bsdtcp/sys/ |
D | queue.h | 126 #define QMD_TRACE_HEAD(head) do { \ argument 127 (head)->trace.prevline = (head)->trace.lastline; \ 128 (head)->trace.prevfile = (head)->trace.lastfile; \ 129 (head)->trace.lastline = __LINE__; \ 130 (head)->trace.lastfile = __FILE__; \ 142 #define QMD_TRACE_HEAD(head) argument 171 #define SLIST_HEAD_INITIALIZER(head) \ argument 187 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument 189 #define SLIST_FIRST(head) ((head)->slh_first) argument 191 #define SLIST_FOREACH(var, head, field) \ argument [all …]
|
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/ |
D | crypto_knowledge.py | 109 self.head = re.sub(r'_(?:PUBLIC_KEY|KEY_PAIR)\Z', r'', m.group(1)) 214 if self.head == 'HMAC' and alg.head == 'HMAC': 216 if self.head == 'DES': 218 return alg.head in [ 222 if self.head in BLOCK_CIPHERS and \ 223 alg.head in frozenset.union(BLOCK_MAC_MODES, 226 if alg.head in ['CMAC', 'OFB'] and \ 227 self.head in ['ARIA', 'CAMELLIA']: 230 if self.head == 'CHACHA20' and alg.head == 'CHACHA20_POLY1305': 232 if self.head in {'ARC4', 'CHACHA20'} and \ [all …]
|
/openthread-latest/third_party/tcplp/lib/ |
D | lbuf.c | 43 buffer->head = newentry; in lbuf_append() 62 otLinkedBuffer* curr = buffer->head; in lbuf_pop() 73 buffer->head = NULL; in lbuf_pop() 82 buffer->head = curr; in lbuf_pop() 91 otLinkedBuffer* curr = buffer->head; in lbuf_getrange()
|
D | lbuf.h | 41 struct otLinkedBuffer* head; member 53 return buffer->head; in lbuf_head()
|
/openthread-latest/tests/scripts/expect/ |
D | posix-rcp-stack-reset.exp | 40 if {[exec head -n2 $socat_out | wc -l] == 2} { 41 set radio_pty [exec head -n1 $socat_out | grep -o {/dev/.\+}] 42 set host_pty [exec head -n2 $socat_out | tail -n1 | grep -o {/dev/.\+}]
|
D | posix-rcp-restoration.exp | 40 if {[exec head -n2 $socat_out | wc -l] == 2} { 41 set radio_pty [exec head -n1 $socat_out | grep -o {/dev/.\+}] 42 set host_pty [exec head -n2 $socat_out | tail -n1 | grep -o {/dev/.\+}]
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_asn1parse.function | 571 mbedtls_asn1_sequence head = { { 0, 0, NULL }, NULL }; 579 &head, tag), 585 TEST_EQUAL(head.buf.tag, 0); 586 TEST_ASSERT(head.buf.p == NULL); 587 TEST_EQUAL(head.buf.len, 0); 588 TEST_ASSERT(head.next == NULL); 590 cur = &head; 611 mbedtls_asn1_sequence_free(head.next); 728 mbedtls_asn1_named_data head = 732 TEST_CALLOC(head.oid.p, 1); [all …]
|
D | test_suite_asn1write.function | 472 mbedtls_asn1_named_data *head = NULL; 486 head = pointers[from]; 487 found = mbedtls_asn1_store_named_data(&head, 499 TEST_ASSERT(head == pointers[from]); 503 TEST_ASSERT(found == head); 504 TEST_ASSERT(head->next == pointers[from]); 511 if (found != NULL && found == head && found != pointers[from]) { 526 mbedtls_asn1_named_data *head = &nd; 542 found = mbedtls_asn1_store_named_data(&head, "OID", 3, 544 TEST_ASSERT(head == &nd); [all …]
|
D | test_suite_x509parse.function | 930 mbedtls_x509_name head; 934 memset(&head, 0, sizeof(head)); 939 ret = mbedtls_x509_get_name(&p, (name + name_len), &head); 941 mbedtls_asn1_free_named_data_list_shallow(head.next);
|
D | test_suite_bignum_core.function | 1039 * variable public for the loop head and the buffers for comparison.
|
/openthread-latest/tests/unit/ |
D | test_heap.cpp | 92 Node head; in TestAllocateRandomly() local 98 Node *last = &head; in TestAllocateRandomly() 124 Node *prev = &head; in TestAllocateRandomly() 145 last = head.mNext; in TestAllocateRandomly()
|
/openthread-latest/script/ |
D | check-posix-pty | 56 RADIO_PTY=$(head -n1 "$SOCAT_OUTPUT" | grep -o '/dev/.\+') 57 CORE_PTY=$(head -n2 "$SOCAT_OUTPUT" | tail -n1 | grep -o '/dev/.\+') 234 NETIF_INDEX=$(ip link show "${NETIF_NAME}" | cut -f 1 -d ":" | head -n 1)
|
/openthread-latest/third_party/mbedtls/repo/library/ |
D | asn1write.c | 375 mbedtls_asn1_named_data **head, in mbedtls_asn1_store_named_data() argument 382 if ((cur = asn1_find_named_data(*head, oid, oid_len)) == NULL) { in mbedtls_asn1_store_named_data() 410 cur->next = *head; in mbedtls_asn1_store_named_data() 411 *head = cur; in mbedtls_asn1_store_named_data()
|
D | x509_create.c | 281 int mbedtls_x509_string_to_names(mbedtls_asn1_named_data **head, const char *name) in mbedtls_x509_string_to_names() argument 296 mbedtls_asn1_free_named_data_list(head); in mbedtls_x509_string_to_names() 347 mbedtls_asn1_store_named_data(head, (char *) oid.p, oid.len, in mbedtls_x509_string_to_names() 380 int mbedtls_x509_set_extension(mbedtls_asn1_named_data **head, const char *oid, size_t oid_len, in mbedtls_x509_set_extension() argument 389 if ((cur = mbedtls_asn1_store_named_data(head, oid, oid_len, in mbedtls_x509_set_extension()
|
D | asn1parse.c | 433 void mbedtls_asn1_free_named_data_list(mbedtls_asn1_named_data **head) in mbedtls_asn1_free_named_data_list() argument 437 while ((cur = *head) != NULL) { in mbedtls_asn1_free_named_data_list() 438 *head = cur->next; in mbedtls_asn1_free_named_data_list()
|
D | x509_internal.h | 51 int mbedtls_x509_set_extension(mbedtls_asn1_named_data **head, const char *oid, size_t oid_len,
|
D | x509.c | 504 mbedtls_x509_name *head = cur; in mbedtls_x509_get_name() local 560 mbedtls_asn1_free_named_data_list_shallow(head->next); in mbedtls_x509_get_name() 561 head->next = NULL; in mbedtls_x509_get_name()
|
D | ssl_tls.c | 1838 static int ssl_append_key_cert(mbedtls_ssl_key_cert **head, in ssl_append_key_cert() argument 1846 ssl_key_cert_free(*head); in ssl_append_key_cert() 1847 *head = NULL; in ssl_append_key_cert() 1861 if (*head == NULL) { in ssl_append_key_cert() 1862 *head = new_cert; in ssl_append_key_cert() 1864 mbedtls_ssl_key_cert *cur = *head; in ssl_append_key_cert()
|
/openthread-latest/src/core/common/ |
D | message.cpp | 915 Message *head = GetTail()->Next(); in Enqueue() local 917 aMessage.Next() = head; in Enqueue() 920 head->Prev() = &aMessage; in Enqueue() 1019 const Message *head; in GetHeadForPriority() local 1028 head = previousTail->Next(); in GetHeadForPriority() 1032 head = nullptr; in GetHeadForPriority() 1035 return head; in GetHeadForPriority()
|
/openthread-latest/third_party/mbedtls/repo/scripts/ |
D | footprint.sh | 92 GIT_HEAD=$( git rev-parse HEAD | head -c 10 )
|
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/ |
D | asn1.h | 622 void mbedtls_asn1_free_named_data_list(mbedtls_asn1_named_data **head);
|
D | x509.h | 340 int mbedtls_x509_string_to_names(mbedtls_asn1_named_data **head, const char *name);
|
/openthread-latest/third_party/mbedtls/repo/programs/ssl/ |
D | ssl_server2.c | 759 void sni_free(sni_entry *head) in sni_free() argument 761 sni_entry *cur = head, *next; in sni_free() 957 int psk_free(psk_entry *head) in psk_free() argument 961 while (head != NULL) { in psk_free() 964 mbedtls_svc_key_id_t const slot = head->slot; in psk_free() 974 next = head->next; in psk_free() 975 mbedtls_free(head); in psk_free() 976 head = next; in psk_free()
|
/openthread-latest/third_party/mbedtls/repo/tests/ |
D | Makefile | 231 …head -n -1 ./libtestdriver1/include/psa/crypto_config.h.bak > ./libtestdriver1/include/psa/crypto_…
|
/openthread-latest/third_party/mbedtls/repo/tests/data_files/ |
D | Makefile | 377 …{ head -n-2 $<; tail -n-2 $< | sed -e '1s/0\(=*\)$$/_\1/' -e '1s/[^_=]\(=*\)$$/0\1/' -e '1s/_/1/';… 538 …{ head -n-2 $<; tail -n-2 $< | sed -e '1s/0\(=*\)$$/_\1/' -e '1s/[^_=]\(=*\)$$/0\1/' -e '1s/_/1/';… 574 …{ head -n-2 $<; tail -n-2 $< | sed -e '1s/0\(=*\)$$/_\1/' -e '1s/[^_=]\(=*\)$$/0\1/' -e '1s/_/1/';… 610 …{ head -n-2 $<; tail -n-2 $< | sed -e '1s/0\(=*\)$$/_\1/' -e '1s/[^_=]\(=*\)$$/0\1/' -e '1s/_/1/';… 1525 …{ head -n-2 $<; tail -n-2 $< | sed -e '1s/0\(=*\)$$/_\1/' -e '1s/[^_=]\(=*\)$$/0\1/' -e '1s/_/1/';… 1784 …{ head -n-2 $<; tail -n-2 $< | sed -e '1s/0\(=*\)$$/_\1/' -e '1s/[^_=]\(=*\)$$/0\1/' -e '1s/_/1/';…
|