Lines Matching full:io_channel
86 static errcode_t unix_open(const char *name, int flags, io_channel *channel);
87 static errcode_t unix_close(io_channel channel);
88 static errcode_t unix_set_blksize(io_channel channel, int blksize);
89 static errcode_t unix_read_blk(io_channel channel, unsigned long block,
91 static errcode_t unix_write_blk(io_channel channel, unsigned long block,
93 static errcode_t unix_flush(io_channel channel);
94 static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
96 static errcode_t unix_set_option(io_channel channel, const char *option,
98 static errcode_t unix_get_stats(io_channel channel, io_stats *stats)
100 static void reuse_cache(io_channel channel, struct unix_private_data *data,
102 static errcode_t unix_read_blk64(io_channel channel, unsigned long long block,
104 static errcode_t unix_write_blk64(io_channel channel, unsigned long long block,
137 static errcode_t unix_get_stats(io_channel channel, io_stats *stats)
157 static errcode_t raw_read_blk(io_channel channel,
194 static errcode_t raw_read_blk(io_channel channel,
246 static errcode_t raw_write_blk(io_channel channel,
292 static errcode_t alloc_cache(io_channel channel,
366 static void reuse_cache(io_channel channel, struct unix_private_data *data,
381 static errcode_t flush_cached_blocks(io_channel channel,
412 static errcode_t unix_open(const char *name, int flags, io_channel *channel)
414 io_channel io = NULL;
528 static errcode_t unix_close(io_channel channel)
555 static errcode_t unix_set_blksize(io_channel channel, int blksize)
579 static errcode_t unix_read_blk64(io_channel channel, unsigned long long block,
644 static errcode_t unix_read_blk(io_channel channel, unsigned long block,
650 static errcode_t unix_write_blk64(io_channel channel, unsigned long long block,
702 static errcode_t unix_write_blk(io_channel channel, unsigned long block,
708 static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
740 static errcode_t unix_flush(io_channel channel)
756 static errcode_t unix_set_option(io_channel channel, const char *option,