HomeSort by relevance Sort by last modified time
    Searched defs:EpollController (Results 1 - 2 of 2) sorted by null

  /system/core/libappfuse/include/libappfuse/
EpollController.h 30 class EpollController {
32 explicit EpollController(base::unique_fd&& poll_fd);
47 DISALLOW_COPY_AND_ASSIGN(EpollController);
  /system/core/libappfuse/
EpollController.cc 19 #include "libappfuse/EpollController.h"
24 EpollController::EpollController(base::unique_fd&& poll_fd) : poll_fd_(std::move(poll_fd)) {
27 bool EpollController::Wait(size_t event_count) {
38 bool EpollController::AddFd(int fd, int events, void* data) {
42 bool EpollController::UpdateFd(int fd, int events, void* data) {
46 bool EpollController::RemoveFd(int fd) {
50 const std::vector<epoll_event>& EpollController::events() const {
54 bool EpollController::InvokeControl(int op, int fd, int events, void* data) const {

Completed in 2943 milliseconds