Home
last modified time | relevance | path

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

/third_party/python/Modules/_io/clinic/
Dtextio.c.h179 int write_through);
196 int write_through = 0; in _io_TextIOWrapper___init__() local
267 write_through = _PyLong_AsInt(fastargs[5]); in _io_TextIOWrapper___init__()
268 if (write_through == -1 && PyErr_Occurred()) { in _io_TextIOWrapper___init__()
272 …er___init___impl((textio *)self, buffer, encoding, errors, newline, line_buffering, write_through); in _io_TextIOWrapper___init__()
/third_party/python/Lib/
D_pyio.py2029 line_buffering=False, write_through=False): argument
2071 line_buffering, write_through)
2080 line_buffering=False, write_through=False): argument
2094 self._write_through = write_through
2145 def write_through(self): member in TextIOWrapper
2154 line_buffering=None, write_through=None): argument
2186 if write_through is None:
2187 write_through = self.write_through
2191 line_buffering, write_through)
Dsubprocess.py952 self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
/third_party/python/Modules/_io/
Dtextio.c655 char write_through; member
1077 int write_through) in _io_TextIOWrapper___init___impl() argument
1208 self->write_through = write_through; in _io_TextIOWrapper___init___impl()
1360 int write_through; in _io_TextIOWrapper_reconfigure_impl() local
1381 write_through = convert_optional_bool(write_through_obj, in _io_TextIOWrapper_reconfigure_impl()
1382 self->write_through); in _io_TextIOWrapper_reconfigure_impl()
1383 if (line_buffering < 0 || write_through < 0) { in _io_TextIOWrapper_reconfigure_impl()
1404 self->write_through = write_through; in _io_TextIOWrapper_reconfigure_impl()
1651 if (self->write_through) in _io_TextIOWrapper_write_impl()
3271 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY},
/third_party/ltp/testcases/kernel/kvm/include/
Dkvm_x86.h149 unsigned int write_through: 1; member
/third_party/python/Python/
Dpylifecycle.c2146 PyObject *line_buffering, *write_through; in create_stdio() local
2205 write_through = Py_True; in create_stdio()
2207 write_through = Py_False; in create_stdio()
2242 newline, line_buffering, write_through); in create_stdio()
/third_party/python/Lib/test/
Dtest_io.py2649 self.assertFalse(t.write_through)
3402 write_through=True)
3424 write_through=True)
3444 t.reconfigure(write_through=True) # implied flush
3445 self.assertEqual(t.write_through, True)
3449 t.reconfigure(write_through=False)
3450 self.assertEqual(t.write_through, False)
3456 t.reconfigure(write_through=None)
3457 self.assertEqual(t.write_through, False)
3458 t.reconfigure(write_through=True)
[all …]
/third_party/python/Lib/xml/sax/
Dsaxutils.py110 write_through=True)
/third_party/python/Doc/library/
Dio.rst942 line_buffering=False, write_through=False)
991 If *write_through* is ``True``, calls to :meth:`write` are guaranteed
996 The *write_through* argument has been added.
1014 .. attribute:: write_through
1022 line_buffering][, write_through])
1025 *errors*, *newline*, *line_buffering* and *write_through*.
/third_party/mesa3d/src/imagination/vulkan/pds/
Dpvr_pds.h836 bool write_through,
Dpvr_pds.c126 bool write_through, in pvr_pds_encode_st_src0() argument
132 encoded |= (write_through in pvr_pds_encode_st_src0()
141 encoded |= (write_through ? PVR_ROGUE_PDSINST_ST_ST_SRC0_CMODE_WRITE_THROUGH in pvr_pds_encode_st_src0()
/third_party/ltp/doc/
DKVM-Test-API.asciidoc315 unsigned int write_through: 1;
/third_party/python/Doc/whatsnew/
D3.3.rst1485 *write_through* optional argument. If *write_through* is ``True``, calls to
/third_party/python/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.
/third_party/python/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