Lines Matching refs:io_channel
49 static errcode_t inode_open(const char *name, int flags, io_channel *channel);
50 static errcode_t inode_close(io_channel channel);
51 static errcode_t inode_set_blksize(io_channel channel, int blksize);
52 static errcode_t inode_read_blk(io_channel channel, unsigned long block,
54 static errcode_t inode_write_blk(io_channel channel, unsigned long block,
56 static errcode_t inode_flush(io_channel channel);
57 static errcode_t inode_write_byte(io_channel channel, unsigned long offset,
59 static errcode_t inode_read_blk64(io_channel channel,
61 static errcode_t inode_write_blk64(io_channel channel,
115 static errcode_t inode_open(const char *name, int flags, io_channel *channel) in inode_open()
117 io_channel io = NULL; in inode_open()
175 static errcode_t inode_close(io_channel channel) in inode_close()
196 static errcode_t inode_set_blksize(io_channel channel, int blksize) in inode_set_blksize()
209 static errcode_t inode_read_blk64(io_channel channel, in inode_read_blk64()
229 static errcode_t inode_read_blk(io_channel channel, unsigned long block, in inode_read_blk()
235 static errcode_t inode_write_blk64(io_channel channel, in inode_write_blk64()
255 static errcode_t inode_write_blk(io_channel channel, unsigned long block, in inode_write_blk()
261 static errcode_t inode_write_byte(io_channel channel, unsigned long offset, in inode_write_byte()
281 static errcode_t inode_flush(io_channel channel) in inode_flush()