HomeSort by relevance Sort by last modified time
    Searched full:fdevent (Results 1 - 19 of 19) sorted by null

  /system/core/adb/
fdevent.h 33 struct fdevent { struct
34 fdevent *next;
35 fdevent *prev;
47 /* Allocate and initialize a new fdevent object
51 fdevent *fdevent_create(int fd, fd_func func, void *arg);
53 /* Uninitialize and deallocate an fdevent object that was
56 void fdevent_destroy(fdevent *fde);
58 /* Initialize an fdevent object that was externally allocated
60 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
62 /* Uninitialize an fdevent object that was initialized b
    [all...]
fdevent.cpp 1 /* http://frotznet.googlecode.com/svn/trunk/utils/fdevent.c
18 #define TRACE_TAG FDEVENT
21 #include "fdevent.h"
55 fdevent* fde;
58 PollNode(fdevent* fde) : fde(fde) {
70 // All operations to fdevent should happen only in the main thread.
71 // That's why we don't need a lock for fdevent.
73 static auto& g_pending_list = *new std::list<fdevent*>();
89 static std::string dump_fde(const fdevent* fde) {
112 return android::base::StringPrintf("(fdevent %d %s)", fde->fd, state.c_str())
    [all...]
adb_trace.h 39 FDEVENT,
fdevent_test.cpp 17 #include "fdevent.h"
68 fdevent read_fde_;
69 fdevent write_fde_;
141 fdevent fde;
fdevent_test.h 37 // Register a dummy socket used to wake up the fdevent loop to tell it to die.
adb_trace.cpp 133 {"fdevent", FDEVENT},
socket.h 22 #include "fdevent.h"
65 fdevent fde;
adb_auth_client.cpp 32 #include "fdevent.h"
46 static fdevent listener_fde;
47 static fdevent framework_fde;
adb.h 28 #include "fdevent.h"
133 fdevent fde;
shell_service.cpp 35 // socket uses the fdevent loop to pass raw data between this pipe and the
38 // a separate fdevent to close out the local socket from the main loop.
41 // Subprocess | adbd subprocess thread | adbd main fdevent loop
59 // Subprocess | adbd subprocess thread | adbd main fdevent loop
73 // fdevent loop, which has the advantage of being able to re-use the existing
695 // Pass the local socket FD to the shell cleanup fdevent.
701 // The shell exit fdevent now owns the FD and will close it once
adb_io.cpp 156 // fdevent APIs to get called on FDE_READ, and then call this function
framebuffer_service.cpp 33 #include "fdevent.h"
jdwp_service.cpp 131 fdevent* fde;
233 D("could not create fdevent for new JDWP process" );
450 fdevent* fde;
506 D( "could not create fdevent for jdwp control socket" );
transport.h 73 fdevent transport_fde;
socket_test.cpp 17 #include "fdevent.h"
Android.mk 53 fdevent.cpp \
transport.cpp 310 static fdevent transport_registration_fde;
585 /* the fdevent select pump is single threaded */
sysdeps.h 89 #include "fdevent.h"
  /bootable/recovery/minadbd/
services.cpp 27 #include "fdevent.h"

Completed in 177 milliseconds