Home
last modified time | relevance | path

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

12

/net-tools-3.7.0/tinydtls-0.8.2/
Dutlist.h79 #define _SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt); } argument
80 #define _NEXT(elt,list) ((char*)((list)->next)) argument
81 #define _NEXTASGN(elt,list,to) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to); } argument
82 #define _PREV(elt,list) ((char*)((list)->prev)) argument
83 #define _PREVASGN(elt,list,to) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to); } argument
84 #define _RS(list) { char **_alias = (char**)&(list); *_alias=_tmp; } argument
87 #define _SV(elt,list) argument
88 #define _NEXT(elt,list) ((elt)->next) argument
89 #define _NEXTASGN(elt,list,to) ((elt)->next)=(to) argument
90 #define _PREV(elt,list) ((elt)->prev) argument
[all …]
Dt_list.h80 struct list { struct
81 struct list *next; argument
96 list_head(list_t list) { in list_head() argument
97 return *list; in list_head()
101 list_remove(list_t list, void *item) { in list_remove() argument
102 LL_DELETE(*(struct list **)list, (struct list *)item); in list_remove()
106 list_add(list_t list, void *item) { in list_add() argument
107 list_remove(list, item); in list_add()
108 LL_APPEND(*(struct list **)list, (struct list *)item); in list_add()
112 list_push(list_t list, void *item) { in list_push() argument
[all …]
/net-tools-3.7.0/libcoap/include/coap/
Dutlist.h84 #define _SV(elt,list) _tmp = (char*)(list); {char **_alias = (char**)&(list); *_alias = (elt); } argument
85 #define _NEXT(elt,list,next) ((char*)((list)->next)) argument
86 #define _NEXTASGN(elt,list,to,next) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to);… argument
88 #define _PREVASGN(elt,list,to,prev) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to);… argument
89 #define _RS(list) { char **_alias = (char**)&(list); *_alias=_tmp; } argument
92 #define _SV(elt,list) argument
93 #define _NEXT(elt,list,next) ((elt)->next) argument
94 #define _NEXTASGN(elt,list,to,next) ((elt)->next)=(to) argument
96 #define _PREVASGN(elt,list,to,prev) ((elt)->prev)=(to) argument
97 #define _RS(list) argument
[all …]
Dt_list.h78 struct list { struct
79 struct list *next; argument
101 LL_DELETE(*(struct list **)the_list, (struct list *)item); in list_remove()
107 LL_APPEND(*(struct list **)the_list, (struct list *)item); in list_add()
112 LL_PREPEND(*(struct list **)the_list, (struct list *)item); in list_push()
117 struct list *l; in list_pop()
118 l = (struct list*)*the_list; in list_pop()
130 ((struct list *)newitem)->next = ((struct list *)previtem)->next; in list_insert()
131 ((struct list *)previtem)->next = (struct list*)newitem; in list_insert()
138 return item == NULL? NULL: ((struct list *)item)->next; in list_item_next()
/net-tools-3.7.0/mbedtls-2.4.0/tests/scripts/
Dcheck-names.sh21 tests/scripts/list-macros.sh
22 tests/scripts/list-enum-consts.pl
23 tests/scripts/list-identifiers.sh
24 tests/scripts/list-symbols.sh
/net-tools-3.7.0/mbedtls-2.4.0/programs/hash/
Dgeneric_sum.c180 const int *list; in main() local
186 list = mbedtls_md_list(); in main()
187 while( *list ) in main()
189 md_info = mbedtls_md_info_from_type( *list ); in main()
191 list++; in main()
/net-tools-3.7.0/mbedtls-2.4.0/library/
Dasn1parse.c376 mbedtls_asn1_named_data *mbedtls_asn1_find_named_data( mbedtls_asn1_named_data *list, in mbedtls_asn1_find_named_data() argument
379 while( list != NULL ) in mbedtls_asn1_find_named_data()
381 if( list->oid.len == len && in mbedtls_asn1_find_named_data()
382 memcmp( list->oid.p, oid, len ) == 0 ) in mbedtls_asn1_find_named_data()
387 list = list->next; in mbedtls_asn1_find_named_data()
390 return( list ); in mbedtls_asn1_find_named_data()
/net-tools-3.7.0/mbedtls-2.4.0/programs/aes/
Dcrypt_and_hash.c110 const int *list; in main() local
115 list = mbedtls_cipher_list(); in main()
116 while( *list ) in main()
118 cipher_info = mbedtls_cipher_info_from_type( *list ); in main()
120 list++; in main()
124 list = mbedtls_md_list(); in main()
125 while( *list ) in main()
127 md_info = mbedtls_md_info_from_type( *list ); in main()
129 list++; in main()
/net-tools-3.7.0/libcoap/
DLICENSE.BSD9 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in
DCONTRIBUTE36 The main discussion and development platform for libcoap is the mailing list
39 want to discuss some patches, please write it to the mailing list. Please
42 You can subscribe to the list here:
46 The archive of the list can be found on:
81 list (and/or push your changes into your public Git tree). It's a good idea to
82 post your patch series on the mailing list so other contributors will see your
98 useful information's for the mailing list. After finish this you now can send
159 Please discuss needed changes on the mailing list.
206 write to the mailing list explained in section 2.
DChangeLog9 * include/coap/resource.h: Replaced custom list structures by
29 * coap_list.[hc]: Moved old list implementation into
31 from utlist.h. As a result, the list must be sorted
/net-tools-3.7.0/mbedtls-2.4.0/programs/ssl/
Dssl_mail_client.c368 const int *list; in main() local
387 list = mbedtls_ssl_list_ciphersuites(); in main()
388 while( *list ) in main()
390 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main()
391 list++; in main()
Dssl_client2.c429 const int *list; in main() local
456 list = mbedtls_ssl_list_ciphersuites(); in main()
457 while( *list ) in main()
459 mbedtls_printf(" %-42s", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main()
460 list++; in main()
461 if( !*list ) in main()
463 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main()
464 list++; in main()
Dssl_server2.c837 const int *list; in main() local
888 list = mbedtls_ssl_list_ciphersuites(); in main()
889 while( *list ) in main()
891 mbedtls_printf(" %-42s", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main()
892 list++; in main()
893 if( !*list ) in main()
895 mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name( *list ) ); in main()
896 list++; in main()
/net-tools-3.7.0/mbedtls-2.4.0/include/mbedtls/
Dasn1write.h230 mbedtls_asn1_named_data *mbedtls_asn1_store_named_data( mbedtls_asn1_named_data **list,
Dasn1.h320 mbedtls_asn1_named_data *mbedtls_asn1_find_named_data( mbedtls_asn1_named_data *list,
/net-tools-3.7.0/libcoap/examples/
Dcoap-client.txt.in85 Accepted media types as comma-separated list of symbolic or numeric
86 values, there are multiple arguments as comma separated list
160 Please report bugs on the mailing list for libcoap:
Dcoap-server.txt.in83 Please report bugs on the mailing list for libcoap:
Dcoap-rd.txt.in83 Please report bugs on the mailing list for libcoap:
/net-tools-3.7.0/tinydtls-0.8.2/doc/
DDoxyfile.in21 # http://www.gnu.org/software/libiconv for the list of possible encodings.
81 # in this list, if found as the leading text of the brief description, will be
82 # stripped from the text and the result after processing the whole list, is
105 # path before files name in the file list and in the header files. If set
113 # the path. The tag can be used to show relative paths in the file list.
186 # For instance, some of the names that are used will be different. The list
384 # will put a list of the files that are included by a file in the documentation
390 # will list include files with double quotes in the documentation
424 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
426 # NO (the default), the class list will be sorted only by class name,
[all …]
/net-tools-3.7.0/mbedtls-2.4.0/doxygen/
Dmbedtls.doxyfile23 # http://www.gnu.org/software/libiconv for the list of possible encodings.
97 # in this list, if found as the leading text of the brief description, will be
98 # stripped from the text and the result after processing the whole list, is
131 # path before files name in the file list and in the header files. If set
139 # the path. The tag can be used to show relative paths in the file list.
221 # For instance, some of the names that are used will be different. The list
453 # will put a list of the files that are included by a file in the documentation
459 # will list include files with double quotes in the documentation
499 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
501 # NO (the default), the class list will be sorted only by class name,
[all …]
/net-tools-3.7.0/libcoap/doc/
DDoxyfile.in24 # for the list of possible encodings.
113 # used to form the text in various listings. Each string in this list, if found
115 # and the result, after processing the whole list, is used as the annotated
139 # before files name in the file list and in the header files. If set to NO the
147 # part of the path. The tag can be used to show relative paths in the file list.
161 # specify the list of include paths that are normally passed to the compiler
241 # instance, some of the names that are used will be different. The list of all
510 # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
523 # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
545 # this will also influence the order of the classes in the class list.
[all …]
/net-tools-3.7.0/mbedtls-2.4.0/programs/
DMakefile81 .PHONY: all clean list
287 list: target
/net-tools-3.7.0/python-websocket-server/
DREADME.md67 | clients | A list of `client` |
/net-tools-3.7.0/mbedtls-2.4.0/tests/suites/
Dtest_suite_cipher.padding.data1 Cipher list

12