OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeout_ts
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/main/coregrind/
m_libcfile.c
498
struct vki_timespec
timeout_ts
;
local
500
timeout_ts
.tv_sec = timeout / 1000;
501
timeout_ts
.tv_nsec = ((long)timeout % 1000) * 1000000;
505
(UWord)(timeout >= 0 ? &
timeout_ts
: NULL),
[
all
...]
/art/dex2oat/
dex2oat.cc
692
timespec
timeout_ts
;
local
693
InitTimeSpec(true, CLOCK_REALTIME, multiplier * kWatchDogTimeoutSeconds * 1000, 0, &
timeout_ts
);
697
int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &
timeout_ts
));
[
all
...]
Completed in 3111 milliseconds