• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/

Lines Matching defs:FILE

51 typedef __FILE FILE;
171 extern FILE *__aeabi_stdin;
172 extern FILE *__aeabi_stdout;
173 extern FILE *__aeabi_stderr;
199 FILE * _EXFUN(tmpfile, (void));
201 int _EXFUN(fclose, (FILE *));
202 int _EXFUN(fflush, (FILE *));
203 FILE * _EXFUN(freopen, (const char *, const char *, FILE *));
204 void _EXFUN(setbuf, (FILE *, char *));
205 int _EXFUN(setvbuf, (FILE *, char *, int, size_t));
206 int _EXFUN(fprintf, (FILE *, const char *, ...)
208 int _EXFUN(fscanf, (FILE *, const char *, ...)
216 int _EXFUN(vfprintf, (FILE *, const char *, __VALIST)
222 int _EXFUN(fgetc, (FILE *));
223 char * _EXFUN(fgets, (char *, int, FILE *));
224 int _EXFUN(fputc, (int, FILE *));
225 int _EXFUN(fputs, (const char *, FILE *));
226 int _EXFUN(getc, (FILE *));
229 int _EXFUN(putc, (int, FILE *));
232 int _EXFUN(ungetc, (int, FILE *));
233 size_t _EXFUN(fread, (_PTR, size_t _size, size_t _n, FILE *));
234 size_t _EXFUN(fwrite, (const _PTR , size_t _size, size_t _n, FILE *));
237 int _EXFUN(fgetpos, (FILE *, _fpos_t *));
238 int _EXFUN(fsetpos, (FILE *, const _fpos_t *));
240 int _EXFUN(fgetpos, (FILE *, fpos_t *));
241 int _EXFUN(fsetpos, (FILE *, const fpos_t *));
244 int _EXFUN(fseek, (FILE *, long, int));
245 long _EXFUN(ftell, ( FILE *));
246 void _EXFUN(rewind, (FILE *));
247 void _EXFUN(clearerr, (FILE *));
248 int _EXFUN(feof, (FILE *));
249 int _EXFUN(ferror, (FILE *));
252 FILE * _EXFUN(fopen, (const char *_name, const char *_type));
264 int _EXFUN(fseeko, (FILE *, _off_t, int));
265 _off_t _EXFUN(ftello, ( FILE *));
267 int _EXFUN(fseeko, (FILE *, off_t, int));
268 off_t _EXFUN(ftello, ( FILE *));
287 int _EXFUN(fiprintf, (FILE *, const char *, ...)
289 int _EXFUN(fiscanf, (FILE *, const char *, ...)
314 int _EXFUN(vfiprintf, (FILE *, const char *, __VALIST)
316 int _EXFUN(vfiscanf, (FILE *, const char *, __VALIST)
318 int _EXFUN(vfscanf, (FILE *, const char *, __VALIST)
345 FILE * _EXFUN(fdopen, (int, const char *));
347 int _EXFUN(fileno, (FILE *));
348 int _EXFUN(getw, (FILE *));
349 int _EXFUN(pclose, (FILE *));
350 FILE * _EXFUN(popen, (const char *, const char *));
351 int _EXFUN(putw, (int, FILE *));
352 void _EXFUN(setbuffer, (FILE *, char *, int));
353 int _EXFUN(setlinebuf, (FILE *));
354 int _EXFUN(getc_unlocked, (FILE *));
356 void _EXFUN(flockfile, (FILE *));
357 int _EXFUN(ftrylockfile, (FILE *));
358 void _EXFUN(funlockfile, (FILE *));
359 int _EXFUN(putc_unlocked, (int, FILE *));
373 FILE * _EXFUN(fmemopen, (void *, size_t, const char *));
376 FILE * _EXFUN(open_memstream, (char **, size_t *));
401 int _EXFUN(_fclose_r, (struct _reent *, FILE *));
403 FILE * _EXFUN(_fdopen_r, (struct _reent *, int, const char *));
404 int _EXFUN(_fflush_r, (struct _reent *, FILE *));
405 int _EXFUN(_fgetc_r, (struct _reent *, FILE *));
406 char * _EXFUN(_fgets_r, (struct _reent *, char *, int, FILE *));
408 int _EXFUN(_fgetpos_r, (struct _reent *, FILE *, _fpos_t *));
409 int _EXFUN(_fsetpos_r, (struct _reent *, FILE *, const _fpos_t *));
411 int _EXFUN(_fgetpos_r, (struct _reent *, FILE *, fpos_t *));
412 int _EXFUN(_fsetpos_r, (struct _reent *, FILE *, const fpos_t *));
414 int _EXFUN(_fiprintf_r, (struct _reent *, FILE *, const char *, ...)
416 int _EXFUN(_fiscanf_r, (struct _reent *, FILE *, const char *, ...)
418 FILE * _EXFUN(_fmemopen_r, (struct _reent *, void *, size_t, const char *));
419 FILE * _EXFUN(_fopen_r, (struct _reent *, const char *, const char *));
420 FILE * _EXFUN(_freopen_r, (struct _reent *, const char *, const char *, FILE *));
421 int _EXFUN(_fprintf_r, (struct _reent *, FILE *, const char *, ...)
423 int _EXFUN(_fpurge_r, (struct _reent *, FILE *));
424 int _EXFUN(_fputc_r, (struct _reent *, int, FILE *));
425 int _EXFUN(_fputs_r, (struct _reent *, const char *, FILE *));
426 size_t _EXFUN(_fread_r, (struct _reent *, _PTR, size_t _size, size_t _n, FILE *));
427 int _EXFUN(_fscanf_r, (struct _reent *, FILE *, const char *, ...)
429 int _EXFUN(_fseek_r, (struct _reent *, FILE *, long, int));
430 int _EXFUN(_fseeko_r,(struct _reent *, FILE *, _off_t, int));
431 long _EXFUN(_ftell_r, (struct _reent *, FILE *));
432 _off_t _EXFUN(_ftello_r,(struct _reent *, FILE *));
433 void _EXFUN(_rewind_r, (struct _reent *, FILE *));
434 size_t _EXFUN(_fwrite_r, (struct _reent *, const _PTR , size_t _size, size_t _n, FILE *));
435 int _EXFUN(_getc_r, (struct _reent *, FILE *));
436 int _EXFUN(_getc_unlocked_r, (struct _reent *, FILE *));
444 FILE * _EXFUN(_open_memstream_r, (struct _reent *, char **, size_t *));
448 int _EXFUN(_putc_r, (struct _reent *, int, FILE *));
449 int _EXFUN(_putc_unlocked_r, (struct _reent *, int, FILE *));
471 FILE * _EXFUN(_tmpfile_r, (struct _reent *));
473 int _EXFUN(_ungetc_r, (struct _reent *, int, FILE *));
486 int _EXFUN(_vfiprintf_r, (struct _reent *, FILE *, const char *, __VALIST)
488 int _EXFUN(_vfiscanf_r, (struct _reent *, FILE *, const char *, __VALIST)
490 int _EXFUN(_vfprintf_r, (struct _reent *, FILE *, const char *, __VALIST)
492 int _EXFUN(_vfscanf_r, (struct _reent *, FILE *, const char *, __VALIST)
517 int _EXFUN(fpurge, (FILE *));
518 ssize_t _EXFUN(__getdelim, (char **, size_t *, int, FILE *));
519 ssize_t _EXFUN(__getline, (char **, size_t *, FILE *));
523 FILE * _EXFUN(fdopen64, (int, const char *));
524 FILE * _EXFUN(fopen64, (const char *, const char *));
525 FILE * _EXFUN(freopen64, (_CONST char *, _CONST char *, FILE *));
526 _off64_t _EXFUN(ftello64, (FILE *));
527 _off64_t _EXFUN(fseeko64, (FILE *, _off64_t, int));
528 int _EXFUN(fgetpos64, (FILE *, _fpos64_t *));
529 int _EXFUN(fsetpos64, (FILE *, const _fpos64_t *));
530 FILE * _EXFUN(tmpfile64, (void));
532 FILE * _EXFUN(_fdopen64_r, (struct _reent *, int, const char *));
533 FILE * _EXFUN(_fopen64_r, (struct _reent *,const char *, const char *));
534 FILE * _EXFUN(_freopen64_r, (struct _reent *, _CONST char *, _CONST char *, FILE *));
535 _off64_t _EXFUN(_ftello64_r, (struct _reent *, FILE *));
536 _off64_t _EXFUN(_fseeko64_r, (struct _reent *, FILE *, _off64_t, int));
537 int _EXFUN(_fgetpos64_r, (struct _reent *, FILE *, _fpos64_t *));
538 int _EXFUN(_fsetpos64_r, (struct _reent *, FILE *, const _fpos64_t *));
539 FILE * _EXFUN(_tmpfile64_r, (struct _reent *));
547 int _EXFUN(__srget_r, (struct _reent *, FILE *));
548 int _EXFUN(__swbuf_r, (struct _reent *, int, FILE *));
556 FILE *_EXFUN(funopen,(const _PTR __cookie,
561 FILE *_EXFUN(_funopen_r,(struct _reent *, const _PTR __cookie,
567 FILE *_EXFUN(funopen,(const _PTR __cookie,
572 FILE *_EXFUN(_funopen_r,(struct _reent *, const _PTR __cookie,
603 FILE *_EXFUN(fopencookie,(void *__cookie,
605 FILE *_EXFUN(_fopencookie_r,(struct _reent *, void *__cookie,
627 _ELIDABLE_INLINE int __sgetc_r(struct _reent *__ptr, FILE *__p);
629 _ELIDABLE_INLINE int __sgetc_r(struct _reent *__ptr, FILE *__p)
649 _ELIDABLE_INLINE int __sputc_r(struct _reent *_ptr, int _c, FILE *_p) {