Searched defs:pvol (Results 1 - 2 of 2) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/test/ |
H A D | fsw_posix.h | 64 struct fsw_posix_volume *pvol; //!< POSIX host volume structure member in struct:fsw_posix_file 75 struct fsw_posix_volume *pvol; //!< POSIX host volume structure member in struct:fsw_posix_dir 85 int fsw_posix_unmount(struct fsw_posix_volume *pvol); 87 struct fsw_posix_file * fsw_posix_open(struct fsw_posix_volume *pvol, const char *path, int flags, mode_t mode); 92 struct fsw_posix_dir * fsw_posix_opendir(struct fsw_posix_volume *pvol, const char *path);
|
H A D | fsw_posix.c | 49 fsw_status_t fsw_posix_open_dno(struct fsw_posix_volume *pvol, const char *path, int required_type, 78 struct fsw_posix_volume *pvol; local 81 status = fsw_alloc_zero(sizeof(struct fsw_posix_volume), (void **)&pvol); 84 pvol->fd = -1; 87 pvol->fd = open(path, O_RDONLY, 0); 88 if (pvol->fd < 0) { 90 fsw_free(pvol); 97 status = fsw_mount(pvol, &fsw_posix_host_table, fstype_table, &pvol->vol); 100 fsw_free(pvol); 111 fsw_posix_unmount(struct fsw_posix_volume *pvol) argument 123 fsw_posix_open(struct fsw_posix_volume *pvol, const char *path, int flags, mode_t mode) argument 202 fsw_posix_opendir(struct fsw_posix_volume *pvol, const char *path) argument 298 fsw_posix_open_dno(struct fsw_posix_volume *pvol, const char *path, int required_type, struct fsw_shandle *shand) argument 367 struct fsw_posix_volume *pvol = (struct fsw_posix_volume *)vol->host_data; local [all...] |
Completed in 200 milliseconds