Lines Matching refs:_Nonnull

62 extern FILE* _Nonnull stdin __INTRODUCED_IN(23);
63 extern FILE* _Nonnull stdout __INTRODUCED_IN(23);
64 extern FILE* _Nonnull stderr __INTRODUCED_IN(23);
106 void clearerr(FILE* _Nonnull __fp);
107 int fclose(FILE* _Nonnull __fp);
108 __wur int feof(FILE* _Nonnull __fp);
109 __wur int ferror(FILE* _Nonnull __fp);
111 __wur int fgetc(FILE* _Nonnull __fp);
112 char* _Nullable fgets(char* _Nonnull __buf, int __size, FILE* _Nonnull __fp);
113 int fprintf(FILE* _Nonnull __fp , const char* _Nonnull __fmt, ...) __printflike(2, 3);
114 int fputc(int __ch, FILE* _Nonnull __fp);
115 int fputs(const char* _Nonnull __s, FILE* _Nonnull __fp);
116 size_t fread(void* _Nonnull __buf, size_t __size, size_t __count, FILE* _Nonnull __fp);
117 int fscanf(FILE* _Nonnull __fp, const char* _Nonnull __fmt, ...) __scanflike(2, 3);
118 size_t fwrite(const void* _Nonnull __buf, size_t __size, size_t __count, FILE* _Nonnull __fp);
119 __wur int getc(FILE* _Nonnull __fp);
121 …ze_t getdelim(char* _Nullable * _Nonnull __line_ptr, size_t* _Nonnull __line_length_ptr, int __del…
122 ssize_t getline(char* _Nullable * _Nonnull __line_ptr, size_t* _Nonnull __line_length_ptr, FILE* _N…
125 int printf(const char* _Nonnull __fmt, ...) __printflike(1, 2);
126 int putc(int __ch, FILE* _Nonnull __fp);
128 int puts(const char* _Nonnull __s);
129 int remove(const char* _Nonnull __path);
130 void rewind(FILE* _Nonnull __fp);
131 int scanf(const char* _Nonnull __fmt, ...) __scanflike(1, 2);
132 void setbuf(FILE* _Nonnull __fp, char* _Nullable __buf);
133 int setvbuf(FILE* _Nonnull __fp, char* _Nullable __buf, int __mode, size_t __size);
134 int sscanf(const char* _Nonnull __s, const char* _Nonnull __fmt, ...) __scanflike(2, 3);
135 int ungetc(int __ch, FILE* _Nonnull __fp);
136 int vfprintf(FILE* _Nonnull __fp, const char* _Nonnull __fmt, va_list __args) __printflike(2, 0);
137 int vprintf(const char* _Nonnull __fp, va_list __args) __printflike(1, 0);
139 int dprintf(int __fd, const char* _Nonnull __fmt, ...) __printflike(2, 3);
140 int vdprintf(int __fd, const char* _Nonnull __fmt, va_list __args) __printflike(2, 0);
144 char* _Nullable gets(char* _Nonnull __buf) __attribute__((__deprecated__("gets is unsafe, use fgets…
146 int sprintf(char* __BIONIC_COMPLICATED_NULLNESS __s, const char* _Nonnull __fmt, ...)
148 int vsprintf(char* __BIONIC_COMPLICATED_NULLNESS __s, const char* _Nonnull __fmt, va_list __args)
162 int rename(const char* _Nonnull __old_path, const char* _Nonnull __new_path);
170 int renameat(int __old_dir_fd, const char* _Nonnull __old_path, int __new_dir_fd, const char* _Nonn…
199 int renameat2(int __old_dir_fd, const char* _Nonnull __old_path, int __new_dir_fd, const char* _Non…
203 int fseek(FILE* _Nonnull __fp, long __offset, int __whence);
204 __wur long ftell(FILE* _Nonnull __fp);
208 int fgetpos(FILE* _Nonnull __fp, fpos_t* _Nonnull __pos) __RENAME(fgetpos64) __INTRODUCED_IN(24);
209 int fsetpos(FILE* _Nonnull __fp, const fpos_t* _Nonnull __pos) __RENAME(fsetpos64) __INTRODUCED_IN(…
210 int fseeko(FILE* _Nonnull __fp, off_t __offset, int __whence) __RENAME(fseeko64) __INTRODUCED_IN(24…
211 __wur off_t ftello(FILE* _Nonnull __fp) __RENAME(ftello64) __INTRODUCED_IN(24);
215 int (* __BIONIC_COMPLICATED_NULLNESS __read_fn)(void* _Nonnull, char* _Nonnull, int),
216 … int (* __BIONIC_COMPLICATED_NULLNESS __write_fn)(void* _Nonnull, const char* _Nonnull, int),
217 fpos_t (* _Nullable __seek_fn)(void* _Nonnull, fpos_t, int),
218 int (* _Nullable __close_fn)(void* _Nonnull)) __RENAME(funopen64) __INTRODUCED_IN(24);
221 int fgetpos(FILE* _Nonnull __fp, fpos_t* _Nonnull __pos);
222 int fsetpos(FILE* _Nonnull __fp, const fpos_t* _Nonnull __pos);
223 int fseeko(FILE* _Nonnull __fp, off_t __offset, int __whence);
224 __wur off_t ftello(FILE* _Nonnull __fp);
228 int (* __BIONIC_COMPLICATED_NULLNESS __read_fn)(void* _Nonnull, char* _Nonnull, int),
229 … int (* __BIONIC_COMPLICATED_NULLNESS __write_fn)(void* _Nonnull, const char* _Nonnull, int),
230 fpos_t (* _Nullable __seek_fn)(void* _Nonnull, fpos_t, int),
231 int (* _Nullable __close_fn)(void* _Nonnull));
234 int fgetpos64(FILE* _Nonnull __fp, fpos64_t* _Nonnull __pos) __INTRODUCED_IN(24);
235 int fsetpos64(FILE* _Nonnull __fp, const fpos64_t* _Nonnull __pos) __INTRODUCED_IN(24);
236 int fseeko64(FILE* _Nonnull __fp, off64_t __offset, int __whence) __INTRODUCED_IN(24);
237 __wur off64_t ftello64(FILE* _Nonnull __fp) __INTRODUCED_IN(24);
241 … int (* __BIONIC_COMPLICATED_NULLNESS __read_fn)(void* _Nonnull, char* _Nonnull, int),
242 … int (* __BIONIC_COMPLICATED_NULLNESS __write_fn)(void* _Nonnull, const char* _Nonnull, int),
243 fpos64_t (* _Nullable __seek_fn)(void* _Nonnull, fpos64_t, int),
244 int (* _Nullable __close_fn)(void* _Nonnull)) __INTRODUCED_IN(24);
247 __wur FILE* _Nullable fopen(const char* _Nonnull __path, const char* _Nonnull __mode);
248 __wur FILE* _Nullable fopen64(const char* _Nonnull __path, const char* _Nonnull __mode) __INTRODUCE…
249 FILE* _Nullable freopen(const char* _Nullable __path, const char* _Nonnull __mode, FILE* _Nonnull _…
250 FILE* _Nullable freopen64(const char* _Nullable __path, const char* _Nonnull __mode, FILE* _Nonnull
254 int snprintf(char* __BIONIC_COMPLICATED_NULLNESS __buf, size_t __size, const char* _Nonnull __fmt, …
255 int vfscanf(FILE* _Nonnull __fp, const char* _Nonnull __fmt, va_list __args) __scanflike(2, 0);
256 int vscanf(const char* _Nonnull __fmt , va_list __args) __scanflike(1, 0);
257 int vsnprintf(char* __BIONIC_COMPLICATED_NULLNESS __buf, size_t __size, const char* _Nonnull __fmt,…
258 int vsscanf(const char* _Nonnull __s, const char* _Nonnull __fmt, va_list __args) __scanflike(2, 0);
261 char* _Nonnull ctermid(char* _Nullable __buf) __INTRODUCED_IN(26);
263 __wur FILE* _Nullable fdopen(int __fd, const char* _Nonnull __mode);
264 __wur int fileno(FILE* _Nonnull __fp);
265 int pclose(FILE* _Nonnull __fp);
266 __wur FILE* _Nullable popen(const char* _Nonnull __command, const char* _Nonnull __mode);
267 void flockfile(FILE* _Nonnull __fp);
268 int ftrylockfile(FILE* _Nonnull __fp);
269 void funlockfile(FILE* _Nonnull __fp);
270 __wur int getc_unlocked(FILE* _Nonnull __fp);
272 int putc_unlocked(int __ch, FILE* _Nonnull __fp);
275 __wur FILE* _Nullable fmemopen(void* _Nullable __buf, size_t __size, const char* _Nonnull __mode) _…
276 __wur FILE* _Nullable open_memstream(char* _Nonnull * _Nonnull __ptr, size_t* _Nonnull __size_ptr) …
279 int asprintf(char* _Nullable * _Nonnull __s_ptr, const char* _Nonnull __fmt, ...) __printflike(2, …
280 char* _Nullable fgetln(FILE* _Nonnull __fp, size_t* _Nonnull __length_ptr);
281 int fpurge(FILE* _Nonnull __fp);
282 void setbuffer(FILE* _Nonnull __fp, char* _Nullable __buf, int __size);
283 int setlinebuf(FILE* _Nonnull __fp);
284 int vasprintf(char* _Nullable * _Nonnull __s_ptr, const char* _Nonnull __fmt, va_list __args) __pri…
285 void clearerr_unlocked(FILE* _Nonnull __fp) __INTRODUCED_IN(23);
286 __wur int feof_unlocked(FILE* _Nonnull __fp) __INTRODUCED_IN(23);
287 __wur int ferror_unlocked(FILE* _Nonnull __fp) __INTRODUCED_IN(23);
288 __wur int fileno_unlocked(FILE* _Nonnull __fp) __INTRODUCED_IN(24);
295 __wur int fgetc_unlocked(FILE* _Nonnull __fp) __INTRODUCED_IN(28);
296 int fputc_unlocked(int __ch, FILE* _Nonnull __fp) __INTRODUCED_IN(28);
297 size_t fread_unlocked(void* _Nonnull __buf, size_t __size, size_t __count, FILE* _Nonnull __fp) __I…
298 size_t fwrite_unlocked(const void* _Nonnull __buf, size_t __size, size_t __count, FILE* _Nonnull __…
302 int fputs_unlocked(const char* _Nonnull __s, FILE* _Nonnull __fp) __INTRODUCED_IN(28);
303 char* _Nullable fgets_unlocked(char* _Nonnull __buf, int __size, FILE* _Nonnull __fp) __INTRODUCED_…