|
| esp_err_t | esp_vfs_register (const char *base_path, const esp_vfs_t *vfs, void *ctx) |
| |
| esp_err_t | esp_vfs_unregister (const char *base_path) |
| |
| esp_err_t | esp_vfs_register_fd_range (const esp_vfs_t *vfs, void *ctx, int min_fd, int max_fd) |
| |
| esp_err_t | esp_vfs_register_with_id (const esp_vfs_t *vfs, void *ctx, esp_vfs_id_t *vfs_id) |
| |
| esp_err_t | esp_vfs_unregister_with_id (esp_vfs_id_t vfs_id) |
| |
| esp_err_t | esp_vfs_register_fd (esp_vfs_id_t vfs_id, int *fd) |
| |
| esp_err_t | esp_vfs_register_fd_with_local_fd (esp_vfs_id_t vfs_id, int local_fd, bool permanent, int *fd) |
| |
| esp_err_t | esp_vfs_unregister_fd (esp_vfs_id_t vfs_id, int fd) |
| |
| ssize_t | esp_vfs_write (struct _reent *r, int fd, const void *data, size_t size) |
| |
| off_t | esp_vfs_lseek (struct _reent *r, int fd, off_t size, int mode) |
| |
| ssize_t | esp_vfs_read (struct _reent *r, int fd, void *dst, size_t size) |
| |
| int | esp_vfs_open (struct _reent *r, const char *path, int flags, int mode) |
| |
| int | esp_vfs_close (struct _reent *r, int fd) |
| |
| int | esp_vfs_fstat (struct _reent *r, int fd, struct stat *st) |
| |
| int | esp_vfs_stat (struct _reent *r, const char *path, struct stat *st) |
| |
| int | esp_vfs_link (struct _reent *r, const char *n1, const char *n2) |
| |
| int | esp_vfs_unlink (struct _reent *r, const char *path) |
| |
| int | esp_vfs_rename (struct _reent *r, const char *src, const char *dst) |
| |
| int | esp_vfs_utime (const char *path, const struct utimbuf *times) |
| |
| int | esp_vfs_fsync (int fd) |
| |
| int | esp_vfs_fcntl_r (struct _reent *r, int fd, int cmd, int arg) |
| |
| int | esp_vfs_ioctl (int fd, int cmd,...) |
| |
| int | esp_vfs_truncate (const char *path, off_t length) |
| |
| int | esp_vfs_ftruncate (int fd, off_t length) |
| |
| int | esp_vfs_access (const char *path, int amode) |
| |
| int | esp_vfs_rmdir (const char *name) |
| |
| int | esp_vfs_mkdir (const char *name, mode_t mode) |
| |
| DIR * | esp_vfs_opendir (const char *name) |
| |
| int | esp_vfs_closedir (DIR *pdir) |
| |
| int | esp_vfs_readdir_r (DIR *pdir, struct dirent *entry, struct dirent **out_dirent) |
| |
| struct dirent * | esp_vfs_readdir (DIR *pdir) |
| |
| long | esp_vfs_telldir (DIR *pdir) |
| |
| void | esp_vfs_seekdir (DIR *pdir, long loc) |
| |
| void | esp_vfs_rewinddir (DIR *pdir) |
| |
| int | esp_vfs_select (int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout) |
| |
| void | esp_vfs_select_triggered (esp_vfs_select_sem_t sem) |
| |
| void | esp_vfs_select_triggered_isr (esp_vfs_select_sem_t sem, int *woken) |
| |
| ssize_t | esp_vfs_pread (int fd, void *dst, size_t size, off_t offset) |
| |
| ssize_t | esp_vfs_pwrite (int fd, const void *src, size_t size, off_t offset) |
| |
| void | esp_vfs_dump_fds (FILE *fp) |
| |
| void | esp_vfs_dump_registered_paths (FILE *fp) |
| |