Home
last modified time | relevance | path

Searched refs:write_through (Results 1 – 16 of 16) sorted by relevance

/external/autotest/client/cros/faft/utils/
Dflashrom_handler.py554 def write_partial(self, subsection_name, blob=None, write_through=True): argument
569 if write_through:
617 def set_gbb_flags(self, flags, write_through=False): argument
627 self.write_partial(section_name, gbb_section, write_through)
757 def set_section_body(self, section, blob, write_through=False): argument
760 self.write_partial(subsection_name, blob, write_through)
762 def set_section_sig(self, section, blob, write_through=False): argument
765 self.write_partial(subsection_name, blob, write_through)
767 def set_section_fwid(self, section, blob, write_through=False): argument
770 self.write_partial(subsection_name, blob, write_through)
[all …]
/external/python/cpython3/Modules/_io/clinic/
Dtextio.c.h189 int write_through);
206 int write_through = 0; in _io_TextIOWrapper___init__() local
287 write_through = _PyLong_AsInt(fastargs[5]); in _io_TextIOWrapper___init__()
288 if (write_through == -1 && PyErr_Occurred()) { in _io_TextIOWrapper___init__()
292 …er___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through); in _io_TextIOWrapper___init__()
/external/python/cpython3/Lib/
D_pyio.py2005 line_buffering=False, write_through=False): argument
2044 line_buffering, write_through)
2053 line_buffering=False, write_through=False): argument
2067 self._write_through = write_through
2118 def write_through(self): member in TextIOWrapper
2127 line_buffering=None, write_through=None): argument
2159 if write_through is None:
2160 write_through = self.write_through
2164 line_buffering, write_through)
Dsubprocess.py933 self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
/external/python/cpython3/Modules/_io/
Dtextio.c654 char write_through; member
1076 int write_through) in _io_TextIOWrapper___init___impl() argument
1212 self->write_through = write_through; in _io_TextIOWrapper___init___impl()
1364 int write_through; in _io_TextIOWrapper_reconfigure_impl() local
1385 write_through = convert_optional_bool(write_through_obj, in _io_TextIOWrapper_reconfigure_impl()
1386 self->write_through); in _io_TextIOWrapper_reconfigure_impl()
1387 if (line_buffering < 0 || write_through < 0) { in _io_TextIOWrapper_reconfigure_impl()
1408 self->write_through = write_through; in _io_TextIOWrapper_reconfigure_impl()
1653 if (self->write_through) in _io_TextIOWrapper_write_impl()
3259 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY},
/external/linux-kselftest/tools/testing/selftests/kvm/lib/x86_64/
Dprocessor.c23 uint64_t write_through:1; member
38 uint64_t write_through:1; member
53 uint64_t write_through:1; member
68 uint64_t write_through:1; member
/external/pigweed/pw_tokenizer/py/
Ddatabase_test.py139 return io.TextIOWrapper(output, write_through=True)
/external/autotest/client/cros/faft/
Drpc_functions.py277 self._bios_handler.set_gbb_flags(flags, write_through=True)
295 section, version, flags, write_through=True)
363 section, new_version, flags, write_through=True)
/external/python/cpython3/Python/
Dpylifecycle.c1781 PyObject *line_buffering, *write_through; in create_stdio() local
1840 write_through = Py_True; in create_stdio()
1842 write_through = Py_False; in create_stdio()
1877 newline, line_buffering, write_through); in create_stdio()
/external/python/cpython3/Lib/test/
Dtest_io.py2622 self.assertFalse(t.write_through)
3371 write_through=True)
3393 write_through=True)
3413 t.reconfigure(write_through=True) # implied flush
3414 self.assertEqual(t.write_through, True)
3418 t.reconfigure(write_through=False)
3419 self.assertEqual(t.write_through, False)
3425 t.reconfigure(write_through=None)
3426 self.assertEqual(t.write_through, False)
3427 t.reconfigure(write_through=True)
[all …]
/external/python/cpython3/Lib/xml/sax/
Dsaxutils.py110 write_through=True)
/external/python/cpython3/Doc/library/
Dio.rst873 line_buffering=False, write_through=False)
920 If *write_through* is ``True``, calls to :meth:`write` are guaranteed
925 The *write_through* argument has been added.
940 .. attribute:: write_through
948 line_buffering][, write_through])
951 *errors*, *newline*, *line_buffering* and *write_through*.
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1485 *write_through* optional argument. If *write_through* is ``True``, calls to
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst3684 Fix TextIOWrapper(..., write_through=True) to not force a flush() on the
D3.7.0a1.rst2547 Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through attribute.
/external/python/cpython3/Misc/
DHISTORY1858 - Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a
9337 a read1() method), and add a *write_through* parameter to mandate