OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EpollController
(Results
1 - 5
of
5
) sorted by null
/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 {
FuseBridgeLoop.cc
27
#include "libappfuse/
EpollController
.h"
259
class BridgeEpollController : private
EpollController
{
261
BridgeEpollController(base::unique_fd&& poll_fd) :
EpollController
(std::move(poll_fd)) {}
275
if (!
EpollController
::Wait(event_count)) {
302
result &=
EpollController
::InvokeControl(op, bridge->device_fd_, device_events,
306
result &=
EpollController
::InvokeControl(op, bridge->proxy_fd_, proxy_events,
FuseAppLoop.cc
25
#include "libappfuse/
EpollController
.h"
215
std::unique_ptr<
EpollController
> epoll_controller(new
EpollController
(std::move(epoll_fd)));
/system/core/libappfuse/include/libappfuse/
EpollController.h
30
class
EpollController
{
32
explicit
EpollController
(base::unique_fd&& poll_fd);
47
DISALLOW_COPY_AND_ASSIGN(
EpollController
);
FuseAppLoop.h
30
class
EpollController
;
Completed in 512 milliseconds