/system/hwservicemanager/ |
D | service.cpp | 77 int ret = looper->addFd(fdHwBinder, in setupTo() 116 int addRes = looper->addFd(fdTimer, in setupTo()
|
/system/core/libutils/include/utils/ |
D | Looper.h | 319 int addFd(int fd, int ident, int events, Looper_callbackFunc callback, void* data); 320 int addFd(int fd, int ident, int events, const sp<LooperCallback>& callback, void* data);
|
/system/connectivity/wificond/ |
D | looper_backed_event_loop.cpp | 110 if (looper_->addFd(fd, 0, event, watch_fd_callback, NULL) == 0) { in WatchFileDescriptor()
|
/system/core/libutils/ |
D | Looper_test.cpp | 110 looper->addFd(fd, 0, events, staticHandler, this); in setCallback() 395 mLooper->addFd(pipe.receiveFd, expectedIdent, Looper::EVENT_INPUT, nullptr, expectedData); in TEST_F() 420 int result = mLooper->addFd(pipe.receiveFd, 0, Looper::EVENT_INPUT, nullptr, nullptr); in TEST_F() 428 int result = mLooper->addFd(pipe.receiveFd, -1, Looper::EVENT_INPUT, nullptr, nullptr); in TEST_F() 437 int result = looper->addFd(pipe.receiveFd, 0, 0, nullptr, nullptr); in TEST_F()
|
D | Looper.cpp | 424 int Looper::addFd(int fd, int ident, int events, Looper_callbackFunc callback, void* data) { in addFd() function in android::Looper 425 return addFd(fd, ident, events, callback ? new SimpleLooperCallback(callback) : nullptr, data); in addFd() 428 int Looper::addFd(int fd, int ident, int events, const sp<LooperCallback>& callback, void* data) { in addFd() function in android::Looper
|
/system/netd/resolv/dns_responder/ |
D | dns_responder.h | 126 bool addFd(int fd, uint32_t events);
|
D | dns_responder.cpp | 638 if (!addFd(socket_.get(), EPOLLIN)) { in startServer() 643 if (!addFd(event_fd_.get(), EPOLLIN)) { in startServer() 924 bool DNSResponder::addFd(int fd, uint32_t events) { in addFd() function in test::DNSResponder
|
/system/tools/aidl/tests/ |
D | aidl_test_service.cpp | 500 if (looper->addFd(binder_fd, Looper::POLL_CALLBACK, Looper::EVENT_INPUT, cb, in Run()
|