Home
last modified time | relevance | path

Searched refs:write_byte (Results 1 – 15 of 15) sorted by relevance

/third_party/e2fsprogs/lib/ext2fs/
Dtest_io.c55 void (*write_byte)(unsigned long block, int count, errcode_t err); member
215 data->write_byte = test_io_cb_write_byte; in test_open()
425 if (data->real && data->real->manager->write_byte) in test_write_byte()
427 if (data->write_byte) in test_write_byte()
428 data->write_byte(offset, count, retval); in test_write_byte()
545 .write_byte = test_write_byte,
Dio_manager.c65 if (channel->manager->write_byte) in io_channel_write_byte()
66 return channel->manager->write_byte(channel, offset, in io_channel_write_byte()
Dext2_io.h85 errcode_t (*write_byte)(io_channel channel, unsigned long offset, member
Dsparse_io.c522 .write_byte = NULL,
541 .write_byte = NULL,
Dinode_io.c74 .write_byte = inode_write_byte,
Dclosefs.c199 if (!fs->io->manager->write_byte || !fs->orig_super) { in write_primary_superblock()
Dundo_io.c930 if (data->real && data->real->manager->write_byte) in undo_write_byte()
1096 .write_byte = undo_write_byte,
Dunix_io.c1388 .write_byte = unix_write_byte,
1409 .write_byte = unix_write_byte,
Dwindows_io.c1031 .write_byte = windows_write_byte,
/third_party/python/Lib/test/
Dtest_mmap.py161 m.write_byte(b'd')
246 self.assertRaises(TypeError, m.write_byte, 0)
573 m.write_byte(data[i])
575 self.assertRaises(ValueError, m.write_byte, b"x"[0])
601 m.write_byte(b)
721 self.assertRaises(ValueError, m.write_byte, 42)
/third_party/python/Doc/library/
Dmmap.rst306 .. method:: write_byte(byte)
/third_party/flutter/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c1341 write_byte(struct file *file, int b) in write_byte() function
3515 write_byte(file, (png_byte)b); /* increments chunk_write */ in read_callback()
/third_party/libpng/contrib/tools/
Dpngfix.c1341 write_byte(struct file *file, int b) in write_byte() function
3515 write_byte(file, (png_byte)b); /* increments chunk_write */ in read_callback()
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dpngfix.c1341 write_byte(struct file *file, int b) in write_byte() function
3515 write_byte(file, (png_byte)b); /* increments chunk_write */ in read_callback()
/third_party/python/Misc/
DHISTORY15572 - Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer