Lines Matching refs:lws_fop_fd_t
624 lws_fop_fd_t
628 `lws_plat_file_close`(lws_fop_fd_t fop_fd)
631 `lws_plat_file_seek_cur`(lws_fop_fd_t fop_fd, lws_fileofs_t offset)
634 `lws_plat_file_read`(lws_fop_fd_t fop_fd, lws_filepos_t *amount,
638 `lws_plat_file_write`(lws_fop_fd_t fop_fd, lws_filepos_t *amount,
647 lws_vfs_tell(lws_fop_fd_t fop_fd);
650 lws_vfs_get_length(lws_fop_fd_t fop_fd);
653 lws_vfs_get_mod_time(lws_fop_fd_t fop_fd);
656 lws_vfs_file_seek_set(lws_fop_fd_t fop_fd, lws_fileofs_t offset);
659 lws_vfs_file_seek_end(lws_fop_fd_t fop_fd, lws_fileofs_t offset);
670 …rm file descriptors. Current fops returns and accepts a wrapper type lws_fop_fd_t which is a poin…
672 …en you open it. Afterwards, the operations in the fops just need the lws_fop_fd_t returned from t…