/external/autotest/client/cros/faft/utils/ |
D | flashrom_handler.py | 395 def write_partial(self, subsection_name, blob=None, write_through=True): argument 409 if write_through: 455 def set_gbb_flags(self, flags, write_through=False): argument 465 self.write_partial(section_name, gbb_section, write_through) 521 def set_section_body(self, section, blob, write_through=False): argument 524 self.write_partial(subsection_name, blob, write_through) 526 def set_section_sig(self, section, blob, write_through=False): argument 529 self.write_partial(subsection_name, blob, write_through) 531 def set_section_fwid(self, section, blob, write_through=False): argument 534 self.write_partial(subsection_name, blob, write_through) [all …]
|
/external/python/cpython3/Modules/_io/clinic/ |
D | textio.c.h | 154 int write_through); 167 int write_through = 0; in _io_TextIOWrapper___init__() local 170 &buffer, &encoding, &errors, &newline, &line_buffering, &write_through)) { in _io_TextIOWrapper___init__() 173 …er___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through); in _io_TextIOWrapper___init__()
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 1940 line_buffering=False, write_through=False): argument 1977 line_buffering, write_through) 1986 line_buffering=False, write_through=False): argument 2000 self._write_through = write_through 2051 def write_through(self): member in TextIOWrapper 2060 line_buffering=None, write_through=None): argument 2092 if write_through is None: 2093 write_through = self.write_through 2097 line_buffering, write_through)
|
D | subprocess.py | 755 self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 652 char write_through; member 1025 int write_through) in _io_TextIOWrapper___init___impl() argument 1158 self->write_through = write_through; in _io_TextIOWrapper___init___impl() 1310 int write_through; in _io_TextIOWrapper_reconfigure_impl() local 1331 write_through = convert_optional_bool(write_through_obj, in _io_TextIOWrapper_reconfigure_impl() 1332 self->write_through); in _io_TextIOWrapper_reconfigure_impl() 1333 if (line_buffering < 0 || write_through < 0) { in _io_TextIOWrapper_reconfigure_impl() 1354 self->write_through = write_through; in _io_TextIOWrapper_reconfigure_impl() 1559 if (self->write_through) in _io_TextIOWrapper_write_impl() 3151 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY},
|
/external/autotest/client/cros/faft/ |
D | rpc_functions.py | 364 self._bios_handler.set_gbb_flags(flags, write_through=True) 382 write_through=True) 441 write_through=True)
|
/external/linux-kselftest/tools/testing/selftests/kvm/lib/x86_64/ |
D | processor.c | 24 uint64_t write_through:1; member 39 uint64_t write_through:1; member 54 uint64_t write_through:1; member 69 uint64_t write_through:1; member
|
/external/python/cpython3/Python/ |
D | pylifecycle.c | 1707 PyObject *line_buffering, *write_through; in create_stdio() local 1765 write_through = Py_True; in create_stdio() 1767 write_through = Py_False; in create_stdio() 1789 newline, line_buffering, write_through); in create_stdio()
|
/external/python/cpython3/Lib/test/ |
D | test_io.py | 2561 self.assertFalse(t.write_through) 3276 write_through=True) 3298 write_through=True) 3318 t.reconfigure(write_through=True) # implied flush 3319 self.assertEqual(t.write_through, True) 3323 t.reconfigure(write_through=False) 3324 self.assertEqual(t.write_through, False) 3330 t.reconfigure(write_through=None) 3331 self.assertEqual(t.write_through, False) 3332 t.reconfigure(write_through=True) [all …]
|
/external/python/cpython3/Lib/xml/sax/ |
D | saxutils.py | 111 write_through=True)
|
/external/python/cpython3/Doc/library/ |
D | io.rst | 848 line_buffering=False, write_through=False) 894 If *write_through* is ``True``, calls to :meth:`write` are guaranteed 899 The *write_through* argument has been added. 914 .. attribute:: write_through 922 line_buffering][, write_through]) 925 *errors*, *newline*, *line_buffering* and *write_through*.
|
/external/u-boot/fs/yaffs2/ |
D | yaffs_guts.c | 3492 int n_bytes, int write_through) in yaffs_do_file_wr() argument 3603 if (write_through) { in yaffs_do_file_wr() 3663 int n_bytes, int write_through) in yaffs_wr_file() argument 3666 return yaffs_do_file_wr(in, buffer, offset, n_bytes, write_through); in yaffs_wr_file()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1485 *write_through* optional argument. If *write_through* is ``True``, calls to
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 3684 Fix TextIOWrapper(..., write_through=True) to not force a flush() on the
|
D | 3.7.0a1.rst | 2552 Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through attribute.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1858 - Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a 9337 a read1() method), and add a *write_through* parameter to mandate
|