Searched refs:tv (Results 1 – 7 of 7) sorted by relevance
/openssl-master/providers/implementations/rands/seeding/ |
A D | rand_unix.c | 822 struct timeval tv; in get_time_stamp() local 824 if (gettimeofday(&tv, NULL) == 0) in get_time_stamp() 825 return TWO32TO64(tv.tv_sec, tv.tv_usec); in get_time_stamp() 873 struct timeval tv; in get_timer_bits() local 875 if (gettimeofday(&tv, NULL) == 0) in get_timer_bits() 876 return TWO32TO64(tv.tv_sec, tv.tv_usec); in get_timer_bits()
|
/openssl-master/crypto/bio/ |
A D | bio_sock.c | 394 struct timeval tv; in BIO_socket_wait() local 408 tv.tv_usec = 0; in BIO_socket_wait() 409 tv.tv_sec = (long)(max_time - now); /* might overflow */ in BIO_socket_wait() 411 for_read ? NULL : &confds, NULL, &tv); in BIO_socket_wait()
|
A D | bss_dgram.c | 592 struct timeval *tv = (struct timeval *)ptr; in dgram_ctrl() local 593 int timeout = tv->tv_sec * 1000 + tv->tv_usec / 1000; in dgram_ctrl() 618 struct timeval *tv = (struct timeval *)ptr; in dgram_ctrl() local 626 tv->tv_sec = timeout / 1000; in dgram_ctrl() 627 tv->tv_usec = (timeout % 1000) * 1000; in dgram_ctrl() 628 ret = sizeof(*tv); in dgram_ctrl() 649 struct timeval *tv = (struct timeval *)ptr; in dgram_ctrl() local 650 int timeout = tv->tv_sec * 1000 + tv->tv_usec / 1000; in dgram_ctrl() 683 tv->tv_sec = timeout / 1000; in dgram_ctrl() 684 tv->tv_usec = (timeout % 1000) * 1000; in dgram_ctrl() [all …]
|
/openssl-master/crypto/conf/ |
A D | conf_def.c | 219 CONF_VALUE *v = NULL, *tv; in def_load_bio() local 536 if ((tv = _CONF_get_section(conf, psection)) in def_load_bio() 538 tv = _CONF_new_section(conf, psection); in def_load_bio() 539 if (tv == NULL) { in def_load_bio() 545 tv = sv; in def_load_bio() 546 if (_CONF_add_string(conf, tv, v) == 0) { in def_load_bio()
|
/openssl-master/crypto/ts/ |
A D | ts_rsp_sign.c | 66 struct timeval tv; in def_time_cb() local 67 if (gettimeofday(&tv, NULL) != 0) { in def_time_cb() 74 *sec = tv.tv_sec; in def_time_cb() 75 *usec = tv.tv_usec; in def_time_cb()
|
/openssl-master/apps/ |
A D | s_client.c | 847 struct timeval tv; in s_client_main() local 2768 tv.tv_sec = 1; in s_client_main() 2769 tv.tv_usec = 0; in s_client_main() 2771 NULL, &tv); in s_client_main()
|
/openssl-master/test/recipes/30-test_evp_data/ |
A D | evppkey_ecc.txt | 3732 iroIaCFjLBIfOVDF8jvj2PO1ar3yCLiSA2RiLZz1Y+tv/tcATHE0nS7l3SfGiGmEnVycEnhgqlKM
|
Completed in 23 milliseconds