Searched refs:FILE (Results 1 - 25 of 266) sorted by relevance

1234567891011

/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dstdio_ext.h1 /* Functions to access FILE structure internals.
47 extern size_t __fbufsize (FILE *__fp);
52 extern int __freading (FILE *__fp);
57 extern int __fwriting (FILE *__fp);
62 extern int __freadable (FILE *__fp);
65 extern int __fwritable (FILE *__fp);
69 extern int __flbf (FILE *__fp);
73 extern void __fpurge (FILE *__fp);
76 extern size_t __fpending (FILE *__fp);
83 extern int __fsetlocking (FILE *__f
[all...]
H A Dgetw.c25 getw(FILE *stream)
H A Dgetline.c22 ssize_t __getline(char **lineptr, size_t *n, FILE *stream);
27 __getline(char **lineptr, size_t *n, FILE *stream)
/haiku/headers/private/kernel/boot/
H A Dstdio.h17 typedef struct FILE FILE; typedef in typeref:struct:FILE
18 // dummy definition of FILE
21 extern FILE *stdin;
22 extern FILE *stdout;
23 extern FILE *stderr;
42 extern int fprintf(FILE *stream, char const *format, ...) __PRINTFLIKE(2,3);
47 extern int vfprintf(FILE *stream, char const *format, va_list ap);
53 extern void clearerr(FILE *stream);
54 extern int fclose(FILE *strea
[all...]
/haiku/headers/posix/
H A Dstdio_ext.h20 /* extern size_t __fufsize(FILE* stream); */
21 extern int __freading(FILE* stream);
22 /* extern int __fwriting(FILE* stream); */
23 /* extern int __freadable(FILE* stream); */
24 /* extern int __fwritable(FILE* stream); */
25 /* extern int __flbf(FILE* stream); */
26 extern void __fpurge(FILE* stream);
27 /* extern size_t __fpending(FILE* stream); */
30 extern int __fsetlocking(FILE* stream, int type);
H A Dstdio.h59 extern FILE *stdin;
60 extern FILE *stdout;
61 extern FILE *stderr;
69 extern FILE *fopen(const char *name, const char *mode);
70 extern FILE *freopen(const char *name, const char *mode, FILE *stream);
71 extern FILE *fdopen(int fd, const char *mode);
72 extern int fclose(FILE *stream);
77 extern int fileno(FILE *stream);
78 extern int fileno_unlocked(FILE *strea
[all...]
/haiku/src/system/libroot/posix/glibc/libio/
H A Dclearerr_u.c24 FILE *fp;
H A Dgetc_u.c33 int __getc_unlocked(FILE *fp);
36 __getc_unlocked (FILE *fp)
H A Dstdio.h41 #endif /* Don't need FILE. */
48 typedef struct _IO_FILE FILE; typedef in typeref:struct:_IO_FILE
53 __USING_NAMESPACE_STD(FILE)
57 #endif /* FILE not defined. */
173 extern FILE *tmpfile (void) __THROW;
176 extern FILE *__REDIRECT (tmpfile, (void) __THROW, tmpfile64);
187 extern FILE *tmpfile64 (void) __THROW;
212 extern int fclose (FILE *__stream) __THROW;
214 extern int fflush (FILE *__stream) __THROW;
219 extern int fflush_unlocked (FILE *__strea
[all...]
H A Dclearerr.c24 FILE *fp;
H A Dgetwc_u.c34 __getwc_unlocked (FILE *fp)
H A Dfreopen64.c35 FILE *
39 FILE *fp;
42 FILE *result;
H A Dstdio.c34 _IO_FILE *stdin = (FILE *) &_IO_2_1_stdin_;
35 _IO_FILE *stdout = (FILE *) &_IO_2_1_stdout_;
36 _IO_FILE *stderr = (FILE *) &_IO_2_1_stderr_;
H A Dfreopen.c33 FILE*
37 FILE* fp;
39 FILE *result;
67 FILE*
71 FILE* fp;
73 FILE *result;
/haiku/src/tools/fs_shell/
H A Dexternal_commands_unix.cpp14 static FILE*
17 static FILE* sInput = fdopen(3, "r");
22 static FILE*
25 static FILE* sOutput = fdopen(4, "w");
34 FILE* in = get_input();
57 FILE* out = get_output();
/haiku/src/system/libroot/posix/stdio/
H A D_fseek.c9 _fseek(FILE *stream, fpos_t offset, int seekType)
H A Dfpurge.cpp12 fpurge(FILE* stream)
29 __fpurge(FILE* stream)
H A D__freading.cpp11 __freading(FILE* stream)
/haiku/src/bin/pcmcia-cs/
H A Dpack_cis.h38 void parse_cis(FILE *f);
/haiku/src/system/libroot/posix/glibc/include/
H A Dstdio_ext.h5 extern int __fsetlocking_internal (FILE *__fp, int __type) attribute_hidden;
/haiku/src/bin/keymap/
H A DKeymap.h32 status_t LoadSource(FILE* file);
36 status_t SaveAsSource(FILE* file);
49 void _SaveSourceText(FILE* file,
52 void _SaveSourceText(FILE* file);
/haiku/headers/cpp/
H A Dstdiostream.h40 FILE *_file;
42 FILE* stdiofile() const { return _file; }
43 stdiobuf(FILE *);
61 istdiostream (FILE* __f) : istream(), _file(__f) { init(&_file); }
72 ostdiostream (FILE* __f) : ostream(), _file(__f) { init(&_file); }
/haiku/headers/private/shared/
H A DCommandPipe.h50 // allocation for these FILE* pointers, just use FILE* out = NULL
52 thread_id PipeInto(FILE** _out, FILE** _err);
53 thread_id PipeInto(FILE** _outAndErr);
75 status_t ReadLines(FILE* file, LineReader* lineReader);
77 BString ReadLines(FILE* file);
/haiku/src/bin/network/ftpd/
H A Dextern.h47 int ftpd_pclose(FILE *);
48 FILE *ftpd_popen(char *, char *);
49 int *ftpd_getline(char *, int, FILE *);
/haiku/src/bin/unzip/
H A Dcrypt.h146 void crypthead OF((ZCONST char *, ulg, FILE *));
148 int zipcloak OF((struct zlist far *, FILE *, FILE *, ZCONST char *));
149 int zipbare OF((struct zlist far *, FILE *, FILE *, ZCONST char *));
151 unsigned zfwrite OF((zvoid *, extent, extent, FILE *));

Completed in 268 milliseconds

1234567891011