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

  /external/chromium/third_party/libevent/
evport.c 104 #define FDI_HAS_READ(fdi) ((fdi)->fdi_revt != NULL)
105 #define FDI_HAS_WRITE(fdi) ((fdi)->fdi_wevt != NULL)
106 #define FDI_HAS_EVENTS(fdi) (FDI_HAS_READ(fdi) || FDI_HAS_WRITE(fdi))
107 #define FDI_TO_SYSEVENTS(fdi) (FDI_HAS_READ(fdi) ? POLLIN : 0) | \
108 (FDI_HAS_WRITE(fdi) ? POLLOUT : 0
198 struct fd_info *fdi; local
319 struct fd_info *fdi = NULL; local
352 struct fd_info *fdi; local
403 struct fd_info *fdi; local
445 struct fd_info *fdi; local
    [all...]
  /frameworks/wilhelm/src/android/
android_defs.h 202 FdInfo fdi; member in union:android::DataLocator
207 FdInfo fdi; member in union:android::DataLocator2
  /system/core/adb/
commandline.c 277 int fd, fdi; local
284 fdi = fds[1];
288 /* fdi is really the client's stdin, so use read, not adb_read here */
289 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
290 r = unix_read(fdi, buf, 1024);
291 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
312 stdin_raw_restore(fdi);
331 int fdi, fd local
    [all...]

Completed in 208 milliseconds