Lines Matching refs:errcode_t
98 static errcode_t unix_open(const char *name, int flags, io_channel *channel);
99 static errcode_t unix_close(io_channel channel);
100 static errcode_t unix_set_blksize(io_channel channel, int blksize);
101 static errcode_t unix_read_blk(io_channel channel, unsigned long block,
103 static errcode_t unix_write_blk(io_channel channel, unsigned long block,
105 static errcode_t unix_flush(io_channel channel);
106 static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
108 static errcode_t unix_set_option(io_channel channel, const char *option,
110 static errcode_t unix_get_stats(io_channel channel, io_stats *stats)
114 static errcode_t unix_read_blk64(io_channel channel, unsigned long long block,
116 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)
139 errcode_t retval = 0;
156 static errcode_t raw_read_blk(io_channel channel,
161 errcode_t retval;
216 static errcode_t raw_write_blk(io_channel channel,
224 errcode_t retval;
295 static errcode_t alloc_cache(io_channel channel,
298 errcode_t retval;
394 static errcode_t flush_cached_blocks(io_channel channel,
400 errcode_t retval, retval2;
425 static errcode_t unix_open(const char *name, int flags, io_channel *channel)
429 errcode_t retval;
573 static errcode_t unix_close(io_channel channel)
576 errcode_t retval = 0;
600 static errcode_t unix_set_blksize(io_channel channel, int blksize)
603 errcode_t retval;
624 static errcode_t unix_read_blk64(io_channel channel, unsigned long long block,
629 errcode_t retval;
705 static errcode_t unix_read_blk(io_channel channel, unsigned long block,
711 static errcode_t unix_write_blk64(io_channel channel, unsigned long long block,
716 errcode_t retval = 0;
763 static errcode_t unix_write_blk(io_channel channel, unsigned long block,
769 static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
773 errcode_t retval = 0;
808 static errcode_t unix_flush(io_channel channel)
811 errcode_t retval = 0;
824 static errcode_t unix_set_option(io_channel channel, const char *option,