Searched refs:polled (Results 1 – 3 of 3) sorted by relevance
| /developtools/profiler/hiebpf/src/ |
| D | ipc_unix_socket.cpp | 96 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/ |
| D | hiperf_client.cpp | 586 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/ |
| D | subcommand_record.cpp | 971 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()
|