Searched refs:io_channel (Results 1 - 23 of 23) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
H A Dext2_io.h28 typedef struct struct_io_channel *io_channel; typedef in typeref:struct:struct_io_channel
42 errcode_t (*read_error)(io_channel channel,
49 errcode_t (*write_error)(io_channel channel,
74 errcode_t (*open)(const char *name, int flags, io_channel *channel);
75 errcode_t (*close)(io_channel channel);
76 errcode_t (*set_blksize)(io_channel channel, int blksize);
77 errcode_t (*read_blk)(io_channel channel, unsigned long block,
79 errcode_t (*write_blk)(io_channel channel, unsigned long block,
81 errcode_t (*flush)(io_channel channel);
82 errcode_t (*write_byte)(io_channel channe
[all...]
H A Dinode_io.c49 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 *channe
[all...]
H A Dio_manager.c22 errcode_t io_channel_set_options(io_channel channel, const char *opts)
59 errcode_t io_channel_write_byte(io_channel channel, unsigned long offset,
71 errcode_t io_channel_read_blk64(io_channel channel, unsigned long long block,
87 errcode_t io_channel_write_blk64(io_channel channel, unsigned long long block,
103 errcode_t io_channel_discard(io_channel channel, unsigned long long block,
114 errcode_t io_channel_alloc_buf(io_channel io, int count, void *ptr)
H A Ddosio.c54 static errcode_t dos_open(const char *dev, int flags, io_channel *channel);
55 static errcode_t dos_close(io_channel channel);
56 static errcode_t dos_set_blksize(io_channel channel, int blksize);
57 static errcode_t dos_read_blk(io_channel channel, unsigned long block,
59 static errcode_t dos_write_blk(io_channel channel, unsigned long block,
61 static errcode_t dos_flush(io_channel channel);
148 static io_channel alloc_io_channel(PARTITION *part)
150 io_channel ioch;
152 ioch = (io_channel)malloc(sizeof(struct struct_io_channel));
179 static errcode_t dos_open(const char *dev, int flags, io_channel *channe
[all...]
H A Dundo_io.c64 io_channel real;
73 static errcode_t undo_open(const char *name, int flags, io_channel *channel);
74 static errcode_t undo_close(io_channel channel);
75 static errcode_t undo_set_blksize(io_channel channel, int blksize);
76 static errcode_t undo_read_blk64(io_channel channel, unsigned long long block,
78 static errcode_t undo_write_blk64(io_channel channel, unsigned long long block,
80 static errcode_t undo_read_blk(io_channel channel, unsigned long block,
82 static errcode_t undo_write_blk(io_channel channel, unsigned long block,
84 static errcode_t undo_flush(io_channel channel);
85 static errcode_t undo_write_byte(io_channel channe
[all...]
H A Dtest_io.c52 io_channel real;
65 static errcode_t test_open(const char *name, int flags, io_channel *channel);
66 static errcode_t test_close(io_channel channel);
67 static errcode_t test_set_blksize(io_channel channel, int blksize);
68 static errcode_t test_read_blk(io_channel channel, unsigned long block,
70 static errcode_t test_write_blk(io_channel channel, unsigned long block,
72 static errcode_t test_read_blk64(io_channel channel, unsigned long long block,
74 static errcode_t test_write_blk64(io_channel channel, unsigned long long block,
76 static errcode_t test_flush(io_channel channel);
77 static errcode_t test_write_byte(io_channel channe
[all...]
H A Dunix_io.c99 static errcode_t unix_open(const char *name, int flags, io_channel *channel);
100 static errcode_t unix_close(io_channel channel);
101 static errcode_t unix_set_blksize(io_channel channel, int blksize);
102 static errcode_t unix_read_blk(io_channel channel, unsigned long block,
104 static errcode_t unix_write_blk(io_channel channel, unsigned long block,
106 static errcode_t unix_flush(io_channel channel);
107 static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
109 static errcode_t unix_set_option(io_channel channel, const char *option,
111 static errcode_t unix_get_stats(io_channel channel, io_stats *stats)
113 static void reuse_cache(io_channel channe
[all...]
H A Dnt_io.c222 static errcode_t nt_open(const char *name, int flags, io_channel *channel);
223 static errcode_t nt_close(io_channel channel);
224 static errcode_t nt_set_blksize(io_channel channel, int blksize);
225 static errcode_t nt_read_blk(io_channel channel, unsigned long block,
227 static errcode_t nt_write_blk(io_channel channel, unsigned long block,
229 static errcode_t nt_flush(io_channel channel);
1075 nt_open(const char *name, int flags, io_channel *channel)
1077 io_channel io = NULL;
1096 io = (io_channel) malloc(sizeof(struct struct_io_channel));
1221 nt_close(io_channel channe
[all...]
H A Dopenfs.c433 errcode_t ext2fs_get_data_io(ext2_filsys fs, io_channel *old_io)
443 errcode_t ext2fs_set_data_io(ext2_filsys fs, io_channel new_io)
451 errcode_t ext2fs_rewrite_to_io(ext2_filsys fs, io_channel new_io)
H A Dext2fs.h212 io_channel io;
256 io_channel image_io;
1382 errcode_t ext2fs_get_data_io(ext2_filsys fs, io_channel *old_io);
1383 errcode_t ext2fs_set_data_io(ext2_filsys fs, io_channel new_io);
1384 errcode_t ext2fs_rewrite_to_io(ext2_filsys fs, io_channel new_io);
H A Dinode.c530 io_channel io;
/external/lldb/tools/driver/
H A DIOChannel.cpp82 IOChannel *io_channel; local
83 if (el_get(e, EL_CLIENTDATA, &io_channel) == 0)
85 return io_channel->HandleCompletion (e, ch);
304 IOChannel *io_channel = (IOChannel *) baton; local
305 IOLocker locker (io_channel->m_output_mutex);
308 if (io_channel->IsGettingCommand() && io_channel->m_expecting_prompt)
310 io_channel->m_prompt_str.append (bytes, src_len);
312 if (io_channel->m_prompt_str.find (el_prompt(io_channel
[all...]
/external/e2fsprogs/e2fsck/
H A Dehandler.c22 static errcode_t e2fsck_handle_read_error(io_channel channel,
69 static errcode_t e2fsck_handle_write_error(io_channel channel,
123 void ehandler_init(io_channel channel)
H A De2fsck.h317 io_channel journal_io;
451 extern void ehandler_init(io_channel channel);
529 io_channel channel);
531 io_channel channel);
H A Djfs_user.h19 io_channel b_io;
H A Dutil.c327 void init_resource_track(struct resource_track *track, io_channel channel)
371 struct resource_track *track, io_channel channel)
507 io_channel io = NULL;
H A Djournal.c98 io_channel io;
/external/e2fsprogs/resize/
H A Dresize2fs.h172 io_channel channel);
175 io_channel channel);
H A Dresource_track.c21 io_channel channel)
60 io_channel channel)
/external/e2fsprogs/misc/
H A De2undo.c39 static int check_filesystem(TDB_CONTEXT *tdb, io_channel channel)
95 static int set_blk_size(TDB_CONTEXT *tdb, io_channel channel)
125 io_channel channel;
H A De2image.c1364 io_channel io;
H A Dmke2fs.c2158 io_channel channel;
/external/e2fsprogs/debugfs/
H A Ddebugfs.c65 io_channel data_io = 0;

Completed in 513 milliseconds