|
| typedef int | esp_vfs_id_t |
| |
| typedef ssize_t(* | esp_vfs_write_ctx_op_t) (void *ctx, int fd, const void *data, size_t size) |
| |
| typedef ssize_t(* | esp_vfs_write_op_t) (int fd, const void *data, size_t size) |
| |
| typedef off_t(* | esp_vfs_lseek_ctx_op_t) (void *ctx, int fd, off_t size, int mode) |
| |
| typedef off_t(* | esp_vfs_lseek_op_t) (int fd, off_t size, int mode) |
| |
| typedef ssize_t(* | esp_vfs_read_ctx_op_t) (void *ctx, int fd, void *dst, size_t size) |
| |
| typedef ssize_t(* | esp_vfs_read_op_t) (int fd, void *dst, size_t size) |
| |
| typedef ssize_t(* | esp_vfs_pread_ctx_op_t) (void *ctx, int fd, void *dst, size_t size, off_t offset) |
| |
| typedef ssize_t(* | esp_vfs_pread_op_t) (int fd, void *dst, size_t size, off_t offset) |
| |
| typedef ssize_t(* | esp_vfs_pwrite_ctx_op_t) (void *ctx, int fd, const void *src, size_t size, off_t offset) |
| |
| typedef ssize_t(* | esp_vfs_pwrite_op_t) (int fd, const void *src, size_t size, off_t offset) |
| |
| typedef int(* | esp_vfs_open_ctx_op_t) (void *ctx, const char *path, int flags, int mode) |
| |
| typedef int(* | esp_vfs_open_op_t) (const char *path, int flags, int mode) |
| |
| typedef int(* | esp_vfs_close_ctx_op_t) (void *ctx, int fd) |
| |
| typedef int(* | esp_vfs_close_op_t) (int fd) |
| |
| typedef int(* | esp_vfs_fstat_ctx_op_t) (void *ctx, int fd, struct stat *st) |
| |
| typedef int(* | esp_vfs_fstat_op_t) (int fd, struct stat *st) |
| |
| typedef int(* | esp_vfs_fcntl_ctx_op_t) (void *ctx, int fd, int cmd, int arg) |
| |
| typedef int(* | esp_vfs_fcntl_op_t) (int fd, int cmd, int arg) |
| |
| typedef int(* | esp_vfs_ioctl_ctx_op_t) (void *ctx, int fd, int cmd, va_list args) |
| |
| typedef int(* | esp_vfs_ioctl_op_t) (int fd, int cmd, va_list args) |
| |
| typedef int(* | esp_vfs_fsync_ctx_op_t) (void *ctx, int fd) |
| |
| typedef int(* | esp_vfs_fsync_op_t) (int fd) |
| |
| typedef int(* | esp_vfs_stat_ctx_op_t) (void *ctx, const char *path, struct stat *st) |
| |
| typedef int(* | esp_vfs_stat_op_t) (const char *path, struct stat *st) |
| |
| typedef int(* | esp_vfs_link_ctx_op_t) (void *ctx, const char *n1, const char *n2) |
| |
| typedef int(* | esp_vfs_link_op_t) (const char *n1, const char *n2) |
| |
| typedef int(* | esp_vfs_unlink_ctx_op_t) (void *ctx, const char *path) |
| |
| typedef int(* | esp_vfs_unlink_op_t) (const char *path) |
| |
| typedef int(* | esp_vfs_rename_ctx_op_t) (void *ctx, const char *src, const char *dst) |
| |
| typedef int(* | esp_vfs_rename_op_t) (const char *src, const char *dst) |
| |
| typedef DIR *(* | esp_vfs_opendir_ctx_op_t) (void *ctx, const char *name) |
| |
| typedef DIR *(* | esp_vfs_opendir_op_t) (const char *name) |
| |
| typedef struct dirent *(* | esp_vfs_readdir_ctx_op_t) (void *ctx, DIR *pdir) |
| |
| typedef struct dirent *(* | esp_vfs_readdir_op_t) (DIR *pdir) |
| |
| typedef int(* | esp_vfs_readdir_r_ctx_op_t) (void *ctx, DIR *pdir, struct dirent *entry, struct dirent **out) |
| |
| typedef int(* | esp_vfs_readdir_r_op_t) (DIR *pdir, struct dirent *entry, struct dirent **out) |
| |
| typedef long(* | esp_vfs_telldir_ctx_op_t) (void *ctx, DIR *pdir) |
| |
| typedef long(* | esp_vfs_telldir_op_t) (DIR *pdir) |
| |
| typedef void(* | esp_vfs_seekdir_ctx_op_t) (void *ctx, DIR *pdir, long offset) |
| |
| typedef void(* | esp_vfs_seekdir_op_t) (DIR *pdir, long offset) |
| |
| typedef int(* | esp_vfs_closedir_ctx_op_t) (void *ctx, DIR *pdir) |
| |
| typedef int(* | esp_vfs_closedir_op_t) (DIR *pdir) |
| |
| typedef int(* | esp_vfs_mkdir_ctx_op_t) (void *ctx, const char *name, mode_t mode) |
| |
| typedef int(* | esp_vfs_mkdir_op_t) (const char *name, mode_t mode) |
| |
| typedef int(* | esp_vfs_rmdir_ctx_op_t) (void *ctx, const char *name) |
| |
| typedef int(* | esp_vfs_rmdir_op_t) (const char *name) |
| |
| typedef int(* | esp_vfs_access_ctx_op_t) (void *ctx, const char *path, int amode) |
| |
| typedef int(* | esp_vfs_access_op_t) (const char *path, int amode) |
| |
| typedef int(* | esp_vfs_truncate_ctx_op_t) (void *ctx, const char *path, off_t length) |
| |
| typedef int(* | esp_vfs_truncate_op_t) (const char *path, off_t length) |
| |
| typedef int(* | esp_vfs_ftruncate_ctx_op_t) (void *ctx, int fd, off_t length) |
| |
| typedef int(* | esp_vfs_ftruncate_op_t) (int fd, off_t length) |
| |