Searched refs:write_byte (Results 1 – 17 of 17) sorted by relevance
/external/autotest/client/common_lib/ |
D | smogcheck_pca9555.py | 99 write_byte = byte_read | PCA_BIT_ONE[key] 101 write_byte = byte_read & ~PCA_BIT_ONE[key] 102 self.writeByte(PCA_REG['OUT0'], write_byte) 195 write_byte = reset_low6 ^ bit_mask 198 byte_read, reset_low6, bit_mask, write_byte) 199 self.writeByte(PCA_REG['OUT1'], write_byte)
|
/external/cn-cbor/src/ |
D | cn-encoder.c | 48 #define write_byte(b) \ macro 53 write_byte(b); \ 92 write_byte(ib | val); in _write_positive() 95 write_byte(ib | 24); in _write_positive() 96 write_byte((uint8_t)val); in _write_positive()
|
/external/e2fsprogs/lib/ext2fs/ |
D | test_io.c | 55 void (*write_byte)(unsigned long block, int count, errcode_t err); member 214 data->write_byte = test_io_cb_write_byte; in test_open() 421 if (data->real && data->real->manager->write_byte) in test_write_byte() 423 if (data->write_byte) in test_write_byte() 424 data->write_byte(offset, count, retval); in test_write_byte() 541 .write_byte = test_write_byte,
|
D | io_manager.c | 65 if (channel->manager->write_byte) in io_channel_write_byte() 66 return channel->manager->write_byte(channel, offset, in io_channel_write_byte()
|
D | ext2_io.h | 84 errcode_t (*write_byte)(io_channel channel, unsigned long offset, member
|
D | sparse_io.c | 514 .write_byte = NULL, 533 .write_byte = NULL,
|
D | inode_io.c | 74 .write_byte = inode_write_byte,
|
D | unix_io.c | 1116 .write_byte = unix_write_byte, 1137 .write_byte = unix_write_byte,
|
D | closefs.c | 199 if (!fs->io->manager->write_byte || !fs->orig_super) { in write_primary_superblock()
|
D | undo_io.c | 928 if (data->real && data->real->manager->write_byte) in undo_write_byte() 1094 .write_byte = undo_write_byte,
|
/external/python/cpython3/Lib/test/ |
D | test_mmap.py | 159 m.write_byte(b'd') 244 self.assertRaises(TypeError, m.write_byte, 0) 586 m.write_byte(data[i]) 588 self.assertRaises(ValueError, m.write_byte, b"x"[0]) 614 m.write_byte(b) 734 self.assertRaises(ValueError, m.write_byte, 42)
|
/external/python/cpython2/Lib/test/ |
D | test_mmap.py | 155 m.write_byte('d') 248 self.assertRaises(TypeError, m.write_byte, 0) 560 m.write_byte(data[i]) 562 self.assertRaises(ValueError, m.write_byte, "x") 666 self.assertRaises(ValueError, m.write_byte, 'b')
|
/external/python/cpython2/Doc/library/ |
D | mmap.rst | 251 .. method:: write_byte(byte)
|
/external/python/cpython3/Doc/library/ |
D | mmap.rst | 280 .. method:: write_byte(byte)
|
/external/libpng/contrib/tools/ |
D | pngfix.c | 1341 write_byte(struct file *file, int b) in write_byte() function 3515 write_byte(file, (png_byte)b); /* increments chunk_write */ in read_callback()
|
/external/python/cpython2/Misc/ |
D | NEWS | 8401 - Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer
|
/external/python/cpython3/Misc/ |
D | HISTORY | 15572 - Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer
|