/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...] |
/external/chromium_org/chrome/installer/mini_installer/ |
decompress.cc | 7 #include <fdi.h> 172 typedef BOOL (DIAMONDAPI* FDIDestroyFn)(HFDI fdi); 173 typedef BOOL (DIAMONDAPI* FDICopyFn)(HFDI fdi, char* cab, char* cab_path, 248 HFDI fdi = g_FDICreate(&Alloc, &Free, &Open, &Read, &Write, &Close, &Seek, local 250 if (fdi) { 251 if (g_FDICopy(fdi, source_name_utf8, source_path_utf8, 0, 255 g_FDIDestroy(fdi);
|
/external/chromium_org/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 | 294 int fd, fdi; local 301 fdi = fds[1]; 305 /* fdi is really the client's stdin, so use read, not adb_read here */ 306 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi); 307 r = unix_read(fdi, buf, 1024); 308 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi); 329 stdin_raw_restore(fdi); 348 int fdi, fd local [all...] |