Lines Matching defs:fp
123 FILE *fp = fopen(key, "rb"); in os_kv_get() local
135 FILE *fp = fopen(key, "wb+"); in os_kv_set() local
172 FILE *fp = fopen(filename, mode); in os_fopen() local
176 static inline size_t os_fread(void *buffer, size_t size, size_t count, os_file_t fp) in os_fread()
181 static inline size_t os_fwrite(const void *buffer, size_t size, size_t count, os_file_t fp) in os_fwrite()
186 static inline long os_ftell(os_file_t fp) in os_ftell()
191 static inline long os_fseek(os_file_t fp, long offset, int whence) in os_fseek()
196 static inline char *os_fgets(char *buffer, int size, os_file_t fp) in os_fgets()
201 static inline int os_fprintf(os_file_t fp, const char *format, ...) in os_fprintf()
211 static inline int os_feof(os_file_t fp) in os_feof()
216 static inline int os_ferror(os_file_t fp) in os_ferror()
221 static inline int os_fclose(os_file_t fp) in os_fclose()