file               26 include/font.h extern int rbf_load_symbol(char *file);
file               27 include/font.h extern void rbf_load_from_file(char *file, int codepage);
file               99 include/lolevel.h extern long _Fclose_Fut(long file);
file              102 include/lolevel.h extern long _Fseek_Fut(long file, long offset, long whence);
file              103 include/lolevel.h extern long _Fflush_Fut(long file);
file              104 include/lolevel.h extern long _Feof_Fut(long file);
file              105 include/lolevel.h extern long _Fflush_Fut(long file);
file              255 include/lolevel.h extern int _utime(const char *file, void *newTimes);
file               34 include/std/stdio.h extern long fseek(FILE *file, long offset, long whence);
file               35 include/std/stdio.h extern long fflush(FILE *file);
file               36 include/std/stdio.h extern long feof(FILE *file);
file               37 include/std/stdio.h extern long ftell(FILE *file);
file               33 include/std/time.h extern int utime(const char *file, struct utimbuf *newTimes);
file              184 lib/font/rbf_font.c int rbf_font_load(char *file, font* f, int maxchar)
file              190 lib/font/rbf_font.c     if ((f == 0) || (*file == 0)) return 0;
file              196 lib/font/rbf_font.c     int fd = open(file, O_RDONLY, 0777);
file              233 lib/font/rbf_font.c int rbf_load_symbol(char *file) {
file              237 lib/font/rbf_font.c     return rbf_font_load(file, rbf_symbol_font, maxSymbols+32);
file              242 lib/font/rbf_font.c void rbf_load_from_file(char *file, int codepage)
file              247 lib/font/rbf_font.c     if (!rbf_font_load(file, rbf_font, 0))
file              706 lib/lua/luaconf.h #define lua_pclose(L,file)	((void)L, (pclose(file) != -1))
file              711 lib/lua/luaconf.h #define lua_pclose(L,file)	((void)L, (_pclose(file) != -1))
file              717 lib/lua/luaconf.h #define lua_pclose(L,file)		((void)((void)L, file), 0)
file              796 lib/lua/luaconf.h void dbg_dump_assert(const char *dumpname, const char *expr,const char *file, int line);
file              161 modules/dbg_dump.c void dbg_dump_assert(const char *dumpfile,const char *expr,const char *file,int line) {
file              163 modules/dbg_dump.c     sprintf(buf,"ASSERT %s:%d %s",file,line,expr);
file              370 modules/file_shelter.c static void process_dir(const char *parent, const char *name, int nested, void (*file_process)(const char *path, const char *file, fs_dirent *de), void (*dir_process)(const char *path, fs_dirent *de))
file              569 modules/file_shelter.c void fproc_totalsize(const char *path, const char *file, fs_dirent *de)
file              571 modules/file_shelter.c     if (whitelist && !iswhitelisted(file)) return;
file              573 modules/file_shelter.c     storageneed += wordpad(strlen(path) + 1 + strlen(file) + 1);
file              604 modules/file_shelter.c void fproc_store(const char *path, const char *file, fs_dirent *de)
file              606 modules/file_shelter.c     if (whitelist && !iswhitelisted(file)) return;
file              611 modules/file_shelter.c     fh->nlen = strlen(path) + 1 + strlen(file) + 1;
file              614 modules/file_shelter.c     sprintf(storptr, "%s%s%s", path, path[strlen(path)-1]=='/'?"":"/", file);
file              622 modules/file_shelter.c         console_add_line(file);
file              520 modules/gui_fselect.c static void process_dir(const char *parent, const char *name, int nested, void (*file_process)(const char *path, const char *file), void (*dir_process)(const char *path))
file              987 modules/gui_fselect.c static void purge_file(const char *folder, const char *file)
file              990 modules/gui_fselect.c     if (is_raw(file))
file              991 modules/gui_fselect.c         if (!find_jpg(folder, file, 0))
file              992 modules/gui_fselect.c             delete_file(folder, file);
file              999 modules/gui_fselect.c static void purge_file_DCIM(const char *folder, const char *file)
file             1002 modules/gui_fselect.c     if (is_raw(file))
file             1003 modules/gui_fselect.c         if (!find_jpg("A/DCIM", file, 1))
file             1004 modules/gui_fselect.c             delete_file(folder, file);
file             1459 modules/gui_fselect.c static void exit_fselect(char* file)
file             1468 modules/gui_fselect.c         fselect_on_select(file);
file               67 modules/gui_read.c int gui_read_init(const char* file)
file               73 modules/gui_read.c     read_file = open(file, O_RDONLY, 0777);
file               74 modules/gui_read.c     if (strcmp(file, conf.reader_file)!=0) {
file               76 modules/gui_read.c         strcpy(conf.reader_file, file);
file               79 modules/gui_read.c     read_file_size = (read_file>=0 && stat((char*)file, &st)==0)?st.st_size:0;
file              802 platform/generic/wrappers.c long fseek(FILE *file, long offset, long whence) {
file              803 platform/generic/wrappers.c     return _Fseek_Fut((long)file,offset,whence);
file              806 platform/generic/wrappers.c long feof(FILE * file) {
file              807 platform/generic/wrappers.c     return _Feof_Fut((long)file);
file              810 platform/generic/wrappers.c long fflush(FILE * file) {
file              811 platform/generic/wrappers.c     return _Fflush_Fut((long)file);
file              934 platform/generic/wrappers.c int utime(const char *file, struct utimbuf *newTimes) {
file              936 platform/generic/wrappers.c     return _utime(file, newTimes);
file              940 platform/generic/wrappers.c     fd = _open(file, 0, 0);
file              945 platform/generic/wrappers.c         res=_SetFileTimeStamp(file, newTimes->modtime, newTimes->actime);
file              247 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall int utime(const char *file, void *newTimes);
file              366 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall void DebugAssert(int x, char *file, int line);
file              368 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall void DebugAssert2(char *file, int line);
file              370 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall void DebugAssert(char *file, int line);
file              393 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall int TakeSemaphoreStrictly(int sem, int timeout, const char *file, int line);
file              509 tools/ghidra_scripts/datatypes/fw_functions.h __stdcall int AcquireRecursiveLockStrictly(int lock,int timeout/*?*/,const char *file, int line);
file               13 tools/makelang.c void load_conditions(char *file);
file              223 tools/makelang.c void load_conditions(char *file)
file              227 tools/makelang.c     char *buf = load_from_file(file);
file             1098 tools/packfi2/zlib.h ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
file             1106 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzread  OF((gzFile file, voidp buf, unsigned len));
file             1114 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzwrite OF((gzFile file,
file             1122 tools/packfi2/zlib.h ZEXTERN int ZEXPORTVA   gzprintf OF((gzFile file, const char *format, ...));
file             1135 tools/packfi2/zlib.h ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
file             1142 tools/packfi2/zlib.h ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
file             1151 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzputc OF((gzFile file, int c));
file             1157 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzgetc OF((gzFile file));
file             1163 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzungetc OF((int c, gzFile file));
file             1173 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzflush OF((gzFile file, int flush));
file             1183 tools/packfi2/zlib.h ZEXTERN z_off_t ZEXPORT    gzseek OF((gzFile file,
file             1201 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzrewind OF((gzFile file));
file             1208 tools/packfi2/zlib.h ZEXTERN z_off_t ZEXPORT    gztell OF((gzFile file));
file             1217 tools/packfi2/zlib.h ZEXTERN int ZEXPORT gzeof OF((gzFile file));
file             1223 tools/packfi2/zlib.h ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
file             1229 tools/packfi2/zlib.h ZEXTERN int ZEXPORT    gzclose OF((gzFile file));
file             1236 tools/packfi2/zlib.h ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
file             1245 tools/packfi2/zlib.h ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));