• 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-2011.09/arm-none-eabi/include/

Lines Matching defs:FILE

50 typedef __FILE FILE;
174 extern FILE *__aeabi_stdin;
175 extern FILE *__aeabi_stdout;
176 extern FILE *__aeabi_stderr;
208 FILE * _EXFUN(tmpfile, (void));
210 int _EXFUN(fclose, (FILE *));
211 int _EXFUN(fflush, (FILE *));
212 FILE * _EXFUN(freopen, (const char *, const char *, FILE *));
213 void _EXFUN(setbuf, (FILE *, char *));
214 int _EXFUN(setvbuf, (FILE *, char *, int, size_t));
215 int _EXFUN(fprintf, (FILE *, const char *, ...)
217 int _EXFUN(fscanf, (FILE *, const char *, ...)
225 int _EXFUN(vfprintf, (FILE *, const char *, __VALIST)
231 int _EXFUN(fgetc, (FILE *));
232 char * _EXFUN(fgets, (char *, int, FILE *));
233 int _EXFUN(fputc, (int, FILE *));
234 int _EXFUN(fputs, (const char *, FILE *));
235 int _EXFUN(getc, (FILE *));
238 int _EXFUN(putc, (int, FILE *));
241 int _EXFUN(ungetc, (int, FILE *));
242 size_t _EXFUN(fread, (_PTR, size_t _size, size_t _n, FILE *));
243 size_t _EXFUN(fwrite, (const _PTR , size_t _size, size_t _n, FILE *));
246 int _EXFUN(fgetpos, (FILE *, _fpos_t *));
247 int _EXFUN(fsetpos, (FILE *, const _fpos_t *));
249 int _EXFUN(fgetpos, (FILE *, fpos_t *));
250 int _EXFUN(fsetpos, (FILE *, const fpos_t *));
253 int _EXFUN(fseek, (FILE *, long, int));
254 long _EXFUN(ftell, ( FILE *));
255 void _EXFUN(rewind, (FILE *));
256 void _EXFUN(clearerr, (FILE *));
257 int _EXFUN(feof, (FILE *));
258 int _EXFUN(ferror, (FILE *));
261 FILE * _EXFUN(fopen, (const char *_name, const char *_type));
270 int _EXFUN(fseeko, (FILE *, _off_t, int));
271 _off_t _EXFUN(ftello, ( FILE *));
273 int _EXFUN(fseeko, (FILE *, off_t, int));
274 off_t _EXFUN(ftello, ( FILE *));
293 int _EXFUN(fiprintf, (FILE *, const char *, ...)
295 int _EXFUN(fiscanf, (FILE *, const char *, ...)
320 int _EXFUN(vfiprintf, (FILE *, const char *, __VALIST)
322 int _EXFUN(vfiscanf, (FILE *, const char *, __VALIST)
324 int _EXFUN(vfscanf, (FILE *, const char *, __VALIST)
351 FILE * _EXFUN(fdopen, (int, const char *));
353 int _EXFUN(fileno, (FILE *));
354 int _EXFUN(getw, (FILE *));
355 int _EXFUN(pclose, (FILE *));
356 FILE * _EXFUN(popen, (const char *, const char *));
357 int _EXFUN(putw, (int, FILE *));
358 void _EXFUN(setbuffer, (FILE *, char *, int));
359 int _EXFUN(setlinebuf, (FILE *));
360 int _EXFUN(getc_unlocked, (FILE *));
362 void _EXFUN(flockfile, (FILE *));
363 int _EXFUN(ftrylockfile, (FILE *));
364 void _EXFUN(funlockfile, (FILE *));
365 int _EXFUN(putc_unlocked, (int, FILE *));
379 FILE * _EXFUN(fmemopen, (void *, size_t, const char *));
382 FILE * _EXFUN(open_memstream, (char **, size_t *));
407 int _EXFUN(_fclose_r, (struct _reent *, FILE *));
409 FILE * _EXFUN(_fdopen_r, (struct _reent *, int, const char *));
410 int _EXFUN(_fflush_r, (struct _reent *, FILE *));
411 int _EXFUN(_fgetc_r, (struct _reent *, FILE *));
412 char * _EXFUN(_fgets_r, (struct _reent *, char *, int, FILE *));
414 int _EXFUN(_fgetpos_r, (struct _reent *, FILE *, _fpos_t *));
415 int _EXFUN(_fsetpos_r, (struct _reent *, FILE *, const _fpos_t *));
417 int _EXFUN(_fgetpos_r, (struct _reent *, FILE *, fpos_t *));
418 int _EXFUN(_fsetpos_r, (struct _reent *, FILE *, const fpos_t *));
420 int _EXFUN(_fiprintf_r, (struct _reent *, FILE *, const char *, ...)
422 int _EXFUN(_fiscanf_r, (struct _reent *, FILE *, const char *, ...)
424 FILE * _EXFUN(_fmemopen_r, (struct _reent *, void *, size_t, const char *));
425 FILE * _EXFUN(_fopen_r, (struct _reent *, const char *, const char *));
426 FILE * _EXFUN(_freopen_r, (struct _reent *, const char *, const char *, FILE *));
427 int _EXFUN(_fprintf_r, (struct _reent *, FILE *, const char *, ...)
429 int _EXFUN(_fpurge_r, (struct _reent *, FILE *));
430 int _EXFUN(_fputc_r, (struct _reent *, int, FILE *));
431 int _EXFUN(_fputs_r, (struct _reent *, const char *, FILE *));
432 size_t _EXFUN(_fread_r, (struct _reent *, _PTR, size_t _size, size_t _n, FILE *));
433 int _EXFUN(_fscanf_r, (struct _reent *, FILE *, const char *, ...)
435 int _EXFUN(_fseek_r, (struct _reent *, FILE *, long, int));
436 int _EXFUN(_fseeko_r,(struct _reent *, FILE *, _off_t, int));
437 long _EXFUN(_ftell_r, (struct _reent *, FILE *));
438 _off_t _EXFUN(_ftello_r,(struct _reent *, FILE *));
439 void _EXFUN(_rewind_r, (struct _reent *, FILE *));
440 size_t _EXFUN(_fwrite_r, (struct _reent *, const _PTR , size_t _size, size_t _n, FILE *));
441 int _EXFUN(_getc_r, (struct _reent *, FILE *));
442 int _EXFUN(_getc_unlocked_r, (struct _reent *, FILE *));
450 FILE * _EXFUN(_open_memstream_r, (struct _reent *, char **, size_t *));
454 int _EXFUN(_putc_r, (struct _reent *, int, FILE *));
455 int _EXFUN(_putc_unlocked_r, (struct _reent *, int, FILE *));
477 FILE * _EXFUN(_tmpfile_r, (struct _reent *));
479 int _EXFUN(_ungetc_r, (struct _reent *, int, FILE *));
492 int _EXFUN(_vfiprintf_r, (struct _reent *, FILE *, const char *, __VALIST)
494 int _EXFUN(_vfiscanf_r, (struct _reent *, FILE *, const char *, __VALIST)
496 int _EXFUN(_vfprintf_r, (struct _reent *, FILE *, const char *, __VALIST)
498 int _EXFUN(_vfscanf_r, (struct _reent *, FILE *, const char *, __VALIST)
523 int _EXFUN(fpurge, (FILE *));
524 ssize_t _EXFUN(__getdelim, (char **, size_t *, int, FILE *));
525 ssize_t _EXFUN(__getline, (char **, size_t *, FILE *));
529 FILE * _EXFUN(fdopen64, (int, const char *));
530 FILE * _EXFUN(fopen64, (const char *, const char *));
531 FILE * _EXFUN(freopen64, (_CONST char *, _CONST char *, FILE *));
532 _off64_t _EXFUN(ftello64, (FILE *));
533 _off64_t _EXFUN(fseeko64, (FILE *, _off64_t, int));
534 int _EXFUN(fgetpos64, (FILE *, _fpos64_t *));
535 int _EXFUN(fsetpos64, (FILE *, const _fpos64_t *));
536 FILE * _EXFUN(tmpfile64, (void));
538 FILE * _EXFUN(_fdopen64_r, (struct _reent *, int, const char *));
539 FILE * _EXFUN(_fopen64_r, (struct _reent *,const char *, const char *));
540 FILE * _EXFUN(_freopen64_r, (struct _reent *, _CONST char *, _CONST char *, FILE *));
541 _off64_t _EXFUN(_ftello64_r, (struct _reent *, FILE *));
542 _off64_t _EXFUN(_fseeko64_r, (struct _reent *, FILE *, _off64_t, int));
543 int _EXFUN(_fgetpos64_r, (struct _reent *, FILE *, _fpos64_t *));
544 int _EXFUN(_fsetpos64_r, (struct _reent *, FILE *, const _fpos64_t *));
545 FILE * _EXFUN(_tmpfile64_r, (struct _reent *));
553 int _EXFUN(__srget_r, (struct _reent *, FILE *));
554 int _EXFUN(__swbuf_r, (struct _reent *, int, FILE *));
562 FILE *_EXFUN(funopen,(const _PTR __cookie,
567 FILE *_EXFUN(_funopen_r,(struct _reent *, const _PTR __cookie,
573 FILE *_EXFUN(funopen,(const _PTR __cookie,
578 FILE *_EXFUN(_funopen_r,(struct _reent *, const _PTR __cookie,
609 FILE *_EXFUN(fopencookie,(void *__cookie,
611 FILE *_EXFUN(_fopencookie_r,(struct _reent *, void *__cookie,
633 _ELIDABLE_INLINE int __sgetc_r(struct _reent *__ptr, FILE *__p);
635 _ELIDABLE_INLINE int __sgetc_r(struct _reent *__ptr, FILE *__p)
655 _ELIDABLE_INLINE int __sputc_r(struct _reent *_ptr, int _c, FILE *_p) {