Home
last modified time | relevance | path

Searched refs:init (Results 1 – 25 of 48) sorted by relevance

12

/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_cmac.data8 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 Dtest_suite_psa_crypto_init.data4 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 Dtest_suite_net.data1 Context init-free-free
4 Context init-free-init-free
A Dtest_suite_psa_crypto_se_driver_hal_mocks.data1 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 Dtest_suite_entropy.data1 Entropy init-free-free
4 Entropy init-free-init-free
A Dtest_suite_block_cipher.function102 /* Intentionally no PSA init here! (Will be done later.) */
106 /* Before PSA crypto init */
119 /* After PSA Crypto init */
A Dtest_suite_md.function170 /* 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 Dtest_suite_nist_kw.data7 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 Dtest_suite_chacha20.function54 /* Don't free/init the context nor set the key again,
A Dtest_suite_poly1305.function46 /* Don't free/init the context, in order to test that starts() does the
/lib/lwip/lwip/src/netif/
A Dzepif.c89 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 Dthreading_helpers.c139 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 Dsnmpv3.c107 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 Dnetifapi.c74 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 Defi_uclass.c297 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 Defi_capsule_key.S10 .section .rodata.capsule_key.init,"a"
A Defi_var_seed.S10 .section .rodata.efi_seed.init,"a"
/lib/zlib/
A Ddeflate.c1430 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 DFilelists.cmake39 ${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 Dnetif.h431 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 Dnetifapi.h69 void *state, netif_init_fn init, netif_input_fn input);
/lib/lwip/lwip/src/core/
A Dnetif.c250 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 Dapi_msg.h248 netif_init_fn init; member
/lib/lwip/lwip/contrib/examples/example_app/
A Dlwipcfg.h.ci72 /* define this to your custom application-init function */
A Dlwipcfg.h.example76 /* define this to your custom application-init function */

Completed in 35 milliseconds

12