Home
last modified time | relevance | path

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

/system/core/libutils/
DLooper_fuzz.cpp49 looper->addFd(pipeObj.receiveFd, dataProvider->ConsumeIntegral<int>(), in __anonf7ee24f90302()
54 looper->addFd(pipeObj.receiveFd, dataProvider->ConsumeIntegral<int>(), in __anonf7ee24f90402()
59 looper->addFd(pipeObj.receiveFd, dataProvider->ConsumeIntegral<int>(), in __anonf7ee24f90502()
64 looper->addFd(pipeObj.receiveFd, dataProvider->ConsumeIntegral<int>(), in __anonf7ee24f90602()
DLooper_test.cpp77 looper->addFd(fd, 0, events, staticHandler, this); in setCallback()
362 mLooper->addFd(pipe.receiveFd, expectedIdent, Looper::EVENT_INPUT, nullptr, expectedData); in TEST_F()
387 int result = mLooper->addFd(pipe.receiveFd, 0, Looper::EVENT_INPUT, nullptr, nullptr); in TEST_F()
395 int result = mLooper->addFd(pipe.receiveFd, -1, Looper::EVENT_INPUT, nullptr, nullptr); in TEST_F()
404 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/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/incremental_delivery/libdataloader/
DDataLoaderConnector.cpp863 looper.addFd(control->pendingReads(), android::Looper::POLL_CALLBACK, in DataLoaderService_OnStart()
878 looper.addFd(control->logs(), android::Looper::POLL_CALLBACK, android::Looper::EVENT_INPUT, in DataLoaderService_OnStart()
/system/tools/aidl/tests/
Daidl_test_service.cpp688 if (looper->addFd(binder_fd, Looper::POLL_CALLBACK, Looper::EVENT_INPUT, cb, in Run()