Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 74) sorted by relevance

123

/net-tools-3.7.0/mbedtls-2.4.0/scripts/
Dmalloc-init.pl40 my $name;
53 push @bad, "$file:$line:$name" if $name;
54 $name = $1;
59 } elsif( $name && /(?:$inits)\($prefix\Q$name\E\b/ ) {
60 undef $name;
61 } elsif( $name && $. - $line > $limit ) {
62 push @bad, "$file:$line:$name";
63 undef $name;
Dconfig.pl106 my ($arg, $name, $value, $action);
133 $name = shift;
138 $name = shift;
196 if (!$done && $line =~ /^\s*#define\s*$name\b/) {
201 if ($line =~ m!^(?://)?\s*#define\s*$name\b!) {
202 $line = "#define $name";
208 if ($line =~ /^\s*#define\s*$name\s*(.*)\s*\b/) {
221 my $line = "#define $name";
249 die "A #define for the symbol $name was not found in $config_file\n";
/net-tools-3.7.0/libcoap/include/coap/
Dt_list.h84 #define LIST_STRUCT(name) \ argument
85 void *LIST_CONCAT(name, _list); \
86 list_t name
88 #define LIST_STRUCT_INIT(struct_ptr, name) { \ argument
89 (struct_ptr)->name = &((struct_ptr)->LIST_CONCAT(name,_list)); \
90 (struct_ptr)->LIST_CONCAT(name,_list) = NULL; \
Dresource.h55 str name; member
169 const unsigned char *name,
186 const unsigned char *name,
Dcoap.h.in19 /* Define the full name of libcoap. */
22 /* Define the full name and version of libcoap. */
/net-tools-3.7.0/tinydtls-0.8.2/
Dt_list.h86 #define LIST_STRUCT(name) \ argument
87 void *LIST_CONCAT(name, _list); \
88 list_t name
90 #define LIST_STRUCT_INIT(struct_ptr, name) { \ argument
91 (struct_ptr)->name = &((struct_ptr)->LIST_CONCAT(name,_list)); \
92 (struct_ptr)->LIST_CONCAT(name,_list) = NULL; \
Ddebug.h99 void dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, …
101 void dtls_dsrv_log_addr(log_t level, const char *name, const session_t *addr);
123 dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int e… in dtls_dsrv_hexdump_log() argument
127 dtls_dsrv_log_addr(log_t level, const char *name, const struct __session_t *addr) in dtls_dsrv_log_addr() argument
140 #define dtls_debug_hexdump(name, buf, length) dtls_dsrv_hexdump_log(DTLS_LOG_DEBUG, name, buf, leng… argument
141 #define dtls_debug_dump(name, buf, length) dtls_dsrv_hexdump_log(DTLS_LOG_DEBUG, name, buf, length,… argument
Ddebug.c277 void dtls_dsrv_log_addr(log_t level, const char *name, const session_t *addr) in dtls_dsrv_log_addr() argument
285 dsrv_log(level, "%s: %s\n", name, addrbuf); in dtls_dsrv_log_addr()
290 dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int e… in dtls_dsrv_hexdump_log() argument
307 fprintf(log_fd, "%s: (%zu bytes):\n", name, length); in dtls_dsrv_hexdump_log()
324 fprintf(log_fd, "%s: (%zu bytes): ", name, length); in dtls_dsrv_hexdump_log()
334 dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int e… in dtls_dsrv_hexdump_log() argument
348 PRINTF("%s: (%zu bytes):\n", name, length); in dtls_dsrv_hexdump_log()
365 PRINTF("%s: (%zu bytes): ", name, length); in dtls_dsrv_hexdump_log()
/net-tools-3.7.0/mbedtls-2.4.0/tests/scripts/
Dgen_gcm_decrypt.pl14 my $name = shift;
20 ($val) = ($line =~ /\[$name\s\=\s(\w+)\]/);
29 my $name = shift;
39 ($val) = ($line =~ /^$name = (\w+)/);
46 my $name = shift;
56 ($val) = ($line =~ /^$name = (\w+)/) if ($line =~ /=/);
Dgen_gcm_encrypt.pl14 my $name = shift;
20 ($val) = ($line =~ /\[$name\s\=\s(\w+)\]/);
29 my $name = shift;
39 ($val) = ($line =~ /^$name = (\w+)/);
Dgen_ctr_drbg.pl15 my $name = shift;
19 ($val) = ($line =~ /\[$name\s\=\s(\w+)\]/);
26 my $name = shift;
36 ($val) = ($line =~ /^$name = (\w+)/);
/net-tools-3.7.0/mbedtls-2.4.0/programs/test/
Dssl_cert_test.c136 char name[512]; in main() local
144 mbedtls_snprintf(name, 512, "ssl/test-ca/%s", client_certificates[i]); in main()
146 mbedtls_printf( " . Loading the client certificate %s...", name ); in main()
149 ret = mbedtls_x509_crt_parse_file( &clicert, name ); in main()
188 mbedtls_snprintf(name, 512, "ssl/test-ca/%s", client_private_keys[i]); in main()
190 mbedtls_printf( " . Loading the client private key %s...", name ); in main()
193 ret = mbedtls_pk_parse_keyfile( &pk, name, NULL ); in main()
/net-tools-3.7.0/mbedtls-2.4.0/library/
Dx509_create.c37 const char *name; member
77 static const char *x509_at_oid_from_name( const char *name, size_t name_len ) in x509_at_oid_from_name() argument
81 for( cur = x509_attrs; cur->name != NULL; cur++ ) in x509_at_oid_from_name()
83 strncmp( cur->name, name, name_len ) == 0 ) in x509_at_oid_from_name()
89 int mbedtls_x509_string_to_names( mbedtls_asn1_named_data **head, const char *name ) in mbedtls_x509_string_to_names() argument
92 const char *s = name, *c = s; in mbedtls_x509_string_to_names()
197 const unsigned char *name, size_t name_len ) in x509_write_name() argument
208 (const char *) name, in x509_write_name()
214 (const char *) name, in x509_write_name()
Dx509.c712 const mbedtls_x509_name *name; in mbedtls_x509_dn_gets() local
718 name = dn; in mbedtls_x509_dn_gets()
722 while( name != NULL ) in mbedtls_x509_dn_gets()
724 if( !name->oid.p ) in mbedtls_x509_dn_gets()
726 name = name->next; in mbedtls_x509_dn_gets()
730 if( name != dn ) in mbedtls_x509_dn_gets()
736 ret = mbedtls_oid_get_attr_short_name( &name->oid, &short_name ); in mbedtls_x509_dn_gets()
744 for( i = 0; i < name->val.len; i++ ) in mbedtls_x509_dn_gets()
749 c = name->val.p[i]; in mbedtls_x509_dn_gets()
758 merge = name->next_merged; in mbedtls_x509_dn_gets()
[all …]
Ddebug.c284 char name[16]; in debug_print_pk() local
300 mbedtls_snprintf( name, sizeof( name ), "%s%s", text, items[i].name ); in debug_print_pk()
301 name[sizeof( name ) - 1] = '\0'; in debug_print_pk()
304 mbedtls_debug_print_mpi( ssl, level, file, line, name, items[i].value ); in debug_print_pk()
308 mbedtls_debug_print_ecp( ssl, level, file, line, name, items[i].value ); in debug_print_pk()
Dssl_ticket.c75 if( ( ret = ctx->f_rng( ctx->p_rng, key->name, sizeof( key->name ) ) ) != 0 ) in ssl_ticket_gen_key()
324 memcpy( key_name, key->name, 4 ); in mbedtls_ssl_ticket_write()
369 const unsigned char name[4] ) in ssl_ticket_select_key()
374 if( memcmp( name, ctx->keys[i].name, 4 ) == 0 ) in ssl_ticket_select_key()
Dx509_crt.c1267 #define CERT_TYPE(type,name) \ argument
1269 PRINT_ITEM( name );
1294 #define KEY_USAGE(code,name) \ argument
1296 PRINT_ITEM( name );
1751 static int x509_check_wildcard( const char *cn, mbedtls_x509_buf *name ) in x509_check_wildcard() argument
1756 if( name->len < 3 || name->p[0] != '*' || name->p[1] != '.' ) in x509_check_wildcard()
1771 if( cn_len - cn_idx == name->len - 1 && in x509_check_wildcard()
1772 x509_memcasecmp( name->p + 1, cn + cn_idx, name->len - 1 ) == 0 ) in x509_check_wildcard()
2190 mbedtls_x509_name *name; in mbedtls_x509_crt_verify_with_profile() local
2201 name = &crt->subject; in mbedtls_x509_crt_verify_with_profile()
[all …]
/net-tools-3.7.0/
Dzeth-tunnel.conf40 ip tunnel add name ${TUNNEL_V4V4} mode ipip local ${IPV4_ADDR_LOCAL} \
43 ip tunnel add name ${TUNNEL_V6V4} mode sit local ${IPV4_ADDR_LOCAL} \
46 ip tunnel add name ${TUNNEL_V4V6} mode ipip6 local ${IPV6_ADDR_LOCAL} \
51 ip link add name ${TUNNEL_V6V6} type ip6tnl local ${IPV6_ADDR_LOCAL} \
53 ip tunnel add name ${TUNNEL_V6V6} mode ip6ip6 local ${IPV6_ADDR_LOCAL} \
DREADME.docker14 Set the docker internal network name to the value $DOCKER_USER_INTERFACE
17 name will be br-XXXXXXXXXXXX. Check that the IPv4 and IPv6 addresses
22 docker run --hostname=zephyr --name=net-tools \
30 docker run --hostname=zephyr --name=net-tools \
Davahi-daemon.conf6 host-name=zephyr
7 domain-name=local
Dzeth-vlan.conf38 ip link add link ${INTERFACE} name ${VLAN_NAME_PREFIX}.${VLAN_1_ID} \
40 ip link add link ${INTERFACE} name ${VLAN_NAME_PREFIX}.${VLAN_2_ID} \
/net-tools-3.7.0/mbedtls-2.4.0/tests/suites/
Dtest_suite_x509parse.data3 …n \: 3\nserial number \: 01\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
7 …n \: 3\nserial number \: 02\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
11 …n \: 3\nserial number \: 00\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
15 …n \: 3\nserial number \: 09\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
19 …n \: 3\nserial number \: 05\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
23 …n \: 3\nserial number \: 06\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
27 …n \: 3\nserial number \: 07\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
31 …n \: 3\nserial number \: 08\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
35 …n \: 3\nserial number \: 09\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
39 …n \: 3\nserial number \: 0A\nissuer name \: C=NL, O=PolarSSL, CN=PolarSSL Test CA\ns…
[all …]
/net-tools-3.7.0/libcoap/src/
Dresource.c315 const unsigned char *name, size_t nlen, argument
320 if (!resource || !name)
331 attr->name.length = nlen;
334 attr->name.s = (unsigned char *)name;
350 const unsigned char *name, size_t nlen) { argument
353 if (!resource || !name)
357 if (attr->name.length == nlen &&
358 memcmp(attr->name.s, name, nlen) == 0)
370 coap_free(attr->name.s);
499 attr->name.s, attr->name.length, *len);
/net-tools-3.7.0/mbedtls-2.4.0/
DMakefile77 find . \( -name \*.gcno -o -name \*.gcda -o -name \*.info \) -exec rm {} +
/net-tools-3.7.0/mbedtls-2.4.0/programs/pkey/
Dgen_key.c216 mbedtls_printf( " %s (default)\n", curve_info->name ); in main()
217 while( ( ++curve_info )->name != NULL ) in main()
218 mbedtls_printf( " %s\n", curve_info->name ); in main()
378 mbedtls_ecp_curve_info_from_grp_id( ecp->grp.id )->name ); in main()

123