OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timenow
(Results
1 - 3
of
3
) sorted by null
/external/openssl/ssl/
d1_lib.c
303
struct timeval
timenow
;
local
312
get_current_time(&
timenow
);
315
if (s->d1->next_timeout.tv_sec <
timenow
.tv_sec ||
316
(s->d1->next_timeout.tv_sec ==
timenow
.tv_sec &&
317
s->d1->next_timeout.tv_usec <=
timenow
.tv_usec))
325
timeleft->tv_sec -=
timenow
.tv_sec;
326
timeleft->tv_usec -=
timenow
.tv_usec;
/external/ppp/pppd/
main.c
1248
static struct timeval
timenow
; /* Current time */
variable in typeref:struct:timeval
1268
gettimeofday(&
timenow
, NULL);
1269
newp->c_time.tv_sec =
timenow
.tv_sec + secs;
1270
newp->c_time.tv_usec =
timenow
.tv_usec + usecs;
[
all
...]
/external/openssl/crypto/bio/
bss_dgram.c
194
struct timeval
timenow
, timeleft;
local
214
get_current_time(&
timenow
);
218
timeleft.tv_sec -=
timenow
.tv_sec;
219
timeleft.tv_usec -=
timenow
.tv_usec;
Completed in 56 milliseconds