HomeSort by relevance Sort by last modified time
    Searched refs:InvokeControl (Results 1 - 3 of 3) sorted by null

  /system/core/libappfuse/
EpollController.cc 39 return InvokeControl(EPOLL_CTL_ADD, fd, events, data);
43 return InvokeControl(EPOLL_CTL_MOD, fd, events, data);
47 return InvokeControl(EPOLL_CTL_DEL, fd, /* events */ 0, nullptr);
54 bool EpollController::InvokeControl(int op, int fd, int events, void* data) const {
FuseBridgeLoop.cc 247 return InvokeControl(EPOLL_CTL_ADD, bridge);
251 return InvokeControl(
272 bool InvokeControl(int op, FuseBridgeEntry* bridge) const {
273 LOG(VERBOSE) << "InvokeControl op=" << op << " bridge=" << bridge->mount_id_
285 result &= EpollController::InvokeControl(op, bridge->device_fd_, device_events,
289 result &= EpollController::InvokeControl(op, bridge->proxy_fd_, proxy_events,
  /system/core/libappfuse/include/libappfuse/
EpollController.h 41 bool InvokeControl(int op, int fd, int events, void* data) const;

Completed in 71 milliseconds