Searched refs:FILE (Results 1 – 5 of 5) sorted by relevance
| /release/ |
| D | bootdisk.manifest | 3 FILE kernel build/sys/castor 8 FILE cat build/bin/cat/cat 9 FILE date build/bin/date/date 10 FILE echo build/bin/echo/echo 11 FILE false build/bin/false/false 12 FILE ls build/bin/ls/ls 13 FILE shell build/bin/shell/shell 14 FILE stat build/bin/stat/stat 15 FILE true build/bin/true/true 18 FILE ethdump build/bin/ethdump/ethdump [all …]
|
| /include/ |
| D | stdio.h | 8 typedef struct FILE { struct 12 } FILE; argument 20 extern FILE *stdin; 21 extern FILE *stdout; 22 extern FILE *stderr; 26 FILE *fopen(const char *path, const char *mode); 27 int fclose(FILE *fh); 28 int feof(FILE *fh); 29 int fflush(FILE *fh); 30 size_t fread(void *buf, size_t size, size_t nmemb, FILE *fh); [all …]
|
| /lib/libc/ |
| D | file.c | 11 static FILE __stdin = { 1, STDIN_FILENO, 0 }; 12 static FILE __stdout = { 1, STDOUT_FILENO, 0 }; 13 static FILE __stderr = { 1, STDERR_FILENO, 0 }; 15 FILE *stdin = &__stdin; 16 FILE *stdout = &__stdout; 17 FILE *stderr = &__stderr; 19 static FILE fds[FOPEN_MAX] = { 38 FILE * 56 _free_file(FILE *fh) in _free_file() 65 FILE * [all …]
|
| D | printf.c | 209 fputc(c, (FILE *)handle); in fileputc() 224 int fprintf(FILE *stream, const char *fmt, ...) in fprintf()
|
| /lib/liblwip/src/netif/ppp/ |
| D | auth.c | 216 static int scan_authfile (FILE *, char *, char *, char *, 227 static void check_access (FILE *, char *); 289 FILE * ufile; 1232 check_access(FILE *f, char *filename) 1258 scan_authfile(FILE *f, char *client, char *server, char *secret, struct wordlist **addrs, struct wo…
|