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.py395 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/
Dtextio.c.h154 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.py1940 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)
Dsubprocess.py755 self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
/external/python/cpython3/Modules/_io/
Dtextio.c652 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/
Drpc_functions.py364 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/
Dprocessor.c24 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/
Dpylifecycle.c1707 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/
Dtest_io.py2561 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/
Dsaxutils.py111 write_through=True)
/external/python/cpython3/Doc/library/
Dio.rst848 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/
Dyaffs_guts.c3492 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/
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.rst2552 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