Home
last modified time | relevance | path

Searched refs:o (Results 1 – 25 of 35) sorted by relevance

12

/net-tools-3.4.0/mbedtls-2.4.0/library/
DMakefile47 OBJS_CRYPTO= aes.o aesni.o arc4.o \
48 asn1parse.o asn1write.o base64.o \
49 bignum.o blowfish.o camellia.o \
50 ccm.o cipher.o cipher_wrap.o \
51 cmac.o ctr_drbg.o des.o \
52 dhm.o ecdh.o ecdsa.o \
53 ecjpake.o ecp.o \
54 ecp_curves.o entropy.o entropy_poll.o \
55 error.o gcm.o havege.o \
56 hmac_drbg.o md.o md2.o \
[all …]
D.gitignore1 *.o
/net-tools-3.4.0/libcoap/examples/contiki/
DMakefile.common11 COAPOBJS = net.o debug.o option.o resource.o hashkey.o pdu.o encode.o subscribe.o coap_io.o block.o
18 OBJS = server.o ${CONTIKIOBJS} ${COAPOBJS}
28 symbols.o: symbols.c symbols.h
34 rm -rf *~ *.o contiki
/net-tools-3.4.0/
DMakefile3 tunslip6: tunslip6.o
6 echo-client: echo-client.o
9 echo-server: echo-server.o
12 throughput-client: throughput-client.o
36 dtls-client.o: dtls-client.c
39 dtls-client: dtls-client.o $(MBEDTLS_LIB)
40 $(CC) -o $@ $(LIBS) dtls-client.o $(MBEDTLS_LIB)
42 dtls-server.o: dtls-server.c
45 dtls-server: dtls-server.o $(MBEDTLS_LIB)
46 $(CC) -o $@ $(LIBS) dtls-server.o $(MBEDTLS_LIB)
[all …]
Dnet-capture.py57 for o, a in opts:
58 if o in ("-q", "--quiet"):
60 elif o in ("-h", "--help"):
63 elif o in ("-i", "--interface"):
65 elif o in ("-p", "--port"):
67 elif o in ("-t", "--type"):
69 elif o in ("-w", "--write"):
72 assert False, "unhandled option " + o
D.gitignore1 *.o
15 coap-client.o
47 libcoap/src/*.o
59 libcoap/examples/*.o
76 libcoap/tests/*.o
82 tinydtls-0.8.2/ecc/*.o
87 tinydtls-0.8.2/*.o
90 tinydtls-0.8.2/aes/*.o
94 tinydtls-0.8.2/sha2/*.o
/net-tools-3.4.0/tinydtls-0.8.2/ecc/
DMakefile.in46 ECC_OBJECTS:= $(patsubst %.c, %.o, $(ECC_SOURCES)) ecc_test.o
55 .SUFFIXES: .c .o
59 ecc_test.o: ecc.c ecc.h
62 testecc: ecc_test.o test_helper.o
64 testfield: ecc_test.o test_helper.o
71 @rm -f $(PROGRAMS) main.o $(LIB) $(OBJECTS)
/net-tools-3.4.0/libcoap/examples/
Dclient.c159 coap_option *o = (coap_option *)(opt->data); in coap_new_request() local
161 COAP_OPTION_KEY(*o), in coap_new_request()
162 COAP_OPTION_LENGTH(*o), in coap_new_request()
163 COAP_OPTION_DATA(*o)); in coap_new_request()
202 coap_option *o = (coap_option *)(option->data); in clear_obs() local
203 if (COAP_OPTION_KEY(*o) == COAP_OPTION_URI_HOST) { in clear_obs()
205 COAP_OPTION_KEY(*o), in clear_obs()
206 COAP_OPTION_LENGTH(*o), in clear_obs()
207 COAP_OPTION_DATA(*o))) { in clear_obs()
223 coap_option *o = (coap_option *)(option->data); in clear_obs() local
[all …]
DREADME.etsi_iot7 [o] partial support
Dcoap-client.txt.in19 [*-o* file] [*-P* addr[:port]] [*-p* port] [*-s* duration]
56 *-o* file::
/net-tools-3.4.0/tinydtls-0.8.2/aes/
DMakefile.in39 OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
49 .SUFFIXES: .c .o
58 @rm -f $(PROGRAMS) main.o $(LIB) $(OBJECTS)
/net-tools-3.4.0/tinydtls-0.8.2/tests/
DMakefile.in41 OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
54 .SUFFIXES: .c .o
63 @rm -f $(PROGRAMS) main.o $(LIB) $(OBJECTS)
/net-tools-3.4.0/tinydtls-0.8.2/sha2/
DMakefile.in39 OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
49 .SUFFIXES: .c .o
58 @rm -f $(PROGRAMS) main.o $(LIB) $(OBJECTS)
/net-tools-3.4.0/libcoap/
D.gitignore33 src/*.o
45 examples/*.o
62 tests/*.o
DLICENSE.BSD8 o Redistributions of source code must retain the above copyright
11 o Redistributions in binary form must reproduce the above copyright
/net-tools-3.4.0/tinydtls-0.8.2/
DMakefile.in49 SUB_OBJECTS:=aes/rijndael.o @OPT_OBJS@
50 OBJECTS:= $(patsubst %.c, %.o, $(SOURCES)) $(SUB_OBJECTS)
70 .SUFFIXES: .c .o
92 @rm -f $(PROGRAM) main.o $(LIB) $(OBJECTS)
Dconfigure.in63 OPT_OBJS="${OPT_OBJS} ecc/ecc.o"
73 OPT_OBJS="${OPT_OBJS} sha2/sha2.o"
/net-tools-3.4.0/mbedtls-2.4.0/
DCMakeLists.txt147 … COMMAND lcov --capture --initial --directory library/CMakeFiles/mbedtls.dir -o files.info
148 COMMAND lcov --capture --directory library/CMakeFiles/mbedtls.dir -o tests.info
149 COMMAND lcov --add-tracefile files.info --add-tracefile tests.info -o all.info
150 COMMAND lcov --remove all.info -o final.info '*.h'
151 COMMAND gendesc tests/Descriptions.txt -o descriptions
152 …cription-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
/net-tools-3.4.0/libcoap/examples/lwip/
D.gitignore6 *.o
/net-tools-3.4.0/mbedtls-2.4.0/tests/data_files/
Dserver1.req.cert_type16 kPBVna0dze/o
Dkeyfile.aes1288 Iv8p+n/o+fCHzGvtj+LWYeUc4d0OTIjnF6QPTtPOexX28z0gXRODT/indgifNXv3
Drsa4096_prv.pem45 7o+zxDwtWrk7IY7hORLLh5EgJh9ktX85zQKCAQAZILSp21azS3KzKdAvq5u2KVAV
Ddh.1000.pem30 giNuQowecD0hu7m5j/n9nFMI5OhaBMpfj3NVrOFBIMdD+o+ZAn0jhDwNVYy5fanV
/net-tools-3.4.0/mbedtls-2.4.0/tests/
Dssl-opt.sh204 mv $SRV_OUT o-srv-${TESTS}.log
205 mv $CLI_OUT o-cli-${TESTS}.log
207 mv $PXY_OUT o-pxy-${TESTS}.log
213 cat o-srv-${TESTS}.log
216 cat o-cli-${TESTS}.log
220 cat o-pxy-${TESTS}.log
549 mv $SRV_OUT o-srv-${TESTS}.log
550 mv $CLI_OUT o-cli-${TESTS}.log
/net-tools-3.4.0/libcoap/src/
Doption.c45 #define ADVANCE_OPT(o,e,step) if ((e) < step) { \ in coap_opt_parse() argument
50 (o) = ((unsigned char *)(o)) + step; \ in coap_opt_parse()

12