Lines Matching refs:open_file

63 static int	buf_read_file(struct open_file *f, char **buf_p,
65 static int cd9660_open(const char *path, struct open_file *f);
66 static int cd9660_close(struct open_file *f);
67 static int cd9660_read(struct open_file *f, void *buf, size_t size,
69 static off_t cd9660_seek(struct open_file *f, off_t offset, int where);
70 static int cd9660_stat(struct open_file *f, struct stat *sb);
71 static int cd9660_readdir(struct open_file *f, struct dirent *d);
72 static int dirmatch(struct open_file *f, const char *path,
74 static int rrip_check(struct open_file *f, struct iso_directory_record *dp,
76 static char *rrip_lookup_name(struct open_file *f,
78 static ISO_SUSP_HEADER *susp_lookup_record(struct open_file *f,
120 susp_lookup_record(struct open_file *f, const char *identifier, in susp_lookup_record()
165 rrip_lookup_name(struct open_file *f, struct iso_directory_record *dp, in rrip_lookup_name()
196 rrip_check(struct open_file *f, struct iso_directory_record *dp, int *lenskip) in rrip_check()
227 dirmatch(struct open_file *f, const char *path, struct iso_directory_record *dp, in dirmatch()
284 cd9660_open(const char *path, struct open_file *f) in cd9660_open()
449 cd9660_close(struct open_file *f) in cd9660_close()
460 buf_read_file(struct open_file *f, char **buf_p, size_t *size_p) in buf_read_file()
495 cd9660_read(struct open_file *f, void *start, size_t size, size_t *resid) in cd9660_read()
524 cd9660_readdir(struct open_file *f, struct dirent *d) in cd9660_readdir()
589 cd9660_seek(struct open_file *f, off_t offset, int where) in cd9660_seek()
610 cd9660_stat(struct open_file *f, struct stat *sb) in cd9660_stat()