| /lib/lwip/lwip/contrib/ports/unix/port/netif/ |
| A D | list.c | 40 struct list * 43 struct list *list; in list_new() local 44 list = (struct list *)malloc(sizeof(struct list)); in list_new() 45 list->first = list->last = NULL; in list_new() 52 list_push(struct list *list, void *data) in list_push() argument 56 if (list->elems < list->size) { in list_push() 74 list_pop(struct list *list) in list_pop() argument 97 list_first(struct list *list) in list_first() argument 103 list_elems(struct list *list) in list_elems() argument 109 list_delete(struct list *list) in list_delete() argument [all …]
|
| /lib/lwip/lwip/contrib/ports/unix/port/include/netif/ |
| A D | list.h | 7 struct list { struct 17 struct list *list_new(int size); argument 18 int list_push(struct list *list, void *data); 19 void *list_pop(struct list *list); 20 void *list_first(struct list *list); 21 int list_elems(struct list *list); 22 void list_delete(struct list *list); 23 int list_remove(struct list *list, void *elem); 24 void list_map(struct list *list, void (* func)(void *arg));
|
| /lib/ |
| A D | list_sort.c | 113 struct list_head *list; in list_sort() local 121 list = head->next; in list_sort() 123 while (list) { in list_sort() 124 struct list_head *cur = list; in list_sort() 125 list = list->next; in list_sort() 146 list = merge(priv, cmp, part[lev], list); in list_sort() 167 struct list_head list; member 209 ela = container_of(a, struct debug_el, list); in cmp() 210 elb = container_of(b, struct debug_el, list); in cmp() 245 list_add_tail(&el->list, &head); in list_sort_test() [all …]
|
| A D | uthread.c | 20 .list = LIST_HEAD_INIT(main_thread.list), 81 list_add_tail(&uthr->list, ¤t->list); in uthread_create() 110 list_for_each_entry_safe(next, tmp, ¤t->list, list) { in uthread_schedule() 116 list_del(&next->list); in uthread_schedule() 133 list_for_each_entry(next, &main_thread.list, list) { in uthread_grp_done()
|
| A D | fdtdec_test.c | 106 int list[MAX_NODES]; in run_test() local 121 list, ARRAY_SIZE(list)), (int)strlen(expect)); in run_test() 129 name = list[i] ? fdt_get_name(blob, list[i], NULL) : NULL; in run_test()
|
| A D | fdtdec.c | 234 const char *list, *end; in fdtdec_get_pci_vendev() local 238 if (!list) in fdtdec_get_pci_vendev() 241 end = list + len; in fdtdec_get_pci_vendev() 242 while (list < end) { in fdtdec_get_pci_vendev() 243 len = strlen(list); in fdtdec_get_pci_vendev() 262 list += (len + 1); in fdtdec_get_pci_vendev() 772 if (!list) in fdtdec_parse_phandle_with_args() 774 list_end = list + size / sizeof(*list); in fdtdec_parse_phandle_with_args() 777 while (list < list_end) { in fdtdec_parse_phandle_with_args() 858 be32_to_cpup(list++); in fdtdec_parse_phandle_with_args() [all …]
|
| A D | hashtable.c | 624 struct env_entry *list[htab->size]; in hexport_r() local 654 list[n++] = ep; in hexport_r() 680 i, list[i], list[i]->key, list[i]->data); in hexport_r() 685 qsort(list, n, sizeof(struct env_entry *), cmpkey); in hexport_r() 719 s = list[i]->key; in hexport_r() 724 s = list[i]->data; in hexport_r()
|
| /lib/mbedtls/external/mbedtls/docs/architecture/ |
| A D | psa-storage-resilience.md | 397 To add a key identifier to the list: 401 3. Write the updated list file. 407 3. If the list is now empty, remove the transaction list file. Otherwise write the updated list to … 414 2. Add _A_ [to the transaction list file](#transaction-list-file-manipulation). 417 5. Remove _A_ [from the transaction list file](#transaction-list-file-manipulation). 433 1. Add _A_ [to the transaction list file](#transaction-list-file-manipulation). 436 4. Remove _A_ [from the transaction list file](#transaction-list-file-manipulation). 448 4. Remove _A_ [from the transaction list file](#transaction-list-file-manipulation). 457 …ransaction list file contains a [fixed header](#transaction-list-header-format) followed by a list… 461 #### Transaction list header format [all …]
|
| /lib/lwip/lwip/contrib/ports/ |
| A D | CMakeCommon.cmake | 69 list(APPEND LWIP_COMPILER_FLAGS_GNU_CLANG 76 list(APPEND LWIP_COMPILER_FLAGS_GNU_CLANG 82 list(APPEND LWIP_COMPILER_FLAGS_GNU_CLANG 89 list(APPEND LWIP_COMPILER_FLAGS_GNU_CLANG 104 list(APPEND LWIP_COMPILER_FLAGS_GNU_CLANG 110 list(APPEND LWIP_COMPILER_FLAGS_GNU_CLANG
|
| /lib/mbedtls/external/mbedtls/library/ |
| A 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))
|
| A 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()
|
| /lib/mbedtls/external/mbedtls/tests/ |
| A D | CMakeLists.txt | 25 --list-for-cmake 37 --list-for-cmake 49 --list-for-cmake 70 list(APPEND ecp_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}) 281 list(APPEND test_suites ${all_generated_data_files}) 284 list(REMOVE_DUPLICATES test_suites) [all …]
|
| /lib/mbedtls/external/mbedtls/programs/hash/ |
| A 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()
|
| /lib/mbedtls/external/mbedtls/programs/aes/ |
| A 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()
|
| /lib/mbedtls/external/mbedtls/programs/fuzz/ |
| A 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)
|
| /lib/mbedtls/external/mbedtls/ |
| A 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).
|
| /lib/lwip/lwip/contrib/apps/LwipMibCompiler/SharpSnmpLib/Mib/ |
| A D | SymbolList.cs | 15 internal SymbolEnumerator(SymbolList list) in SymbolEnumerator() argument 17 if (list == null) in SymbolEnumerator() 22 _list = list; in SymbolEnumerator()
|
| /lib/mbedtls/external/mbedtls/docs/architecture/psa-migration/ |
| A D | syms.sh | 45 list() { function 72 list $ITEM
|
| /lib/mbedtls/external/mbedtls/tests/scripts/ |
| A D | generate_tls13_compat_tests.py | 111 self._cert_sig_algs = list(CERTIFICATES.keys()) 581 default=list(SERVER_CLASSES.keys())[0], 584 default=list(CLIENT_CLASSES.keys())[0], 587 default=list(CIPHER_SUITE_IANA_VALUE.keys())[0], 590 default=list(SIG_ALG_IANA_VALUE.keys())[0], 593 default=list(NAMED_GROUP_IANA_VALUE.keys())[0],
|
| /lib/mbedtls/external/mbedtls/scripts/ |
| A D | generate_ssl_debug_helpers.py | 237 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
|
| A D | generate_driver_wrappers.py | 40 def render(template_path: str, driver_jsoncontext: list) -> str: argument 54 driver_jsoncontext: list) -> None: argument 136 jsondriver_list: str) -> list:
|
| /lib/mbedtls/external/mbedtls/programs/ssl/ |
| A D | CMakeLists.txt | 34 list(APPEND extra_sources 56 list(APPEND executables ssl_pthread_server)
|
| A D | ssl_mail_client.c | 347 const int *list; in main() local 375 list = mbedtls_ssl_list_ciphersuites(); in main() 376 while (*list) { in main() 377 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name(*list)); in main() 378 list++; in main()
|
| /lib/lwip/lwip/ |
| A D | COPYING | 8 this list of conditions and the following disclaimer. 10 this list of conditions and the following disclaimer in the documentation
|
| /lib/mbedtls/external/mbedtls/programs/test/ |
| A D | CMakeLists.txt | 69 list(APPEND extra_sources 85 list(FIND executables_libs ${exe} exe_index)
|