Home
last modified time | relevance | path

Searched refs:pollfd (Results 1 – 25 of 47) sorted by relevance

12

/system/core/adb/
Dfdevent.cpp63 adb_pollfd pollfd; member
66 memset(&pollfd, 0, sizeof(pollfd)); in PollNode()
67 pollfd.fd = fde->fd.get(); in PollNode()
72 pollfd.events = POLLRDHUP; in PollNode()
194 node.pollfd.events |= POLLIN; in fdevent_update()
196 node.pollfd.events &= ~POLLIN; in fdevent_update()
200 node.pollfd.events |= POLLOUT; in fdevent_update()
202 node.pollfd.events &= ~POLLOUT; in fdevent_update()
247 for (const auto& pollfd : pollfds) { in dump_pollfds() local
249 if (pollfd.events & POLLIN) { in dump_pollfds()
[all …]
/system/netd/server/
DIptablesRestoreController.cpp63 struct pollfd pollfd = { .fd = stdIn, .events = POLLOUT }; in outputReady() local
64 int ret = poll(&pollfd, 1, 0); in outputReady()
69 return (ret == 1) && !(pollfd.revents & POLLERR); in outputReady()
110 struct pollfd pollFds[2];
294 const struct pollfd &pollfd = process->pollFds[i]; in drainAndWaitForAck() local
295 if (pollfd.revents & POLLIN) { in drainAndWaitForAck()
298 size = TEMP_FAILURE_RETRY(read(pollfd.fd, buffer, sizeof(buffer))); in drainAndWaitForAck()
327 if (pollfd.revents & POLLHUP) { in drainAndWaitForAck()
DMDnsSdListener.cpp584 mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd), mPollSize); in run()
587 ((int)sizeof(struct pollfd)) * mPollSize); in run()
647 mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd), mPollSize); in rescan()
650 ((int)sizeof(struct pollfd)) * mPollSize); in rescan()
654 memset(mPollFds, 0, sizeof(struct pollfd) * mPollSize); in rescan()
DMDnsSdListener.h98 struct pollfd *mPollFds;
/system/netd/client/
DNetdClientTest.cpp36 pollfd fds[1] = {{.fd = dnsProxyFd, .events = POLLIN}}; in serverLoop()
/system/chre/host/common/include/chre_host/
Dsocket_server.h94 struct pollfd mPollFds[1 + kMaxActiveClients] = {};
/system/testing/gtest_extras/
DIsolate.cpp225 pollfd* pollfd = &running_pollfds_[run_index]; in LaunchTests() local
226 pollfd->fd = test->fd(); in LaunchTests()
227 pollfd->events = POLLIN; in LaunchTests()
239 pollfd* pfd = &running_pollfds_[i]; in ReadTestsOutput()
409 memset(running_pollfds_.data(), 0, running_pollfds_.size() * sizeof(pollfd)); in RunAllTests()
DIsolate.h101 std::vector<pollfd> running_pollfds_;
/system/bt/service/ipc/
Dlinux_ipc_host.h99 std::vector<struct pollfd> pfds_;
/system/core/libsysutils/src/
DSocketListener.cpp153 std::vector<pollfd> fds; in runListener()
201 const struct pollfd& p = fds[i]; in runListener()
DSocketListener_test.cpp81 pollfd fds = {.fd = fd, .events = POLLIN}; in recvReply()
/system/media/audio_utils/include/audio_utils/
DFdToString.h100 struct pollfd pfd = { in reader()
/system/bt/btif/src/
Dbtif_sock_thread.cc80 struct pollfd pfd;
466 static void process_data_sock(int h, struct pollfd* pfds, int count) { in process_data_sock()
495 static void prepare_poll_fds(int h, struct pollfd* pfds) { in prepare_poll_fds()
519 struct pollfd pfds[MAX_POLL]; in sock_poll_thread()
/system/netd/libnetdutils/include/netdutils/
DSyscalls.h66 virtual StatusOr<int> ppoll(pollfd* fds, nfds_t nfds, double timeout) const = 0;
147 std::array<pollfd, size> tmp; in ppoll()
DMockSyscalls.h51 MOCK_CONST_METHOD3(ppoll, StatusOr<int>(pollfd* fds, nfds_t nfds, double timeout));
/system/netd/resolv/
DDnsTlsSocket.cpp53 struct pollfd fds = { .fd = fd, .events = POLLIN }; in waitForReading()
59 struct pollfd fds = { .fd = fd, .events = POLLOUT }; in waitForWriting()
342 struct pollfd fds[2] = { { .fd = -1 }, { .fd = -1 } }; in loop()
/system/connectivity/wificond/tests/
Dshell_utils.cpp85 struct pollfd shell_output; in RunShellCommand()
/system/bt/udrv/ulinux/
Duipc.cc137 struct pollfd pfd; in accept_server_socket()
335 struct pollfd pfd; in uipc_flush_ch_locked()
631 struct pollfd pfd; in UIPC_Read()
/system/nvram/hal/
Dfake_nvram.cpp153 struct pollfd poll_fds[kMaxClientSockets]; in ProcessMessages()
/system/core/init/
Duevent_listener.cpp186 pollfd ufd; in Poll()
/system/core/liblog/
Dlogd_reader.cpp152 struct pollfd p; in send_log_msg()
493 struct pollfd p; in logdPoll()
/system/core/debuggerd/client/
Ddebuggerd_client.cpp216 struct pollfd pfd = { in debuggerd_trigger_dump()
/system/core/toolbox/
Dgetevent.c36 static struct pollfd *ufds;
317 struct pollfd *new_ufds; in open_device()
/system/core/debuggerd/handler/
Ddebuggerd_fallback.cpp138 struct pollfd pfd = { in forward_output()
/system/bt/vendor_libs/linux/interface/
Dbluetooth_hci.cc117 struct pollfd fds[1]; in waitHciDev()

12