/picolibc-3.7.0-3.6.0/dummyhost/ |
D | iob.c | 46 dummy_putc(char c, FILE *file) in dummy_putc() argument 49 (void) file; in dummy_putc() 54 dummy_getc(FILE *file) in dummy_getc() argument 56 (void) file; in dummy_getc() 61 dummy_flush(FILE *file) in dummy_flush() argument 63 (void) file; in dummy_flush()
|
/picolibc-3.7.0-3.6.0/newlib/libc/stdio/ |
D | fputc.c | 93 FILE * file) in fputc() argument 96 CHECK_INIT(ptr, file); in fputc() 97 _newlib_flockfile_start (file); in fputc() 98 result = putc ( ch, file); in fputc() 99 _newlib_flockfile_end (file); in fputc()
|
D | stdio.tex | 18 @chapter Input and Output (@file{stdio.h}) 27 The corresponding declarations are in @file{stdio.h}. 43 * clearerr:: Clear file or stream error indicator 44 * diprintf:: Print to a file descriptor (integer only) 45 * dprintf:: Print to a file descriptor 46 * fclose:: Close a file 48 * fdopen:: Turn an open file into a stream 49 * feof:: Test for end of file 51 * fflush:: Flush buffered file output 52 * fgetc:: Get a character from a file or stream [all …]
|
D | fputc_u.c | 35 FILE * file) in fputc_unlocked() argument 37 CHECK_INIT(ptr, file); in fputc_unlocked() 38 return putc_unlocked ( ch, file); in fputc_unlocked()
|
/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/ |
D | fdevopen.c | 103 cf->file.flags = __SCLOSE; in fdevopen() 107 cf->file.get = get; in fdevopen() 108 cf->file.flags |= __SRD; in fdevopen() 112 cf->file.put = put; in fdevopen() 113 cf->file.flush = flush; in fdevopen() 114 cf->file.flags |= __SWR; in fdevopen()
|
D | fileno.c | 39 fileno(FILE *file) in fileno() argument 41 if (file->flags & __SBUF) { in fileno() 42 struct __file_bufio *pf = (struct __file_bufio *) file; in fileno()
|
D | fdopen.c | 62 __bufio_lock_init(&(bf->xfile.cfile.file)); in fdopen() 65 (void) fseeko(&(bf->xfile.cfile.file), 0, SEEK_END); in fdopen() 67 return &(bf->xfile.cfile.file); in fdopen()
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/ |
D | assert.c | 14 __assert_func (const char *file, in __assert_func() argument 21 failedexpr, file, line, in __assert_func() 34 __assert (const char *file, in __assert() argument 38 __assert_func (file, line, NULL, failedexpr); in __assert()
|
D | freopen.c | 40 const char *file; member 50 freopen (const char *__restrict file, in freopen() argument 59 args.file = file; in freopen()
|
D | fopen.c | 40 const char* file; member 48 fopen (const char *__restrict file, in fopen() argument 63 args.file = file; in fopen()
|
/picolibc-3.7.0-3.6.0/newlib/libc/stdio64/ |
D | stdio64.tex | 18 @chapter Large File Input and Output (@file{stdio.h}) 26 The corresponding declarations are in @file{stdio.h}. 29 * fdopen64:: Turn open large file into a stream 30 * fopen64:: Open a large file 31 * freopen64:: Open a large file using an existing file descriptor 32 * fsetpos64:: Restore position of a large stream or file 33 * fgetpos64:: Get position of a large stream or file 34 * ftello64:: Return position in a large stream or file 35 * fseeko64:: Set large file position 36 * tmpfile64:: Create a temporary large file
|
/picolibc-3.7.0-3.6.0/semihost/fake/ |
D | fake_io.c | 41 fake_putc(char c, FILE *file) in fake_putc() argument 43 (void) file; in fake_putc() 49 fake_getc(FILE *file) in fake_getc() argument 51 (void) file; in fake_getc()
|
/picolibc-3.7.0-3.6.0/semihost/machine/x86/ |
D | e9_io.c | 41 e9_putc(char c, FILE *file) in e9_putc() argument 43 (void) file; in e9_putc() 49 e9_getc(FILE *file) in e9_getc() argument 51 (void) file; in e9_getc()
|
/picolibc-3.7.0-3.6.0/semihost/machine/powerpc/ |
D | powerpc_io.c | 43 powerpc_putc(char c, FILE *file) in powerpc_putc() argument 46 (void) file; in powerpc_putc() 51 powerpc_getc(FILE *file) in powerpc_getc() argument 53 (void) file; in powerpc_getc()
|
/picolibc-3.7.0-3.6.0/semihost/machine/msp430/ |
D | msp430-iob.c | 42 msp430_putc(char c, FILE *file) in msp430_putc() argument 44 (void) file; in msp430_putc() 52 msp430_getc(FILE *file) in msp430_getc() argument 54 (void) file; in msp430_getc()
|
/picolibc-3.7.0-3.6.0/semihost/machine/sh/ |
D | sh_io.c | 42 sh_putc(char c, FILE *file) in sh_putc() argument 44 (void) file; in sh_putc() 54 sh_getc(FILE *file) in sh_getc() argument 56 (void) file; in sh_getc()
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/nvptx/ |
D | assert.c | 23 __assert_func (const char *file, in __assert_func() argument 34 __assert (const char *file, in __assert() argument 38 __assert_func (file, line, NULL, failedexpr); in __assert()
|
/picolibc-3.7.0-3.6.0/.github/ |
D | Dockerfile-zephyr | 20 for file in `cat /zephyr-files.txt`; do \ 21 echo "Fetching $file"; \ 22 wget "$file" || exit 1; \ 23 echo "Unpacking $file"; \ 24 tar xf `basename "$file"`; \ 25 echo "Removing $file"; \ 26 rm `basename "$file"`; \
|
/picolibc-3.7.0-3.6.0/newlib/doc/ |
D | makedocbook.py | 41 print('*' * 40, file=sys.stderr) 42 print(stage, file=sys.stderr) 43 print('*' * 40, file=sys.stderr) 44 print('%s' % s, file=sys.stderr) 45 print('*' * 40, file=sys.stderr) 152 print("performing command '%s'" % c, file=sys.stderr) 157 print("command '%s' is not recognized" % c, file=sys.stderr) 168 print('FUNCTION %s' % l, file=sys.stderr) 209 print(namelist, file=sys.stderr) 256 print('INDEX %s' % l, file=sys.stderr) [all …]
|
/picolibc-3.7.0-3.6.0/semihost/machine/sparc/ |
D | sparc_iob.c | 90 sparc_putc(char c, FILE *file) in sparc_putc() argument 92 (void) file; in sparc_putc() 103 sparc_getc(FILE *file) in sparc_getc() argument 105 (void) file; in sparc_getc()
|
/picolibc-3.7.0-3.6.0/semihost/machine/mips/ |
D | mips_iob.c | 95 mips_putc(char c, FILE *file) in mips_putc() argument 97 (void) file; in mips_putc() 107 mips_getc(FILE *file) in mips_getc() argument 109 (void) file; in mips_getc()
|
/picolibc-3.7.0-3.6.0/newlib/libc/ |
D | sys.tex | 38 definition for @code{errno} in the header file @file{errno.h}, as part 46 them using the @code{errno} macro from @file{errno.h}). 49 interfaces. You must include @file{errno.h}, then disable the macro, 68 Close a file. Minimal implementation: 71 int close(int file) @{ 113 Status of an open file. For consistency with other minimal 115 special devices. The @file{sys/stat.h} header file required is 116 distributed in the @file{include} subdirectory for this C library. 120 int fstat(int file, struct stat *st) @{ 143 int isatty(int file) @{ [all …]
|
/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/ |
D | assert.c | 56 const char *file, in __assert() argument 59 __assert_func (file, line, NULL, failedexpr); in __assert()
|
/picolibc-3.7.0-3.6.0/semihost/ |
D | sys_getc.c | 39 sys_semihost_getc(FILE *file) in sys_semihost_getc() argument 41 (void) file; in sys_semihost_getc()
|
D | sys_putc.c | 39 sys_semihost_putc(char c, FILE *file) in sys_semihost_putc() argument 41 (void) file; in sys_semihost_putc()
|