Home
last modified time | relevance | path

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

/developtools/profiler/hiebpf/src/
Dipc_unix_socket.cpp96 int polled = TEMP_FAILURE_RETRY(poll(&pollFd, 1, timeout)); in handleThreadLoop() local
97 if (polled == 0) { // timeout in handleThreadLoop()
99 } else if (polled < 0 || !(pollFd.revents & POLLIN)) { in handleThreadLoop()
181 int polled = poll(&pollFd, 1, timeout); in RecvMessage() local
182 if (polled == 0) { // timeout in RecvMessage()
185 } else if (polled < 0 || !(pollFd.revents & POLLIN)) { in RecvMessage()
/developtools/hiperf/interfaces/innerkits/native/src/
Dhiperf_client.cpp586 int polled = poll(&pollFd, 1, timeOut.count()); in WaitCommandReply() local
587 if (polled > 0) { in WaitCommandReply()
601 } else if (polled == 0) { in WaitCommandReply()
/developtools/hiperf/src/
Dsubcommand_record.cpp971 int polled = poll(&pollFd, 1, CONTROL_WAITREPY_TOMEOUT.count()); in ClientCommandHandle() local
972 if (polled <= 0) { in ClientCommandHandle()
1135 int polled = poll(&pollFd, 1, timeOut.count()); in WaitFifoReply() local
1137 if (polled > 0) { in WaitFifoReply()
1150 } else if (polled == 0) { in WaitFifoReply()