OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
...]
/system/media/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
275
int fd,
fdi
;
local
282
fdi
= fds[1];
286
/*
fdi
is really the client's stdin, so use read, not adb_read here */
287
D("stdin_read_thread(): pre unix_read(
fdi
=%d,...)\n",
fdi
);
288
r = unix_read(
fdi
, buf, 1024);
289
D("stdin_read_thread(): post unix_read(
fdi
=%d,...)\n",
fdi
);
310
stdin_raw_restore(
fdi
);
329
int
fdi
, fd
local
[
all
...]
Completed in 163 milliseconds