OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:target_time
(Results
1 - 7
of
7
) sorted by null
/external/autotest/client/tests/uptime/
control
11
until total elapsed time of the test reaches T=
target_time
17
def uptime_test(cycle_length = 300,
target_time
= 3*60*60):
20
while time.time() < test_started +
target_time
:
/art/runtime/gc/
task_processor.cc
58
uint64_t
target_time
= task->GetTargetRunTime();
local
59
if (!is_running_ ||
target_time
<= current_time) {
63
DCHECK_GT(
target_time
, current_time);
65
const uint64_t delta_time =
target_time
- current_time;
task_processor.h
65
void UpdateTargetRunTime(Thread* self, HeapTask*
target_time
, uint64_t new_target_time)
heap.cc
3761
const uint64_t
target_time
= NanoTime() + delta_time;
local
[
all
...]
/hardware/bsp/intel/peripheral/sensors/mraa/
AcquisitionThread.cpp
29
struct timespec
target_time
;
local
76
set_timestamp(&
target_time
, timestamp);
77
pthread_cond_timedwait(&acquisitionThread->pthreadCond, &acquisitionThread->pthreadMutex, &
target_time
);
/system/tpm/trunks/
trunks_ftdi_spi.cc
218
time_t
target_time
;
local
220
target_time
= time(NULL) + timeout_ms / 1000;
223
if (time(NULL) >=
target_time
) {
/hardware/bsp/intel/peripheral/light/mraa/
lights.c
165
struct timespec
target_time
;
local
209
/* sleep until
target_time
or the cond var is signaled */
210
set_timestamp(&
target_time
, timestamp);
211
rc = pthread_cond_timedwait(&dev->flash_cond, &dev->flash_signal_mutex, &
target_time
);
Completed in 92 milliseconds