OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:posixtime
(Results
1 - 1
of
1
) sorted by null
/external/icu4c/common/
putil.c
199
struct timeval
posixTime
;
200
gettimeofday(&
posixTime
, NULL);
201
return (UDate)(((int64_t)
posixTime
.tv_sec * U_MILLIS_PER_SECOND) + (
posixTime
.tv_usec/1000));
270
struct timeval
posixTime
;
271
gettimeofday(&
posixTime
, NULL);
272
return (UDate)(((int64_t)
posixTime
.tv_sec * U_MILLIS_PER_SECOND) + (
posixTime
.tv_usec/1000));
[
all
...]
Completed in 494 milliseconds