• Home
  • Raw
  • Download

Lines Matching refs:errcode_t

50 static errcode_t inode_open(const char *name, int flags, io_channel *channel);
51 static errcode_t inode_close(io_channel channel);
52 static errcode_t inode_set_blksize(io_channel channel, int blksize);
53 static errcode_t inode_read_blk(io_channel channel, unsigned long block,
55 static errcode_t inode_write_blk(io_channel channel, unsigned long block,
57 static errcode_t inode_flush(io_channel channel);
58 static errcode_t inode_write_byte(io_channel channel, unsigned long offset,
60 static errcode_t inode_read_blk64(io_channel channel,
62 static errcode_t inode_write_blk64(io_channel channel,
81 errcode_t ext2fs_inode_io_intern2(ext2_filsys fs, ext2_ino_t ino, in ext2fs_inode_io_intern2()
86 errcode_t retval; in ext2fs_inode_io_intern2()
107 errcode_t ext2fs_inode_io_intern(ext2_filsys fs, ext2_ino_t ino, in ext2fs_inode_io_intern()
114 static errcode_t inode_open(const char *name, int flags, io_channel *channel) in inode_open()
118 errcode_t retval; in inode_open()
174 static errcode_t inode_close(io_channel channel) in inode_close()
177 errcode_t retval = 0; in inode_close()
195 static errcode_t inode_set_blksize(io_channel channel, int blksize) in inode_set_blksize()
208 static errcode_t inode_read_blk64(io_channel channel, in inode_read_blk64()
212 errcode_t retval; in inode_read_blk64()
228 static errcode_t inode_read_blk(io_channel channel, unsigned long block, in inode_read_blk()
234 static errcode_t inode_write_blk64(io_channel channel, in inode_write_blk64()
238 errcode_t retval; in inode_write_blk64()
254 static errcode_t inode_write_blk(io_channel channel, unsigned long block, in inode_write_blk()
260 static errcode_t inode_write_byte(io_channel channel, unsigned long offset, in inode_write_byte()
264 errcode_t retval = 0; in inode_write_byte()
280 static errcode_t inode_flush(io_channel channel) in inode_flush()