Lines Matching refs:fd
96 …ssize_t (*write_p)(void* p, int fd, const void * data, size_t size); /*!< …
97 …ssize_t (*write)(int fd, const void * data, size_t size); /*!< …
100 …off_t (*lseek_p)(void* p, int fd, off_t size, int mode); /*!< …
101 …off_t (*lseek)(int fd, off_t size, int mode); /*!< …
104 …ssize_t (*read_p)(void* ctx, int fd, void * dst, size_t size); /*!< …
105 …ssize_t (*read)(int fd, void * dst, size_t size); /*!< …
108 …ssize_t (*pread_p)(void *ctx, int fd, void * dst, size_t size, off_t offset); /*!< …
109 …ssize_t (*pread)(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); /*!< …
113 …ssize_t (*pwrite)(int fd, const void *src, size_t size, off_t offset); /*!< …
120 …int (*close_p)(void* ctx, int fd); /*!< …
121 …int (*close)(int fd); /*!< …
124 …int (*fstat_p)(void* ctx, int fd, struct stat * st); /*!< …
125 …int (*fstat)(int fd, struct stat * st); /*!< …
178 …int (*fcntl_p)(void* ctx, int fd, int cmd, int arg); /*!< f…
179 …int (*fcntl)(int fd, int cmd, int arg); /*!< f…
182 …int (*ioctl_p)(void* ctx, int fd, int cmd, va_list args); /*!< i…
183 …int (*ioctl)(int fd, int cmd, va_list args); /*!< i…
186 …int (*fsync_p)(void* ctx, int fd); /*!< f…
187 …int (*fsync)(int fd); /*!< f…
205 …int (*tcsetattr_p)(void *ctx, int fd, int optional_actions, const struct termios *p); /*!< t…
206 …int (*tcsetattr)(int fd, int optional_actions, const struct termios *p); /*!< t…
209 …int (*tcgetattr_p)(void *ctx, int fd, struct termios *p); /*!< t…
210 …int (*tcgetattr)(int fd, struct termios *p); /*!< t…
213 …int (*tcdrain_p)(void *ctx, int fd); /*!< t…
214 …int (*tcdrain)(int fd); /*!< t…
217 …int (*tcflush_p)(void *ctx, int fd, int select); /*!< t…
218 …int (*tcflush)(int fd, int select); /*!< t…
221 …int (*tcflow_p)(void *ctx, int fd, int action); /*!< t…
222 …int (*tcflow)(int fd, int action); /*!< t…
225 …pid_t (*tcgetsid_p)(void *ctx, int fd); /*!< t…
226 …pid_t (*tcgetsid)(int fd); /*!< t…
229 …int (*tcsendbreak_p)(void *ctx, int fd, int duration); /*!< t…
230 …int (*tcsendbreak)(int fd, int duration); /*!< t…
339 esp_err_t esp_vfs_register_fd(esp_vfs_id_t vfs_id, int *fd);
354 …rr_t esp_vfs_register_fd_with_local_fd(esp_vfs_id_t vfs_id, int local_fd, bool permanent, int *fd);
366 esp_err_t esp_vfs_unregister_fd(esp_vfs_id_t vfs_id, int fd);
373 ssize_t esp_vfs_write(struct _reent *r, int fd, const void * data, size_t size);
374 off_t esp_vfs_lseek(struct _reent *r, int fd, off_t size, int mode);
375 ssize_t esp_vfs_read(struct _reent *r, int fd, void * dst, size_t size);
377 int esp_vfs_close(struct _reent *r, int fd);
378 int esp_vfs_fstat(struct _reent *r, int fd, struct stat * st);
446 ssize_t esp_vfs_pread(int fd, void *dst, size_t size, off_t offset);
460 ssize_t esp_vfs_pwrite(int fd, const void *src, size_t size, off_t offset);