/external/bison/lib/ |
fopen-safer.c | 52 || ! (fp = fdopen (f, mode)))
|
fopen.c | 97 fp = fdopen (fd, mode);
|
/external/chromium_org/third_party/webrtc/base/ |
platform_file.cc | 41 return fdopen(file, "w");
|
/external/compiler-rt/SDKs/linux/usr/include/ |
stdio.h | 36 extern FILE *fdopen(int, const char * restrict);
|
/external/compiler-rt/test/tsan/ |
getline_nohang.cc | 15 FILE *stream = fdopen(fd[0], "r");
|
/external/chromium_org/tools/memory_inspector/memory_inspector/unittest/mock_adb/ |
mock_adb.py | 26 with os.fdopen(fd_num, 'w') as f:
|
/external/freetype/src/gzip/ |
zutil.h | 111 # include <unix.h> /* for fdopen */ 113 # ifndef fdopen 114 # define fdopen(fd,mode) NULL /* No fdopen() */ macro 128 # define fdopen(fd,mode) NULL /* No fdopen() */ macro 132 # define fdopen(fd,type) _fdopen(fd,type) macro
|
/external/chromium_org/third_party/zlib/ |
zutil.h | 133 # include <unix.h> /* for fdopen */ 135 # ifndef fdopen 136 # define fdopen(fd,mode) NULL /* No fdopen() */ macro 156 # define fdopen(fd,mode) NULL /* No fdopen() */ macro 161 # define fdopen(fd,mode) NULL /* No fdopen() */ macro 167 # define fdopen(fd,type) _fdopen(fd,type) macro
|
/external/chromium_org/third_party/libjpeg_turbo/ |
cdjpeg.c | 157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) { 175 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
|
/external/jpeg/ |
cdjpeg.c | 157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) { 175 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
|
/bionic/libc/bionic/ |
tmpfile.cpp | 90 FILE* fp = fdopen(fd, "w+");
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
fdopen.c | 1 /* $OpenBSD: fdopen.c,v 1.6 2008/04/21 12:28:35 otto Exp $ */ 43 fdopen(int fd, const char *mode) function
|
/external/compiler-rt/SDKs/darwin/usr/include/ |
stdio.h | 27 /* Determine the appropriate fdopen, fopen(), and fwrite() functions. */ 76 FILE *fdopen(int, const char *) __asm(__FDOPEN_NAME);
|
/external/e2fsprogs/lib/ |
fpopen.c | 113 return fdopen(do_stdin ? fds[1] : fds[0], mode);
|
/external/oprofile/daemon/ |
opd_pipe.c | 69 fifo_fd = fdopen(fifo, "r");
|
/external/oprofile/libutil++/ |
bfd_spu_support.cpp | 93 FILE * fp = fdopen(fd, "r");
|
/bionic/libc/upstream-netbsd/lib/libc/gen/ |
popen.c | 160 /* Parent; assume fdopen can't fail. */ 162 iop = fdopen(pdes[0], xtype); 168 iop = fdopen(pdes[1], xtype);
|
/external/chromium_org/sandbox/linux/services/ |
libc_urandom_override.cc | 135 return fdopen(fd, mode); 151 return fdopen(fd, mode);
|
/external/openssl/crypto/rand/ |
randfile.c | 89 #define fdopen _fdopen macro 215 out = fdopen(fd, "wb");
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/ |
template.py | 64 html_file = os.fdopen(html_handle, 'w')
|
/external/e2fsprogs/lib/ss/ |
list_rqs.c | 52 output = fdopen(fd, "w");
|
/bionic/tests/ |
fcntl_test.cpp | 191 FILE* fp = fdopen(pipe_fds[0], "r"); 226 FILE* fp1 = fdopen(pipe1[0], "r"); 232 FILE* fp2 = fdopen(pipe2[0], "r");
|
/external/iproute2/misc/ |
nstat.c | 233 FILE *fp = fdopen(net_snmp_open(), "r"); 242 FILE *fp = fdopen(net_snmp6_open(), "r"); 251 FILE *fp = fdopen(net_netstat_open(), "r"); 407 FILE *fp = fdopen(clnt, "w"); 545 if ((hist_fp = fdopen(fd, "r+")) == NULL) { 546 perror("nstat: fdopen history file"); 586 FILE *sfp = fdopen(fd, "r");
|
/bootable/recovery/updater/ |
updater.c | 65 FILE* cmd_pipe = fdopen(fd, "wb");
|
/external/chromium-trace/trace-viewer/build/ |
generate_standalone_timeline_view.py | 54 return os.fdopen(os.dup(sys.stdout.fileno()), 'w')
|