Home
last modified time | relevance | path

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

/external/autotest/client/common_lib/
Dsmogcheck_pca9555.py99 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/
Dcn-encoder.c48 #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/
Dtest_io.c55 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,
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.h84 errcode_t (*write_byte)(io_channel channel, unsigned long offset, member
Dsparse_io.c514 .write_byte = NULL,
533 .write_byte = NULL,
Dinode_io.c74 .write_byte = inode_write_byte,
Dunix_io.c1116 .write_byte = unix_write_byte,
1137 .write_byte = unix_write_byte,
Dclosefs.c199 if (!fs->io->manager->write_byte || !fs->orig_super) { in write_primary_superblock()
Dundo_io.c928 if (data->real && data->real->manager->write_byte) in undo_write_byte()
1094 .write_byte = undo_write_byte,
/external/python/cpython3/Lib/test/
Dtest_mmap.py159 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/
Dtest_mmap.py155 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/
Dmmap.rst251 .. method:: write_byte(byte)
/external/python/cpython3/Doc/library/
Dmmap.rst280 .. method:: write_byte(byte)
/external/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()
/external/python/cpython2/Misc/
DNEWS8401 - Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer
/external/python/cpython3/Misc/
DHISTORY15572 - Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer