Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 37) sorted by relevance

12

/net-tools-3.5.0/tinydtls-0.8.2/
Dnumeric.h40 static inline int dtls_int_to_uint8(unsigned char *field, uint8_t value) in dtls_int_to_uint8() argument
42 field[0] = value & 0xff; in dtls_int_to_uint8()
46 static inline int dtls_int_to_uint16(unsigned char *field, uint16_t value) in dtls_int_to_uint16() argument
48 field[0] = (value >> 8) & 0xff; in dtls_int_to_uint16()
49 field[1] = value & 0xff; in dtls_int_to_uint16()
53 static inline int dtls_int_to_uint24(unsigned char *field, uint32_t value) in dtls_int_to_uint24() argument
55 field[0] = (value >> 16) & 0xff; in dtls_int_to_uint24()
56 field[1] = (value >> 8) & 0xff; in dtls_int_to_uint24()
57 field[2] = value & 0xff; in dtls_int_to_uint24()
61 static inline int dtls_int_to_uint32(unsigned char *field, uint32_t value) in dtls_int_to_uint32() argument
[all …]
/net-tools-3.5.0/mbedtls-2.4.0/scripts/
Dconfig.pl106 my ($arg, $name, $value, $action);
139 $value = shift if @ARGV;
203 $line .= " $value" if defined $value && $value ne "";
209 $value = $1;
222 $line .= " $value" if defined $value && $value ne "";
233 if ($value ne '') {
234 print $value;
/net-tools-3.5.0/mbedtls-2.4.0/tests/suites/
Dtest_suite_debug.data16 Debug print return value #1
17 mbedtls_debug_print_ret:"MyFile":999:"Test return value":0:"MyFile(0999)\: Test return value() retu…
19 Debug print return value #2
20 mbedtls_debug_print_ret:"MyFile":999:"Test return value":-0x1000:"MyFile(0999)\: Test return value(…
22 Debug print return value #3
23 mbedtls_debug_print_ret:"MyFile":999:"Test return value":-0xFFFF:"MyFile(0999)\: Test return value(…
26 mbedtls_debug_print_buf:"MyFile":999:"Test return value":"":"MyFile(0999)\: dumping 'Test return va…
29 …bedtls_debug_print_buf:"MyFile":999:"Test return value":"00":"MyFile(0999)\: dumping 'Test return
32 …int_buf:"MyFile":999:"Test return value":"000102030405060708090A0B0C0D0E0F":"MyFile(0999)\: dumpin…
35 …nt_buf:"MyFile":999:"Test return value":"000102030405060708090A0B0C0D0E0F00":"MyFile(0999)\: dumpi…
[all …]
Dtest_suite_debug.function79 void mbedtls_debug_print_ret( char *file, int line, char *text, int value,
95 mbedtls_debug_print_ret( &ssl, 0, file, line, text, value);
169 void mbedtls_debug_print_mpi( int radix, char *value, char *file, int line,
185 TEST_ASSERT( mbedtls_mpi_read_string( &val, radix, value ) == 0 );
Dtest_suite_mpi.data1 Arguments with no value
268 Test mbedtls_mpi_add_abs #2 (add to first value)
271 Test mbedtls_mpi_add_abs #3 (add to second value)
708 Test bit set (Change existing value with a 1)
711 Test bit set (Change existing value with a 0)
726 Test bit set (Invalid bit value)
Dmain_test.function21 int verify_int( char *str, int *value )
55 *value = strtol( str, NULL, 16 );
57 *value = strtol( str, NULL, 10 );
/net-tools-3.5.0/mbedtls-2.4.0/tests/scripts/
Dgenerate_code.pl273 foreach my $value (@res)
275 next unless ($value !~ /^\d+$/);
276 if ( $mapping_values{$value} ) {
277 ${ $mapping_values{$value} }{$function_pre_code} = 1;
279 $mapping_values{$value} = { $function_pre_code => 1 };
324 while( my ($key, $value) = each(%case_deps) )
339 while( my ($key, $value) = each(%mapping_values) )
344 *value = ( $key );
350 if ($value->{""}) {
354 for my $ifdef ( keys %$value ) {
/net-tools-3.5.0/libcoap/doc/
DDoxyfile.in11 # TAG = value [value, ...]
13 # TAG += value [value, ...]
25 # The default value is: UTF-8.
33 # The default value is: My Project.
69 # The default value is: NO.
77 # The default value is: NO.
92 # The default value is: English.
99 # The default value is: YES.
108 # The default value is: YES.
126 # The default value is: NO.
[all …]
/net-tools-3.5.0/mbedtls-2.4.0/library/
Doid.c675 unsigned int value; local
688 value = 0;
692 if( ( ( value << 7 ) >> 7 ) != value )
695 value <<= 7;
696 value += oid->p[i] & 0x7F;
701 ret = mbedtls_snprintf( p, n, ".%d", value );
703 value = 0;
Dpk_wrap.c154 items->value = &( ((mbedtls_rsa_context *) ctx)->N ); in rsa_debug()
160 items->value = &( ((mbedtls_rsa_context *) ctx)->E ); in rsa_debug()
270 items->value = &( ((mbedtls_ecp_keypair *) ctx)->Q ); in eckey_debug()
Ddebug.c304 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()
/net-tools-3.5.0/libcoap/src/
Dresource.c246 …if (attr->value.s[0] == '"') { /* if attribute has a quoted value, remove double quotes */
247 unquoted_val.length = attr->value.length - 2;
248 unquoted_val.s = attr->value.s + 1;
250 unquoted_val = attr->value;
332 attr->value.length = val ? vlen : 0;
335 attr->value.s = (unsigned char *)val;
372 coap_free(attr->value.s);
501 if (attr->value.s) {
505 attr->value.s, attr->value.length, *len);
/net-tools-3.5.0/libcoap/examples/
Dtiny.c26 make_pdu( unsigned int value ) { in make_pdu() argument
39 enc = COAP_PSEUDOFP_ENCODE_8_4_DOWN(value,ls); in make_pdu()
Dcoap-client.txt.in38 The block size to be used in GET/PUT/POST requests (value must be a
68 a numeric value reflecting a valid CoAP content format or a string
87 possible. 'type' must be either a numeric value reflecting a valid
Dcoap-rd.txt.in34 The default port is 5683 if not given any other value.
Dcoap-server.txt.in34 The default port is 5683 if not given any other value.
/net-tools-3.5.0/mbedtls-2.4.0/programs/test/
Dudp_proxy.c135 static void exit_usage( const char *name, const char *value ) in exit_usage() argument
137 if( value == NULL ) in exit_usage()
140 mbedtls_printf( " option %s: illegal value: %s\n", name, value ); in exit_usage()
/net-tools-3.5.0/mbedtls-2.4.0/doxygen/
Dmbedtls.doxyfile10 # TAG = value [value, ...]
12 # TAG += value [value, ...]
199 # Doxygen uses this value to replace tabs by spaces in code fragments.
204 # as commands in the documentation. An alias has the form "name=value".
208 # You can put \n's in the value part of an alias to insert newlines.
213 # A mapping has the form "name=value". For example adding
549 # the initial value of a variable or macro consists of for it to appear in
551 # here it will be hidden. Use a value of 0 to hide initializers completely.
580 # popen()) the command <command> <input-file>, where <command> is the value of
637 # or return value. If set to NO (the default) doxygen will only warn about
[all …]
/net-tools-3.5.0/tinydtls-0.8.2/doc/
DDoxyfile.in8 # TAG = value [value, ...]
10 # TAG += value [value, ...]
171 # Doxygen uses this value to replace tabs by spaces in code fragments.
176 # as commands in the documentation. An alias has the form "name=value".
180 # You can put \n's in the value part of an alias to insert newlines.
278 # For small to medium size projects (<1000 input files) the default value is
283 # performance by keeping more symbols in memory. Note that the value works on
464 # the initial value of a variable or define consists of for it to appear in
466 # here it will be hidden. Use a value of 0 to hide initializers completely.
501 # popen()) the command <command> <input-file>, where <command> is the value of
[all …]
/net-tools-3.5.0/libcoap/include/coap/
Doption.h32 unsigned char *value; member
/net-tools-3.5.0/libcoap/
DChangeLog73 value's length is zero.
81 return value has changed to allow distinguishing whether or not
86 resource description. The meaning of the return value has been
/net-tools-3.5.0/
Dthroughput-client.c46 unsigned char value[0]; member
511 memcpy(hdr->value, &seq, sizeof(seq)); in main()
DREADME.docker14 Set the docker internal network name to the value $DOCKER_USER_INTERFACE
/net-tools-3.5.0/python-websocket-server/websocket_server/
Dwebsocket_server.py308 head, value = header.split(':', 1)
309 headers[head.lower().strip()] = value.strip()
/net-tools-3.5.0/libcoap/tests/
Dtest_options.c50 CU_ASSERT(option.value == teststr.s + 1); in t_parse_option2()
66 CU_ASSERT(option.value == teststr.s + 1); in t_parse_option3()
201 CU_ASSERT(option.value == &_data[5]); in t_parse_option13()
228 CU_ASSERT(option.value == &data[4]); in t_parse_option14()

12