• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/

Lines Matching refs:errcode_t

44 	void (*read_blk)(unsigned long block, int count, errcode_t err);
45 void (*write_blk)(unsigned long block, int count, errcode_t err);
46 void (*set_blksize)(int blksize, errcode_t err);
47 void (*write_byte)(unsigned long block, int count, errcode_t err);
50 static errcode_t test_open(const char *name, int flags, io_channel *channel);
51 static errcode_t test_close(io_channel channel);
52 static errcode_t test_set_blksize(io_channel channel, int blksize);
53 static errcode_t test_read_blk(io_channel channel, unsigned long block,
55 static errcode_t test_write_blk(io_channel channel, unsigned long block,
57 static errcode_t test_flush(io_channel channel);
58 static errcode_t test_write_byte(io_channel channel, unsigned long offset,
60 static errcode_t test_set_option(io_channel channel, const char *option,
84 (unsigned long block, int count, errcode_t err) = 0;
86 (unsigned long block, int count, errcode_t err) = 0;
88 (int blksize, errcode_t err) = 0;
90 (unsigned long block, int count, errcode_t err) = 0;
136 static errcode_t test_open(const char *name, int flags, io_channel *channel)
140 errcode_t retval;
212 static errcode_t test_close(io_channel channel)
215 errcode_t retval = 0;
236 static errcode_t test_set_blksize(io_channel channel, int blksize)
239 errcode_t retval = 0;
258 static errcode_t test_read_blk(io_channel channel, unsigned long block,
262 errcode_t retval = 0;
285 static errcode_t test_write_blk(io_channel channel, unsigned long block,
289 errcode_t retval = 0;
312 static errcode_t test_write_byte(io_channel channel, unsigned long offset,
316 errcode_t retval = 0;
336 static errcode_t test_flush(io_channel channel)
339 errcode_t retval = 0;
355 static errcode_t test_set_option(io_channel channel, const char *option,
359 errcode_t retval = 0;