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

  /bootable/recovery/minui/
events.c 164 struct fd_info *fdi = polledevents[n].data.ptr; local
165 ev_callback cb = fdi->cb;
167 cb(fdi->fd, polledevents[n].events, fdi->data);
  /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 354 int fd, fdi; local
361 fdi = fds[1];
365 /* fdi is really the client's stdin, so use read, not adb_read here */
366 D("stdin_read_thread(): pre unix_read(fdi=%d,...)\n", fdi);
367 r = unix_read(fdi, buf, 1024);
368 D("stdin_read_thread(): post unix_read(fdi=%d,...)\n", fdi);
389 stdin_raw_restore(fdi);
408 int fdi, fd local
    [all...]

Completed in 233 milliseconds