Searched refs:FILE (Results 126 - 150 of 266) sorted by relevance

1234567891011

/haiku/src/bin/
H A Dunchop.c177 FILE *fp = fopen(tmp, "w");
H A Dmodifiers.cpp43 FILE *outstr;
H A Dbadblocks.cpp16 FILE *outputFile = NULL;
/haiku/src/tools/
H A Dgenerate_boot_screen.cpp33 FILE* sOutput = NULL;
62 ZlibCompressor(FILE* output);
68 FILE* fOutput;
73 ZlibCompressor::ZlibCompressor(FILE* output)
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fphex.c36 int __printf_fphex (FILE *fp, const struct printf_info *info,
51 # define FILE _IO_FILE macro
55 ssize_t __printf_pad __P ((FILE *, char pad, int n)); /* In vfprintf.c. */
177 __printf_fphex (FILE *fp,
/haiku/src/system/boot/platform/riscv/
H A Dconsole.cpp48 FILE *stdin, *stdout, *stderr;
249 stdin = (FILE *)&sConsole;
250 stdout = stderr = (FILE *)&sConsole;
/haiku/src/system/boot/platform/efi/
H A Dconsole.cpp58 FILE *stdin, *stdout, *stderr;
235 stdin = (FILE *)gConsoleNode;
236 stdout = stderr = (FILE *)gConsoleNode;
/haiku/src/system/boot/platform/openfirmware/
H A Dconsole.cpp55 FILE *stdin, *stdout, *stderr;
195 stdin = (FILE *)gConsoleNode;
196 stdout = stderr = (FILE *)gConsoleNode;
/haiku/src/bin/unzip/
H A Dcrypt.c175 FILE *zfile; /* where to write header */
217 FILE *source, *dest; /* source and destination files */
268 FILE *source, *dest; /* source and destination files */
356 FILE *f; /* file to write to */
H A Dcryptf.c178 FILE *zfile; /* where to write header */
220 FILE *source, *dest; /* source and destination files */
271 FILE *source, *dest; /* source and destination files */
359 FILE *f; /* file to write to */
H A Dfunzip.c179 FILE *out; /* output file (*in moved to G struct) */
361 if ((G.in = fopen(*argv, FOPR)) == (FILE *)NULL)
377 if ((G.in = fdopen(0, FOPR)) == (FILE *)NULL)
393 if ((out = fdopen(1, FOPW)) == (FILE *)NULL)
/haiku/src/kits/storage/
H A DFileIO.cpp13 BFileIO::BFileIO(FILE* file, bool takeOverOwnership)
/haiku/src/system/boot/platform/amiga_m68k/
H A Dconsole.cpp121 FILE *stdin, *stdout, *stderr, *dbgerr;
691 dbgerr = stderr = (FILE *)&sDebugOutput;
698 stdout = (FILE *)&sOutput;
731 stdin = (FILE *)&sInput;
/haiku/src/tests/servers/app/benchmark/
H A DBenchmark.cpp105 FILE* out = (error ? stderr : stdout);
/haiku/src/tests/system/libroot/posix/
H A Dtst-fgetws.c18 FILE *fp;
H A Dtst-wprintf2.c21 FILE *fp;
/haiku/src/tests/add-ons/kernel/debugger/
H A Dc++filt.cpp28 static void print_help(FILE* out)
/haiku/headers/compatibility/bsd/
H A Dlibutil.h107 char *fparseln(FILE *, size_t *, size_t *, const char[3], int);
/haiku/src/tests/add-ons/print/pcl6/
H A Ddisasm.h58 FILE* fFile;
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetnetent.c71 static FILE *netf;
/haiku/src/system/libnetwork/netresolv/dst/
H A Ddst_internal.h140 FILE *dst_s_fopen (const char *filename, const char *mode, int perm);
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/platform/
H A Dacenv.h506 #define ACPI_FILE FILE *
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgmp.h167 #if defined (FILE) || defined (_STDIO_H_) || defined (__STDIO_H__) || defined (H_STDIO)
222 size_t mpz_inp_binary _PROTO ((mpz_ptr, FILE *));
223 size_t mpz_inp_raw _PROTO ((mpz_ptr, FILE *));
224 size_t mpz_inp_str _PROTO ((mpz_ptr, FILE *, int));
241 size_t mpz_out_binary _PROTO ((FILE *, mpz_srcptr));
242 size_t mpz_out_raw _PROTO ((FILE *, mpz_srcptr));
243 size_t mpz_out_str _PROTO ((FILE *, int, mpz_srcptr));
318 size_t mpf_inp_str _PROTO ((mpf_ptr, FILE *, int));
330 size_t mpf_out_str _PROTO ((FILE *, int, size_t, mpf_srcptr));
/haiku/src/bin/network/ftpd/
H A Dftpd.c256 static FILE *dataconn(char *, off_t, char *);
259 static FILE *getdatasock(char *);
263 static int receive_data(FILE *, FILE *);
264 static int send_data(FILE *, FILE *, size_t, off_t, int);
281 FILE *fd;
678 FILE *fp;
1108 FILE *fd;
1379 FILE *f
[all...]
/haiku/src/system/libroot/posix/glibc/libio/
H A DlibioP.h71 * The _IO_FILE type is used to implement the FILE type in GNU libc,
74 * An _IO_FILE (or FILE) object is allows followed by a pointer to
947 # define COERCE_FILE(FILE) /* Nothing */
950 # define COERCE_FILE(FILE) \
951 (((FILE)->_IO_file_flags & _IO_MAGIC_MASK) == _OLD_MAGIC_MASK \
952 && (FILE) = *(FILE**)&((int*)fp)[1])
962 # define CHECK_FILE(FILE, RET) \
963 if ((FILE) == NULL) { MAYBE_SET_EINVAL; return RET; } \
964 else { COERCE_FILE(FILE); \
[all...]

Completed in 163 milliseconds

1234567891011