Lines Matching refs:open_file
94 static int ext2fs_open(const char *path, struct open_file *f);
95 static int ext2fs_close(struct open_file *f);
96 static int ext2fs_read(struct open_file *f, void *buf,
98 static off_t ext2fs_seek(struct open_file *f, off_t offset, int where);
99 static int ext2fs_stat(struct open_file *f, struct stat *sb);
100 static int ext2fs_readdir(struct open_file *f, struct dirent *d);
318 static int read_inode(ino_t inumber, struct open_file *f);
319 static int block_map(struct open_file *f, daddr_t file_block,
321 static int buf_read_file(struct open_file *f, char **buf_p,
323 static int search_directory(char *name, struct open_file *f,
330 ext2fs_open(const char *upath, struct open_file *f) in ext2fs_open()
555 read_inode(ino_t inumber, struct open_file *f) in read_inode()
597 block_map(struct open_file *f, daddr_t file_block, daddr_t *disk_block_p) in block_map()
697 buf_read_file(struct open_file *f, char **buf_p, size_t *size_p) in buf_read_file()
755 search_directory(char *name, struct open_file *f, ino_t *inumber_p) in search_directory()
791 ext2fs_close(struct open_file *f) in ext2fs_close()
815 ext2fs_read(struct open_file *f, void *addr, size_t size, size_t *resid) in ext2fs_read()
846 ext2fs_seek(struct open_file *f, off_t offset, int where) in ext2fs_seek()
868 ext2fs_stat(struct open_file *f, struct stat *sb) in ext2fs_stat()
881 ext2fs_readdir(struct open_file *f, struct dirent *d) in ext2fs_readdir()