Lines Matching defs:fp

802 static int32_t lfs_vfs_open(vfs_file_t *fp, const char *path, int flags)  in lfs_vfs_open()
859 static int32_t lfs_vfs_close(vfs_file_t *fp) in lfs_vfs_close()
883 static int32_t lfs_vfs_read(vfs_file_t *fp, char *buf, uint32_t len) in lfs_vfs_read()
901 static int32_t lfs_vfs_write(vfs_file_t *fp, const char *buf, uint32_t len) in lfs_vfs_write()
927 static uint32_t lfs_vfs_lseek(vfs_file_t *fp, int64_t off, int32_t whence) in lfs_vfs_lseek()
944 static int32_t lfs_vfs_sync(vfs_file_t *fp) in lfs_vfs_sync()
961 static int32_t lfs_vfs_fstat(vfs_file_t *fp, vfs_stat_t *st) in lfs_vfs_fstat()
990 static int32_t lfs_vfs_stat(vfs_file_t *fp, const char *path, vfs_stat_t *st) in lfs_vfs_stat()
1023 static int32_t lfs_vfs_access(vfs_file_t *fp, const char *path, int mode) in lfs_vfs_access()
1042 static int32_t lfs_vfs_statfs(vfs_file_t *fp, const char *path, vfs_statfs_t *sfs) in lfs_vfs_statfs()
1070 static int32_t lfs_vfs_remove(vfs_file_t *fp, const char *path) in lfs_vfs_remove()
1101 static int32_t lfs_vfs_rename(vfs_file_t *fp, const char *oldpath, const char *newpath) in lfs_vfs_rename()
1152 static vfs_dir_t *lfs_vfs_opendir(vfs_file_t *fp, const char *path) in lfs_vfs_opendir()
1197 static vfs_dirent_t *lfs_vfs_readdir(vfs_file_t *fp, vfs_dir_t *dir) in lfs_vfs_readdir()
1238 static int32_t lfs_vfs_closedir(vfs_file_t *fp, vfs_dir_t *dir) in lfs_vfs_closedir()
1266 static int32_t lfs_vfs_mkdir(vfs_file_t *fp, const char *path) in lfs_vfs_mkdir()
1300 static int32_t lfs_vfs_rmdir (vfs_file_t *fp, const char *path) in lfs_vfs_rmdir()
1331 static void lfs_vfs_rewinddir(vfs_file_t *fp, vfs_dir_t *dir) in lfs_vfs_rewinddir()
1348 static int32_t lfs_vfs_telldir(vfs_file_t *fp, vfs_dir_t *dir) in lfs_vfs_telldir()
1368 static void lfs_vfs_seekdir(vfs_file_t *fp, vfs_dir_t *dir, int32_t loc) in lfs_vfs_seekdir()
1385 static int32_t lfs_vfs_utime(vfs_file_t *fp, const char *path, const vfs_utimbuf_t *times) in lfs_vfs_utime()