Home
last modified time | relevance | path

Searched refs:polled (Results 1 - 3 of 3) sorted by relevance

/developtools/profiler/hiebpf/src/
H A Dipc_unix_socket.cpp95 int polled = TEMP_FAILURE_RETRY(poll(&pollFd, 1, timeout)); in HandleThreadLoop() local
96 if (polled == 0) { // timeout in HandleThreadLoop()
98 } else if (polled < 0 || !(pollFd.revents & POLLIN)) { in HandleThreadLoop()
180 int polled = poll(&pollFd, 1, timeout); in RecvMessage() local
181 if (polled == 0) { // timeout in RecvMessage()
184 } else if (polled < 0 || !(pollFd.revents & POLLIN)) { in RecvMessage()
/developtools/hiperf/interfaces/innerkits/native/src/
H A Dhiperf_client.cpp645 int polled = poll(&pollFd, 1, timeOut.count()); in WaitCommandReply() local
646 if (polled > 0) { in WaitCommandReply()
660 } else if (polled == 0) { in WaitCommandReply()
/developtools/hiperf/src/
H A Dsubcommand_record.cpp1013 int polled = poll(&pollFd, 1, CONTROL_WAITREPY_TOMEOUT.count()); in ClientCommandHandle() local
1014 if (polled <= 0) { in ClientCommandHandle()
1175 int polled = poll(&pollFd, 1, timeOut.count()); in WaitFifoReply() local
1177 if (polled > 0) { in WaitFifoReply()
1190 } else if (polled == 0) { in WaitFifoReply()

Completed in 5 milliseconds