Lines Matching refs:lws_fop_fd_t
660 lws_fop_fd_t
664 `lws_plat_file_close`(lws_fop_fd_t fop_fd)
667 `lws_plat_file_seek_cur`(lws_fop_fd_t fop_fd, lws_fileofs_t offset)
670 `lws_plat_file_read`(lws_fop_fd_t fop_fd, lws_filepos_t *amount,
674 `lws_plat_file_write`(lws_fop_fd_t fop_fd, lws_filepos_t *amount,
683 lws_vfs_tell(lws_fop_fd_t fop_fd);
686 lws_vfs_get_length(lws_fop_fd_t fop_fd);
689 lws_vfs_get_mod_time(lws_fop_fd_t fop_fd);
692 lws_vfs_file_seek_set(lws_fop_fd_t fop_fd, lws_fileofs_t offset);
695 lws_vfs_file_seek_end(lws_fop_fd_t fop_fd, lws_fileofs_t offset);
706 …rm file descriptors. Current fops returns and accepts a wrapper type lws_fop_fd_t which is a poin…
708 …en you open it. Afterwards, the operations in the fops just need the lws_fop_fd_t returned from t…