Symbol: get_time
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1482
ret = get_time(ld, ent, "krbLastSuccessfulAuth", &entry->last_success,
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1489
ret = get_time(ld, ent, "krbLastFailedAuth", &entry->last_failed,
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1512
ret = get_time(ld, ent, "krbprincipalexpiration", &entry->expiration,
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1519
ret = get_time(ld, ent, "krbpasswordexpiration", &entry->pw_expiration,
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1581
ret = get_time(ld, ent, "krbLastPwdChange", &lastpwdchange, &attr_present);
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_misc.c
1591
ret = get_time(ld, ent, "krbLastAdminUnlock", &unlock_time, &attr_present);
crypto/krb5/src/plugins/kdb/test/kdb_test.c
467
ent->expiration = get_time(h, "princs", ename, "expiration");
crypto/krb5/src/plugins/kdb/test/kdb_test.c
468
ent->pw_expiration = get_time(h, "princs", ename, "pwexpiration");
crypto/openssl/ssl/quic/quic_channel.c
124
qti.now_cb = get_time;
crypto/openssl/ssl/quic/quic_channel.c
2051
now = get_time(ch);
crypto/openssl/ssl/quic/quic_channel.c
2097
now = get_time(ch);
crypto/openssl/ssl/quic/quic_channel.c
214
get_time, ch))
crypto/openssl/ssl/quic/quic_channel.c
220
get_time, ch))
crypto/openssl/ssl/quic/quic_channel.c
225
get_time, ch))
crypto/openssl/ssl/quic/quic_channel.c
230
get_time, ch))
crypto/openssl/ssl/quic/quic_channel.c
238
if ((ch->cc_data = ch->cc_method->new(get_time, ch)) == NULL)
crypto/openssl/ssl/quic/quic_channel.c
241
if ((ch->ackm = ossl_ackm_new(get_time, ch, &ch->statm,
crypto/openssl/ssl/quic/quic_channel.c
273
txp_args.now = get_time;
crypto/openssl/ssl/quic/quic_channel.c
3151
= ossl_time_add(get_time(ch),
crypto/openssl/ssl/quic/quic_channel.c
3564
ch->idle_deadline = ossl_time_add(get_time(ch),
crypto/openssl/ssl/quic/quic_channel.c
3590
ch->ping_deadline = ossl_time_add(get_time(ch), max_span);
crypto/openssl/ssl/quic/quic_channel.c
3794
get_time, ch))
crypto/openssl/ssl/quic/quic_channel.c
766
ch->txku_cooldown_deadline = ossl_time_add(get_time(ch),
crypto/openssl/ssl/quic/quic_channel.c
79
static OSSL_TIME get_time(void *arg);
crypto/openssl/ssl/quic/quic_channel.c
790
ossl_time_compare(get_time(ch), ch->txku_cooldown_deadline) >= 0
crypto/openssl/ssl/quic/quic_channel.c
898
ch->rxku_update_end_deadline = ossl_time_add(get_time(ch), pto);
crypto/openssl/ssl/quic/quic_channel.c
928
|| ossl_time_compare(get_time(ch), ch->rxku_update_end_deadline) < 0)
crypto/openssl/ssl/quic/quic_port.c
147
get_time, port))
crypto/openssl/ssl/quic/quic_port.c
31
static OSSL_TIME get_time(void *arg);
crypto/openssl/test/quic_multistream_test.c
766
s_args.now_cb = get_time;
crypto/openssl/test/quic_multistream_test.c
812
if (!TEST_true(ossl_quic_set_override_now_cb(h->c_conn, get_time, h)))
crypto/openssl/test/radix/quic_bindings.c
665
cfg->now_cb = get_time;
sys/dev/bnxt/bnxt_en/bnxt_ioctl.h
185
struct bnxt_ioctl_hwrm_fw_get_time get_time;
sys/dev/bnxt/bnxt_en/if_bnxt.c
4245
&iod->get_time;
sys/dev/efidev/efirt.c
839
.get_time = get_time,
sys/dev/xen/efi/pvefi.c
205
.get_time = get_time,
sys/dev/xen/efi/pvefi.c
66
tm->tm_year = call->u.get_time.time.year;
sys/dev/xen/efi/pvefi.c
67
tm->tm_mon = call->u.get_time.time.month;
sys/dev/xen/efi/pvefi.c
68
tm->tm_mday = call->u.get_time.time.day;
sys/dev/xen/efi/pvefi.c
69
tm->tm_hour = call->u.get_time.time.hour;
sys/dev/xen/efi/pvefi.c
70
tm->tm_min = call->u.get_time.time.min;
sys/dev/xen/efi/pvefi.c
71
tm->tm_sec = call->u.get_time.time.sec;
sys/dev/xen/efi/pvefi.c
72
tm->tm_nsec = call->u.get_time.time.ns;
sys/dev/xen/efi/pvefi.c
73
tm->tm_tz = call->u.get_time.time.tz;
sys/dev/xen/efi/pvefi.c
74
tm->tm_dst = call->u.get_time.time.daylight;
sys/dev/xen/efi/pvefi.c
93
tmcap->tc_res = call->u.get_time.resolution;
sys/dev/xen/efi/pvefi.c
94
tmcap->tc_prec = call->u.get_time.accuracy;
sys/sys/efi.h
282
int (*get_time)(struct efi_tm *);
sys/sys/efi.h
324
if (active_efi_ops->get_time == NULL)
sys/sys/efi.h
326
return (active_efi_ops->get_time(tm));