Searched refs:pollfd (Results 1 – 25 of 45) sorted by relevance
12
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | poll.h | 57 struct pollfd { struct 88 int poll(struct pollfd *, nfds_t, int);
|
/device/google/trout/hal/sensors/2.0/ |
D | MultiPoll.cpp | 24 pollfd pfd{.fd = fd, .events = POLLIN, .revents = 0}; in addDescriptor() 30 std::vector<pollfd> fds; in poll()
|
D | MultiPoll.h | 39 std::vector<pollfd> mDescriptors;
|
D | Sensor.h | 128 struct pollfd mPollFdIio;
|
/device/generic/goldfish/network/netmgr/ |
D | commander.cpp | 57 void Commander::getPollData(std::vector<pollfd>* fds) const { in getPollData() 59 fds->push_back(pollfd{mPipeFd, POLLIN, 0}); in getPollData()
|
D | pollable.h | 35 virtual void getPollData(std::vector<pollfd>* fds) const = 0;
|
D | commander.h | 36 void getPollData(std::vector<pollfd>* fds) const override;
|
D | wifi_forwarder.h | 38 void getPollData(std::vector<pollfd>* fds) const override;
|
D | monitor.h | 41 void getPollData(std::vector<pollfd>* fds) const override;
|
D | monitor.cpp | 112 void Monitor::getPollData(std::vector<pollfd>* fds) const { in getPollData() 114 fds->push_back(pollfd{mSocketFd, POLLIN, 0}); in getPollData()
|
D | wifi_forwarder.cpp | 183 void WifiForwarder::getPollData(std::vector<pollfd>* fds) const { in getPollData() 189 fds->push_back(pollfd{pcapFd, POLLIN, 0}); in getPollData() 194 fds->push_back(pollfd{mPipeFd, POLLIN, 0}); in getPollData()
|
D | poller.cpp | 83 std::vector<struct pollfd> fds; in run()
|
/device/google/contexthub/contexthubhal/ |
D | nanohubhal.cpp | 113 static bool init_inotify(pollfd *pfd) { in init_inotify() 131 static void discard_inotify_evt(pollfd &pfd) { in discard_inotify_evt() 139 static void wait_on_dev_lock(pollfd &pfd) { in wait_on_dev_lock() 224 pollfd myFds[3] = { in runDeviceRx() 228 pollfd &inotifyFd = myFds[IDX_INOTIFY]; in runDeviceRx()
|
/device/generic/goldfish/network/wifi_forwarder/ |
D | pollable.h | 35 virtual void getPollData(std::vector<pollfd>* fds) const = 0;
|
D | wifi_forwarder.cpp | 67 void WifiForwarder::getPollData(std::vector<pollfd>* fds) const { in getPollData() 70 struct pollfd pfd = { fd, POLLIN, 0 }; in getPollData() 75 struct pollfd pfd = { fd, POLLIN, 0 }; in getPollData()
|
D | wifi_forwarder.h | 36 void getPollData(std::vector<pollfd>* fds) const override;
|
D | poller.cpp | 82 std::vector<struct pollfd> fds; in run()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/ |
D | WebServer.c | 42 struct pollfd * pFdList; in PortAdd() 43 struct pollfd * pFdListNew; in PortAdd() 239 struct pollfd * pFdList; in PortRemove() 492 struct pollfd * pPoll; in SocketPoll()
|
/device/google/contexthub/util/nanotool/ |
D | androidcontexthub.h | 63 int ResetPollFds(struct pollfd *pfds, size_t count);
|
D | androidcontexthub.cpp | 241 struct pollfd pollfds[kDeviceFileCount]; in ReadEvent() 389 int AndroidContextHub::ResetPollFds(struct pollfd *pfds, size_t count) { in ResetPollFds() 390 memset(pfds, 0, sizeof(struct pollfd) * count); in ResetPollFds()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/ |
D | select.c | 114 struct pollfd pfd; in selscan()
|
D | SysCalls.c | 756 struct pollfd * pfd, in poll() 762 struct pollfd * pEnd; in poll() 763 struct pollfd * pPollFD; in poll()
|
/device/google/cuttlefish/host/frontend/gcastv2/https/ |
D | RunLoop.cpp | 198 std::vector<pollfd> pollFds; in run() 364 pollfd &pollFd = pollFds[i]; in run()
|
/device/generic/goldfish/wifi/wifi_hal/ |
D | netlink.cpp | 98 struct pollfd fds[2]; in eventLoop()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/ |
D | TftpServer.h | 244 struct pollfd TftpPort [ 2 ]; ///< Poll descriptor for the TFTP ports (UDP4, UDP6)
|
12