Lines Matching refs:ctx
104 …ssize_t (*read_p)(void* ctx, int fd, void * dst, size_t size); /*!< …
108 …ssize_t (*pread_p)(void *ctx, int fd, void * dst, size_t size, off_t offset); /*!< …
112 …ssize_t (*pwrite_p)(void *ctx, int fd, const void *src, size_t size, off_t offset); /*!< …
116 …int (*open_p)(void* ctx, const char * path, int flags, int mode); /*!< …
120 …int (*close_p)(void* ctx, int fd); /*!< …
124 …int (*fstat_p)(void* ctx, int fd, struct stat * st); /*!< …
129 …int (*stat_p)(void* ctx, const char * path, struct stat * st); /*!< …
133 …int (*link_p)(void* ctx, const char* n1, const char* n2); /*!< …
137 …int (*unlink_p)(void* ctx, const char *path); /*!< …
141 …int (*rename_p)(void* ctx, const char *src, const char *dst); /*!< r…
145 …DIR* (*opendir_p)(void* ctx, const char* name); /*!< o…
149 …struct dirent* (*readdir_p)(void* ctx, DIR* pdir); /*!< r…
153 …int (*readdir_r_p)(void* ctx, DIR* pdir, struct dirent* entry, struct dirent** out_dirent); /*!< r…
157 …long (*telldir_p)(void* ctx, DIR* pdir); /*!< t…
161 …void (*seekdir_p)(void* ctx, DIR* pdir, long offset); /*!< s…
165 …int (*closedir_p)(void* ctx, DIR* pdir); /*!< c…
169 …int (*mkdir_p)(void* ctx, const char* name, mode_t mode); /*!< m…
173 …int (*rmdir_p)(void* ctx, const char* name); /*!< r…
178 …int (*fcntl_p)(void* ctx, int fd, int cmd, int arg); /*!< f…
182 …int (*ioctl_p)(void* ctx, int fd, int cmd, va_list args); /*!< i…
186 …int (*fsync_p)(void* ctx, int fd); /*!< f…
191 …int (*access_p)(void* ctx, const char *path, int amode); /*!< a…
195 …int (*truncate_p)(void* ctx, const char *path, off_t length); /*!< t…
199 …int (*utime_p)(void* ctx, const char *path, const struct utimbuf *times); /*!< u…
205 …int (*tcsetattr_p)(void *ctx, int fd, int optional_actions, const struct termios *p); /*!< t…
209 …int (*tcgetattr_p)(void *ctx, int fd, struct termios *p); /*!< t…
213 …int (*tcdrain_p)(void *ctx, int fd); /*!< t…
217 …int (*tcflush_p)(void *ctx, int fd, int select); /*!< t…
221 …int (*tcflow_p)(void *ctx, int fd, int action); /*!< t…
225 …pid_t (*tcgetsid_p)(void *ctx, int fd); /*!< t…
229 …int (*tcsendbreak_p)(void *ctx, int fd, int duration); /*!< t…
272 esp_err_t esp_vfs_register(const char* base_path, const esp_vfs_t* vfs, void* ctx);
290 esp_err_t esp_vfs_register_fd_range(const esp_vfs_t *vfs, void *ctx, int min_fd, int max_fd);
308 esp_err_t esp_vfs_register_with_id(const esp_vfs_t *vfs, void *ctx, esp_vfs_id_t *vfs_id);