| /lib/mbedtls/external/mbedtls/tests/suites/ |
| A D | test_suite_cmac.data | 8 CMAC init #1 AES-128: OK 12 CMAC init #2 AES-192: OK 16 CMAC init #3 AES-256: OK 20 CMAC init #4 3DES: OK 24 CMAC init #5 AES-224: bad key size 28 CMAC init #6 AES-0: bad key size 32 CMAC init Camellia-128: wrong cipher 36 CMAC init Camellia-192: wrong cipher 44 CMAC init #8 ARIA-128: wrong cipher 48 CMAC init #8 ARIA-192: wrong cipher [all …]
|
| A D | test_suite_psa_crypto_init.data | 4 PSA init/deinit 7 PSA deinit without init 13 PSA threaded init checks 16 No random without init 19 No key slot access without init
|
| A D | test_suite_net.data | 1 Context init-free-free 4 Context init-free-init-free
|
| A D | test_suite_psa_crypto_se_driver_hal_mocks.data | 1 SE init mock test: success 4 SE init mock test: failure 7 SE init mock test: invalid location (0) 10 SE init mock test: location not supported (INT_MAX)
|
| A D | test_suite_entropy.data | 1 Entropy init-free-free 4 Entropy init-free-init-free
|
| A D | test_suite_block_cipher.function | 102 /* Intentionally no PSA init here! (Will be done later.) */ 106 /* Before PSA crypto init */ 119 /* After PSA Crypto init */
|
| A D | test_suite_md.function | 170 /* Note: PSA Crypto init not needed for info functions */ 432 /* Intentionally no PSA init here! (Will be done later.) */ 439 /* Before PSA crypto init */ 455 /* After PSA Crypto init */
|
| A D | test_suite_nist_kw.data | 7 NIST KW init #1 wrapping AES-128: OK 11 NIST KW init #2 unwrapping AES-128: OK 15 NIST KW init #3 CAMELLIA-256: unsupported cipher 19 NIST KW init #4 AES-224: bad key size 23 NIST KW init #5 3DES: bad cipher
|
| A D | test_suite_chacha20.function | 54 /* Don't free/init the context nor set the key again,
|
| A D | test_suite_poly1305.function | 46 /* Don't free/init the context, in order to test that starts() does the
|
| /lib/lwip/lwip/src/netif/ |
| A D | zepif.c | 89 struct zepif_init init; member 209 err = udp_sendto(state->pcb, q, state->init.zep_dst_ip_addr, state->init.zep_dst_udp_port); in zepif_linkoutput() 237 if (state->init.zep_src_udp_port == 0) { in zepif_init() 238 state->init.zep_src_udp_port = ZEPIF_DEFAULT_UDP_PORT; in zepif_init() 240 if (state->init.zep_dst_udp_port == 0) { in zepif_init() 241 state->init.zep_dst_udp_port = ZEPIF_DEFAULT_UDP_PORT; in zepif_init() 244 if (state->init.zep_dst_ip_addr == NULL) { in zepif_init() 246 state->init.zep_dst_ip_addr = IP_ADDR_BROADCAST; in zepif_init() 257 err = udp_bind(state->pcb, state->init.zep_src_ip_addr, state->init.zep_src_udp_port); in zepif_init() 261 if (state->init.zep_netif != NULL) { in zepif_init() [all …]
|
| /lib/mbedtls/external/mbedtls/tests/src/ |
| A D | threading_helpers.c | 139 void (*init)(mbedtls_threading_mutex_t *); member 203 mutex_functions.init(mutex); in mbedtls_test_wrap_mutex_init() 306 mutex_functions.init = mbedtls_mutex_init; in mbedtls_test_mutex_usage_init() 315 mutex_functions.init(&mbedtls_test_mutex_mutex); in mbedtls_test_mutex_usage_init() 344 mbedtls_mutex_init = mutex_functions.init; in mbedtls_test_mutex_usage_end()
|
| /lib/lwip/lwip/src/apps/snmp/ |
| A D | snmpv3.c | 107 static u8_t init; in snmpv3_build_priv_param() local 111 if (init == 0) { in snmpv3_build_priv_param() 112 init = 1; in snmpv3_build_priv_param()
|
| /lib/lwip/lwip/src/api/ |
| A D | netifapi.c | 74 msg->msg.add.init, in netifapi_do_netif_add() 226 void *state, netif_init_fn init, netif_input_fn input) in netifapi_netif_add() argument 251 NETIFAPI_VAR_REF(msg).msg.add.init = init; in netifapi_netif_add()
|
| /lib/efi_driver/ |
| A D | efi_uclass.c | 297 if (ops->init) { in efi_add_driver() 298 ret = ops->init(bp); in efi_add_driver() 365 .init = efi_uc_init,
|
| /lib/efi_loader/ |
| A D | efi_capsule_key.S | 10 .section .rodata.capsule_key.init,"a"
|
| A D | efi_var_seed.S | 10 .section .rodata.efi_seed.init,"a"
|
| /lib/zlib/ |
| A D | deflate.c | 1430 ulg init; local 1436 init = s->window_size - curr; 1437 if (init > WIN_INIT) 1438 init = WIN_INIT; 1439 zmemzero(s->window + curr, (unsigned)init); 1440 s->high_water = curr + init; 1447 init = (ulg)curr + WIN_INIT - s->high_water; 1448 if (init > s->window_size - s->high_water) 1449 init = s->window_size - s->high_water; 1450 zmemzero(s->window + s->high_water, (unsigned)init); [all …]
|
| /lib/lwip/lwip/src/ |
| A D | Filelists.cmake | 39 ${LWIP_DIR}/src/core/init.c 255 # Generate lwip/init.h (version info) 256 configure_file(${LWIP_DIR}/src/include/lwip/init.h.cmake.in ${LWIP_DIR}/src/include/lwip/init.h)
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | netif.h | 431 struct netif *netif_add_noaddr(struct netif *netif, void *state, netif_init_fn init, netif_input_fn… 436 void *state, netif_init_fn init, netif_input_fn input); 440 struct netif *netif_add(struct netif *netif, void *state, netif_init_fn init, netif_input_fn input);
|
| A D | netifapi.h | 69 void *state, netif_init_fn init, netif_input_fn input);
|
| /lib/lwip/lwip/src/core/ |
| A D | netif.c | 250 netif_add_noaddr(struct netif *netif, void *state, netif_init_fn init, netif_input_fn input) in netif_add_noaddr() argument 256 state, init, input); in netif_add_noaddr() 291 void *state, netif_init_fn init, netif_input_fn input) in netif_add() argument 307 LWIP_ERROR("netif_add: No init function given", init != NULL, return NULL); in netif_add() 388 if (init(netif) != ERR_OK) { in netif_add()
|
| /lib/lwip/lwip/src/include/lwip/priv/ |
| A D | api_msg.h | 248 netif_init_fn init; member
|
| /lib/lwip/lwip/contrib/examples/example_app/ |
| A D | lwipcfg.h.ci | 72 /* define this to your custom application-init function */
|
| A D | lwipcfg.h.example | 76 /* define this to your custom application-init function */
|