Lines Matching refs:io_channel
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,
114 static errcode_t inode_open(const char *name, int flags, io_channel *channel) in inode_open()
116 io_channel io = NULL; in inode_open()
174 static errcode_t inode_close(io_channel channel) 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()
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()
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()
280 static errcode_t inode_flush(io_channel channel) in inode_flush()