Home
last modified time | relevance | path

Searched refs:addFd (Results 1 – 7 of 7) sorted by relevance

/system/hwservicemanager/
Dservice.cpp77 int ret = looper->addFd(fdHwBinder, in setupTo()
116 int addRes = looper->addFd(fdTimer, in setupTo()
/system/core/libutils/include/utils/
DLooper.h321 int addFd(int fd, int ident, int events, Looper_callbackFunc callback, void* data);
322 int addFd(int fd, int ident, int events, const sp<LooperCallback>& callback, void* data);
/system/connectivity/wificond/
Dlooper_backed_event_loop.cpp110 if (looper_->addFd(fd, 0, event, watch_fd_callback, NULL) == 0) { in WatchFileDescriptor()
/system/core/libutils/
DLooper_test.cpp111 looper->addFd(fd, 0, events, staticHandler, this); in setCallback()
396 mLooper->addFd(pipe.receiveFd, expectedIdent, Looper::EVENT_INPUT, nullptr, expectedData); in TEST_F()
421 int result = mLooper->addFd(pipe.receiveFd, 0, Looper::EVENT_INPUT, nullptr, nullptr); in TEST_F()
429 int result = mLooper->addFd(pipe.receiveFd, -1, Looper::EVENT_INPUT, nullptr, nullptr); in TEST_F()
438 int result = looper->addFd(pipe.receiveFd, 0, 0, nullptr, nullptr); in TEST_F()
DLooper.cpp426 int Looper::addFd(int fd, int ident, int events, Looper_callbackFunc callback, void* data) { in addFd() function in android::Looper
427 return addFd(fd, ident, events, callback ? new SimpleLooperCallback(callback) : nullptr, data); in addFd()
430 int Looper::addFd(int fd, int ident, int events, const sp<LooperCallback>& callback, void* data) { in addFd() function in android::Looper
/system/incremental_delivery/libdataloader/
DDataLoaderConnector.cpp762 pendingReadsLooper().addFd(control->pendingReads(), android::Looper::POLL_CALLBACK, in DataLoaderService_OnStart()
769 logLooper().addFd(control->logs(), android::Looper::POLL_CALLBACK, in DataLoaderService_OnStart()
/system/tools/aidl/tests/
Daidl_test_service.cpp530 if (looper->addFd(binder_fd, Looper::POLL_CALLBACK, Looper::EVENT_INPUT, cb, in Run()