Home
last modified time | relevance | path

Searched refs:io_channel (Results 1 – 25 of 38) sorted by relevance

12

/external/e2fsprogs/lib/ext2fs/
Dext2_io.h28 typedef struct struct_io_channel *io_channel; typedef
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 channel, unsigned long offset,
[all …]
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 *channel) in inode_open()
[all …]
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 channel, unsigned long offset,
[all …]
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 channel, unsigned long offset,
[all …]
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) in alloc_io_channel()
150 io_channel ioch; in alloc_io_channel()
152 ioch = (io_channel)malloc(sizeof(struct struct_io_channel)); in alloc_io_channel()
179 static errcode_t dos_open(const char *dev, int flags, io_channel *channel) in dos_open()
[all …]
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 channel, struct unix_private_data *data,
[all …]
Dio_manager.c22 errcode_t io_channel_set_options(io_channel channel, const char *opts) in io_channel_set_options()
59 errcode_t io_channel_write_byte(io_channel channel, unsigned long offset, in io_channel_write_byte()
71 errcode_t io_channel_read_blk64(io_channel channel, unsigned long long block, in io_channel_read_blk64()
87 errcode_t io_channel_write_blk64(io_channel channel, unsigned long long block, in io_channel_write_blk64()
103 errcode_t io_channel_discard(io_channel channel, unsigned long long block, in io_channel_discard()
114 errcode_t io_channel_alloc_buf(io_channel io, int count, void *ptr) in io_channel_alloc_buf()
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) in nt_open()
1077 io_channel io = NULL; in nt_open()
1096 io = (io_channel) malloc(sizeof(struct struct_io_channel)); in nt_open()
1221 nt_close(io_channel channel) in nt_close()
[all …]
Dext2_err.et.in27 "Wrong magic number for io_channel structure"
30 "Wrong magic number for unix io_channel structure"
45 "Wrong magic number for test io_channel structure"
54 "Wrong magic number for Powerquest io_channel structure"
63 "Wrong magic number for inode io_channel structure"
Dopenfs.c433 errcode_t ext2fs_get_data_io(ext2_filsys fs, io_channel *old_io) in ext2fs_get_data_io()
443 errcode_t ext2fs_set_data_io(ext2_filsys fs, io_channel new_io) in ext2fs_set_data_io()
451 errcode_t ext2fs_rewrite_to_io(ext2_filsys fs, io_channel new_io) in ext2fs_rewrite_to_io()
Dext2fs.h212 io_channel io;
256 io_channel image_io;
1387 errcode_t ext2fs_get_data_io(ext2_filsys fs, io_channel *old_io);
1388 errcode_t ext2fs_set_data_io(ext2_filsys fs, io_channel new_io);
1389 errcode_t ext2fs_rewrite_to_io(ext2_filsys fs, io_channel new_io);
Dinode.c530 io_channel io; in ext2fs_read_inode_full()
/external/libbrillo/brillo/message_loops/
Dglib_message_loop.cc78 GIOChannel* io_channel = g_io_channel_unix_new(fd); in WatchFileDescriptor() local
79 if (!io_channel) in WatchFileDescriptor()
82 GIOStatus status = g_io_channel_set_encoding(io_channel, nullptr, &error); in WatchFileDescriptor()
98 io_channel, in WatchFileDescriptor()
107 g_io_channel_unref(io_channel); in WatchFileDescriptor()
/external/e2fsprogs/e2fsck/
Dehandler.c22 static errcode_t e2fsck_handle_read_error(io_channel channel, in e2fsck_handle_read_error()
69 static errcode_t e2fsck_handle_write_error(io_channel channel, in e2fsck_handle_write_error()
123 void ehandler_init(io_channel channel) in ehandler_init()
De2fsck.h317 io_channel journal_io;
452 extern void ehandler_init(io_channel channel);
530 io_channel channel);
532 io_channel channel);
Djfs_user.h19 io_channel b_io;
Dutil.c327 void init_resource_track(struct resource_track *track, io_channel channel) in init_resource_track()
371 struct resource_track *track, io_channel channel) in print_resource_track()
507 io_channel io = NULL; in get_backup_sb()
Djournal.c98 io_channel io; in sync_blockdev()
/external/e2fsprogs/misc/
De2undo.c39 static int check_filesystem(TDB_CONTEXT *tdb, io_channel channel) in check_filesystem()
95 static int set_blk_size(TDB_CONTEXT *tdb, io_channel channel) in set_blk_size()
125 io_channel channel; in main()
De2image.c1364 io_channel io; in install_image()
/external/e2fsprogs/resize/
Dresize2fs.h172 io_channel channel);
175 io_channel channel);
Dresource_track.c21 io_channel channel) in init_resource_track()
60 io_channel channel) in print_resource_track()
/external/e2fsprogs/po/
Dde.po5883 msgid "Wrong magic number for io_channel structure"
5884 msgstr "Falsche magische Zahl für io_channel Struktur"
5887 msgid "Wrong magic number for unix io_channel structure"
5888 msgstr "Falsche magische Zahl für unix io_channel Struktur"
5907 msgid "Wrong magic number for test io_channel structure"
5908 msgstr "Falsche magische Zahl für test io_channel Struktur"
5919 msgid "Wrong magic number for Powerquest io_channel structure"
5920 msgstr "Falsche magische Zahl für Powerquest io_channel Struktur"
5931 msgid "Wrong magic number for inode io_channel structure"
5932 msgstr "Falsche magische Zahl für Inode io_channel Struktur"
Dsv.po5945 msgid "Wrong magic number for io_channel structure"
5946 msgstr "Fel magiskt tal för io_channel-post"
5949 msgid "Wrong magic number for unix io_channel structure"
5950 msgstr "Fel magiskt tal för unix-io_channel-post"
5969 msgid "Wrong magic number for test io_channel structure"
5970 msgstr "Fel magiskt tal för test io_channel-post"
5981 msgid "Wrong magic number for Powerquest io_channel structure"
5982 msgstr "Fel magiskt tal för PowerQuest-io_channel-post"
5993 msgid "Wrong magic number for inode io_channel structure"
5994 msgstr "Fel magiskt tal för inods-io_channel-post"
Dpl.po5939 msgid "Wrong magic number for io_channel structure"
5940 msgstr "Błędna liczba magiczna dla struktury io_channel"
5943 msgid "Wrong magic number for unix io_channel structure"
5944 msgstr "Błędna liczba magiczna dla struktury io_channel typu unix"
5963 msgid "Wrong magic number for test io_channel structure"
5964 msgstr "Błędna liczba magiczna dla strukruty io_channel typu test"
5975 msgid "Wrong magic number for Powerquest io_channel structure"
5976 msgstr "Błędna liczba magiczna dla struktury io_channel typu Powerquest"
5987 msgid "Wrong magic number for inode io_channel structure"
5988 msgstr "Błędna liczba magiczna dla struktury io_channel i-węzła"

12