fdopen
extern FILE *fdopen(int fd, const char *mode);
fOutputFile = fdopen(fStdOut, "r");
FileCloser attrFile(fdopen(attrFD, "r"));
fExpanderError = fdopen(fStdErr, "r");
fExpanderOutput = fdopen(fStdOut, "r");
fp = fdopen( hc->conn_fd, "w" );
FILE* output = fdopen(out, "r");
FILE* errors = fdopen(err, "r");
fout = fdopen(fd, mode);
return (fdopen(data, mode));
return (fdopen(s, mode));
return (fdopen(pdata, mode));
return (fdopen(data, mode));
iop = fdopen(pdes[0], type);
iop = fdopen(pdes[1], type);
f = fdopen(s, "r+");
*_out = fdopen(fStdOut[0], "r");
*_err = fdopen(fStdErr[0], "r");
*_outAndErr = fdopen(fStdOut[0], "r");
fp = fdopen(fd, encoding ? "w" : "r");
return fdopen(fd, mode);
state_f = fdopen(state_fd, "r+");
versioned_symbol (libc, __new_fdopen, fdopen, GLIBC_2_1);
extern FILE *fdopen (int __fd, const char *__modes) __THROW __wur;
|| (fp = fdopen (fd, "w+")) == NULL)
if ((fp = fdopen(fd, "w+")) == NULL) {
fp = fdopen(fd, "w+");
FILE *cOut = fdopen(out[readIdx], "r");
FILE *cErr = fdopen(err[readIdx], "r");
if ((fp = fdopen(fd, "w")) == NULL) {
if ((fp = fdopen(fd, "w")) == NULL) {
if ((fp = fdopen(fd, "w")) == NULL) {
if ((fp = fdopen(fd, "w")) == NULL) {
fp = fdopen(dup(fd), "w");
fp = fdopen(dup (fd), "a");
fp = fdopen(fd, "r");
static FILE* sInput = fdopen(3, "r");
static FILE* sOutput = fdopen(4, "w");
FILE* out = fdopen(4, "w");
FILE* in = fdopen(3, "r");