OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:posixTime
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/icu/source/common/
putil.c
231
struct timeval
posixTime
;
232
gettimeofday(&
posixTime
, NULL);
233
return (UDate)(((int64_t)
posixTime
.tv_sec * U_MILLIS_PER_SECOND) + (
posixTime
.tv_usec/1000));
315
struct timeval
posixTime
;
316
gettimeofday(&
posixTime
, NULL);
317
return (UDate)(((int64_t)
posixTime
.tv_sec * U_MILLIS_PER_SECOND) + (
posixTime
.tv_usec/1000));
[
all
...]
/external/icu4c/common/
putil.cpp
247
struct timeval
posixTime
;
248
gettimeofday(&
posixTime
, NULL);
249
return (UDate)(((int64_t)
posixTime
.tv_sec * U_MILLIS_PER_SECOND) + (
posixTime
.tv_usec/1000));
331
struct timeval
posixTime
;
332
gettimeofday(&
posixTime
, NULL);
333
return (UDate)(((int64_t)
posixTime
.tv_sec * U_MILLIS_PER_SECOND) + (
posixTime
.tv_usec/1000));
[
all
...]
Completed in 29 milliseconds