/third_party/python/Modules/_io/clinic/ |
D | textio.c.h | 179 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.py | 2029 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)
|
D | subprocess.py | 952 self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
|
/third_party/python/Modules/_io/ |
D | textio.c | 655 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/ |
D | kvm_x86.h | 149 unsigned int write_through: 1; member
|
/third_party/python/Python/ |
D | pylifecycle.c | 2146 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/ |
D | test_io.py | 2649 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/ |
D | saxutils.py | 110 write_through=True)
|
/third_party/python/Doc/library/ |
D | io.rst | 942 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/ |
D | pvr_pds.h | 836 bool write_through,
|
D | pvr_pds.c | 126 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/ |
D | KVM-Test-API.asciidoc | 315 unsigned int write_through: 1;
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1485 *write_through* optional argument. If *write_through* is ``True``, calls to
|
/third_party/python/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 | 2547 Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through attribute.
|
/third_party/python/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
|