Home
last modified time | relevance | path

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

/device/generic/vulkan-cereal/third-party/perfetto/src/base/
Dsubprocess.cc310 bool Subprocess::PollInternal(int poll_timeout_ms) { in PollInternal() argument
333 int poll_res = PERFETTO_EINTR(poll(fds, nfds, poll_timeout_ms)); in PollInternal()
359 int poll_timeout_ms = -1; // Block until a FD is ready. in Wait() local
362 poll_timeout_ms = timeout_ms - static_cast<int>(now - t_start); in Wait()
363 if (poll_timeout_ms <= 0) in Wait()
366 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()
/device/generic/vulkan-cereal/third-party/perfetto/include/perfetto/ext/base/
Dsubprocess.h227 bool PollInternal(int poll_timeout_ms);
/device/generic/vulkan-cereal/third-party/perfetto-tracing-only/
Dperfetto.cc3507 bool PollInternal(int poll_timeout_ms);
3840 bool Subprocess::PollInternal(int poll_timeout_ms) { in PollInternal() argument
3863 int poll_res = PERFETTO_EINTR(poll(fds, nfds, poll_timeout_ms)); in PollInternal()
3889 int poll_timeout_ms = -1; // Block until a FD is ready. in Wait() local
3892 poll_timeout_ms = timeout_ms - static_cast<int>(now - t_start); in Wait()
3893 if (poll_timeout_ms <= 0) in Wait()
3896 PollInternal(poll_timeout_ms); in Wait()
5711 int poll_timeout_ms; in Run() local
5716 poll_timeout_ms = GetDelayMsToNextTaskLocked(); in Run()
5720 &poll_fds_[0], static_cast<nfds_t>(poll_fds_.size()), poll_timeout_ms)); in Run()
/device/generic/goldfish-opengl/system/profiler/
Dperfetto.cpp6635 int poll_timeout_ms; in Run() local
6640 poll_timeout_ms = GetDelayMsToNextTaskLocked(); in Run()
6646 poll_timeout_ms >= 0 ? static_cast<DWORD>(poll_timeout_ms) : INFINITE; in Run()
6659 &poll_fds_[0], static_cast<nfds_t>(poll_fds_.size()), poll_timeout_ms)); in Run()
7141 bool PollInternal(int poll_timeout_ms);
7520 bool Subprocess::PollInternal(int poll_timeout_ms) { in PollInternal() argument
7543 int poll_res = PERFETTO_EINTR(poll(fds, nfds, poll_timeout_ms)); in PollInternal()
7569 int poll_timeout_ms = -1; // Block until a FD is ready. in Wait() local
7572 poll_timeout_ms = timeout_ms - static_cast<int>(now - t_start); in Wait()
7573 if (poll_timeout_ms <= 0) in Wait()
[all …]