Lines Matching defs:FILE
221 typedef struct _IO_FILE FILE;
2205 extern FILE *tmpfile (void) ;
2207 extern FILE *tmpfile64 (void) ;
2222 extern int fclose (FILE *__stream);
2227 extern int fflush (FILE *__stream);
2229 extern int fflush_unlocked (FILE *__stream);
2233 extern FILE *fopen (const char *__restrict __filename,
2239 extern FILE *freopen (const char *__restrict __filename,
2241 FILE *__restrict __stream) ;
2243 extern FILE *fopen64 (const char *__restrict __filename,
2245 extern FILE *freopen64 (const char *__restrict __filename,
2247 FILE *__restrict __stream) ;
2252 extern FILE *fdopen (int __fd, const char *__modes) throw () ;
2258 extern FILE *fopencookie (void *__restrict __magic_cookie,
2265 extern FILE *fmemopen (void *__s, size_t __len, const char *__modes)
2271 extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) throw () ;
2278 extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) throw ();
2282 extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf,
2289 extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf,
2293 extern void setlinebuf (FILE *__stream) throw ();
2295 extern int fprintf (FILE *__restrict __stream,
2310 extern int vfprintf (FILE *__restrict __s, const char *__restrict __format,
2357 extern int fscanf (FILE *__restrict __stream,
2368 extern int vfscanf (FILE *__restrict __s, const char *__restrict __format,
2384 extern int fgetc (FILE *__stream);
2385 extern int getc (FILE *__stream);
2393 extern int getc_unlocked (FILE *__stream);
2396 extern int fgetc_unlocked (FILE *__stream);
2398 extern int fputc (int __c, FILE *__stream);
2399 extern int putc (int __c, FILE *__stream);
2407 extern int fputc_unlocked (int __c, FILE *__stream);
2415 extern int putc_unlocked (int __c, FILE *__stream);
2423 extern int getw (FILE *__stream);
2426 extern int putw (int __w, FILE *__stream);
2428 extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
2432 FILE *__restrict __stream) ;
2436 FILE *__restrict __stream) ;
2439 FILE *__restrict __stream) ;
2449 FILE *__restrict __stream) ;
2451 extern int fputs (const char *__restrict __s, FILE *__restrict __stream);
2464 extern int ungetc (int __c, FILE *__stream);
2472 size_t __n, FILE *__restrict __stream) ;
2478 size_t __n, FILE *__restrict __s);
2481 FILE *__restrict __stream);
2484 size_t __n, FILE *__restrict __stream) ;
2486 size_t __n, FILE *__restrict __stream);
2488 extern int fseek (FILE *__stream, long int __off, int __whence);
2493 extern long int ftell (FILE *__stream) ;
2498 extern void rewind (FILE *__stream);
2500 extern int fseeko (FILE *__stream, __off_t __off, int __whence);
2505 extern __off_t ftello (FILE *__stream) ;
2507 extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos);
2512 extern int fsetpos (FILE *__stream, const fpos_t *__pos);
2514 extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence);
2515 extern __off64_t ftello64 (FILE *__stream) ;
2516 extern int fgetpos64 (FILE *__restrict __stream, fpos64_t *__restrict __pos);
2517 extern int fsetpos64 (FILE *__stream, const fpos64_t *__pos);
2522 extern void clearerr (FILE *__stream) throw ();
2524 extern int feof (FILE *__stream) throw () ;
2526 extern int ferror (FILE *__stream) throw () ;
2531 extern void clearerr_unlocked (FILE *__stream) throw ();
2532 extern int feof_unlocked (FILE *__stream) throw () ;
2533 extern int ferror_unlocked (FILE *__stream) throw () ;
2556 extern int fileno (FILE *__stream) throw () ;
2561 extern int fileno_unlocked (FILE *__stream) throw () ;
2563 extern FILE *popen (const char *__command, const char *__modes) ;
2569 extern int pclose (FILE *__stream);
2603 extern void flockfile (FILE *__stream) throw ();
2607 extern int ftrylockfile (FILE *__stream) throw () ;
2610 extern void funlockfile (FILE *__stream) throw ();
9576 static void WalkTheStack(FILE* aStream);
22883 using ::FILE;
51396 void fprintf_stderr(FILE* aFile, const char* aFmt, ...) __attribute__ ((format (printf, 2, 3)));
70893 PL_HashTableDump(PLHashTable *ht, PLHashEnumerator dump, FILE *fp);
101447 FILE* file, JS::MutableHandleScript script);
101467 FILE* file, JS::MutableHandleScript script);
101922 JS_FileEscapedString(FILE* fp, JSString* str, char quote);
118684 DumpString(JSString* str, FILE* fp);
118687 DumpAtom(JSAtom* atom, FILE* fp);
118690 DumpObject(JSObject* obj, FILE* fp);
118693 DumpChars(const char16_t* s, size_t n, FILE* fp);
118696 DumpValue(const JS::Value& val, FILE* fp);
118699 DumpId(jsid id, FILE* fp);
118702 DumpInterpreterFrame(JSContext* cx, FILE* fp, InterpreterFrame* start = nullptr);
118705 DumpPC(JSContext* cx, FILE* fp);
118708 DumpScript(JSContext* cx, JSScript* scriptArg, FILE* fp);
118725 DumpBacktrace(JSContext* cx, FILE* fp);
118834 DumpHeap(JSContext* cx, FILE* fp, DumpHeapNurseryBehaviour nurseryBehaviour);
136044 void DumpJSHeap(FILE* aFile);
152327 virtual nsresult GetReportsForThisProcessExtended(nsIMemoryReporterCallback *handleReport, nsISupports *handleReportData, bool anonymize, FILE *DMDFile, nsIFinishReportingCallback *finishReporting, nsISupports *finishReportingData) = 0;
165944 __attribute__ ((warn_unused_result)) virtual nsresult OpenANSIFileDesc(const char * mode, FILE **_retval) = 0;