Home
last modified time | relevance | path

Searched refs:InvokeControl (Results 1 – 3 of 3) sorted by relevance

/system/core/libappfuse/
DEpollController.cc39 return InvokeControl(EPOLL_CTL_ADD, fd, events, data); in AddFd()
43 return InvokeControl(EPOLL_CTL_MOD, fd, events, data); in UpdateFd()
47 return InvokeControl(EPOLL_CTL_DEL, fd, /* events */ 0, nullptr); in RemoveFd()
54 bool EpollController::InvokeControl(int op, int fd, int events, void* data) const { in InvokeControl() function in android::fuse::EpollController
DFuseBridgeLoop.cc265 return InvokeControl(EPOLL_CTL_ADD, bridge); in AddBridgePoll()
269 return InvokeControl( in UpdateOrDeleteBridgePoll()
290 bool InvokeControl(int op, FuseBridgeEntry* bridge) const { in InvokeControl() function in android::fuse::BridgeEpollController
303 result &= EpollController::InvokeControl(op, bridge->device_fd_, device_events, in InvokeControl()
307 result &= EpollController::InvokeControl(op, bridge->proxy_fd_, proxy_events, in InvokeControl()
/system/core/libappfuse/include/libappfuse/
DEpollController.h41 bool InvokeControl(int op, int fd, int events, void* data) const;