Home
last modified time | relevance | path

Searched refs:poll_timeout_ms (Results 1 – 3 of 3) sorted by relevance

/external/perfetto/src/base/
Dsubprocess.cc270 bool Subprocess::PollInternal(int poll_timeout_ms) { in PollInternal() argument
293 int poll_res = PERFETTO_EINTR(poll(fds, nfds, poll_timeout_ms)); in PollInternal()
319 int poll_timeout_ms = -1; // Block until a FD is ready. in Wait() local
322 poll_timeout_ms = timeout_ms - static_cast<int>(now - t_start); in Wait()
323 if (poll_timeout_ms <= 0) in Wait()
326 PollInternal(poll_timeout_ms); in Wait()
Dunix_task_runner.cc51 int poll_timeout_ms; in Run() local
56 poll_timeout_ms = GetDelayMsToNextTaskLocked(); in Run()
60 &poll_fds_[0], static_cast<nfds_t>(poll_fds_.size()), poll_timeout_ms)); in Run()
/external/perfetto/include/perfetto/ext/base/
Dsubprocess.h206 bool PollInternal(int poll_timeout_ms);