Searched defs:fdevent (Results 1 - 2 of 2) sorted by relevance

/system/core/adb/
H A Dfdevent.h31 typedef struct fdevent fdevent; typedef in typeref:struct:fdevent
35 /* Allocate and initialize a new fdevent object
39 fdevent *fdevent_create(int fd, fd_func func, void *arg);
41 /* Uninitialize and deallocate an fdevent object that was
44 void fdevent_destroy(fdevent *fde);
46 /* Initialize an fdevent object that was externally allocated
48 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
50 /* Uninitialize an fdevent object that was initialized by
53 void fdevent_remove(fdevent *ite
67 struct fdevent struct
[all...]
H A Dsysdeps.h175 /* normally provided by "fdevent.h" */
182 typedef struct fdevent fdevent; typedef in typeref:struct:fdevent
186 fdevent *fdevent_create(int fd, fd_func func, void *arg);
187 void fdevent_destroy(fdevent *fde);
188 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
189 void fdevent_remove(fdevent *item);
190 void fdevent_set(fdevent *fde, unsigned events);
191 void fdevent_add(fdevent *fde, unsigned events);
192 void fdevent_del(fdevent *fd
195 struct fdevent { struct
[all...]

Completed in 266 milliseconds