Searched refs:FILE (Results 1 – 6 of 6) sorted by relevance
| /lib/libc/include/ |
| A D | stdio.h | 27 typedef struct FILE { struct 37 } FILE; argument 39 extern FILE __stdio_FILEs[]; 48 int fclose(FILE *stream); 51 int fflush(FILE *stream); 52 int feof(FILE *stream); 59 long ftell(FILE *stream); 61 int fputc(int c, FILE *fp); 65 int fputs(const char *s, FILE *fp); 68 int fgetc(FILE *fp); [all …]
|
| /lib/libc/ |
| A D | stdio.c | 31 FILE __stdio_FILEs[3] = { 40 FILE *stream = (FILE *) malloc(sizeof(FILE)); in fopen() 74 int fclose(FILE *stream) { in fclose() 158 int fflush(FILE *stream) { in fflush() 162 int feof(FILE *stream) { in feof() 208 long ftell(FILE *stream) { in ftell() 218 int fputc(int _c, FILE *fp) { in fputc() 240 int fputs(const char *s, FILE *fp) { in fputs() 253 int fgetc(FILE *fp) { in fgetc() 267 char *fgets(char *s, int size, FILE *stream) { in fgets() [all …]
|
| A D | printf.c | 96 int vfprintf(FILE *fp, const char *fmt, va_list ap) { in vfprintf() 100 int fprintf(FILE *fp, const char *fmt, ...) { in fprintf()
|
| /lib/debug/ |
| A D | debug.c | 76 FILE *get_panic_fd(void) { in get_panic_fd() 85 static FILE panic_fd = { in get_panic_fd()
|
| /lib/fs/test/ |
| A D | test.c | 76 FILE *stream = fopen(TEST_FILE, "w"); in test_stdio_fs()
|
| /lib/console/ |
| A D | console.c | 887 static void read_line_panic(char *buffer, const size_t len, FILE *panic_fd) { in read_line_panic() 929 FILE *panic_fd = get_panic_fd(); in panic_shell_start()
|
Completed in 19 milliseconds