Home
last modified time | relevance | path

Searched refs:max_sleep_time_usecs (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/libchrome/base/process/
H A Dprocess_posix.cc62 int64_t max_sleep_time_usecs = 1 << 10; // ~1 milliseconds. in WaitpidWithTimeout() local
74 if (sleep_time_usecs > max_sleep_time_usecs) in WaitpidWithTimeout()
75 sleep_time_usecs = max_sleep_time_usecs; in WaitpidWithTimeout()
82 if ((max_sleep_time_usecs < kMaxSleepInMicroseconds) && in WaitpidWithTimeout()
84 max_sleep_time_usecs *= 2; in WaitpidWithTimeout()
/aosp_15_r20/external/cronet/base/process/
H A Dprocess_posix.cc74 uint32_t max_sleep_time_usecs = 1 << 10; // ~1 ms. in WaitpidWithTimeout() local
86 uint64_t{max_sleep_time_usecs})); in WaitpidWithTimeout()
92 if ((max_sleep_time_usecs < kMaxSleepInMicroseconds) && in WaitpidWithTimeout()
94 max_sleep_time_usecs *= 2; in WaitpidWithTimeout()