Lines Matching defs:__sFILE
124 struct __sFILE { struct
125 unsigned char *_p; /* (*) current position in (some) buffer */
126 int _r; /* (*) read space left for getc() */
127 int _w; /* (*) write space left for putc() */
128 short _flags; /* (*) flags, below; this FILE is free if 0 */
129 short _file; /* (*) fileno, if Unix descriptor, else -1 */
130 struct __sbuf _bf; /* (*) the buffer (at least 1 byte, if !NULL) */
131 int _lbfsize; /* (*) 0 or -_bf._size, for inline putc */
134 void *_cookie; /* (*) cookie passed to io functions */
135 int (* _Nullable _close)(void *);
136 int (* _Nullable _read)(void *, char *, int);
137 fpos_t (* _Nullable _seek)(void *, fpos_t, int);
138 int (* _Nullable _write)(void *, const char *, int);
141 struct __sbuf _ub; /* ungetc buffer */
165 typedef struct __sFILE FILE; argument