/external/curl/docs/cmdline-opts/ |
D | no-buffer.d | 3 Help: Disable buffering of the output stream 6 Disables the buffering of the output stream. In normal work situations, curl 9 Using this option will disable that buffering. 12 --buffer to enforce the buffering.
|
/external/python/cpython3/Lib/test/ |
D | test_winconsoleio.py | 95 f = open('C:/con', 'rb', buffering=0) 102 f = open(r'\\.\conin$', 'rb', buffering=0) 106 f = open('//?/conout$', 'wb', buffering=0) 116 with open(conout_path, 'wb', buffering=0) as f: 160 with open('CONIN$', 'rb', buffering=0) as stdin: 179 with open('CONIN$', 'rb', buffering=0) as stdin: 190 with open('CONIN$', 'rb', buffering=0) as stdin:
|
D | test_popen.py | 62 with os.popen(cmd="exit 0", mode="w", buffering=-1):
|
/external/python/cpython2/Modules/_io/ |
D | _iomodule.c | 295 int buffering = -1, closefd = 1; in io_open() local 309 &file, &mode, &buffering, in io_open() 436 if (buffering == 1 || (buffering < 0 && isatty)) { in io_open() 437 buffering = -1; in io_open() 443 if (buffering < 0) { in io_open() 444 buffering = DEFAULT_BUFFER_SIZE; in io_open() 459 buffering = st.st_blksize; in io_open() 463 if (buffering < 0) { in io_open() 470 if (buffering == 0) { in io_open() 497 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering); in io_open()
|
/external/mesa3d/docs/ |
D | perf.rst | 7 #. Turn off depth buffering when you don't need it. 9 #. Use double buffering as it's often faster than single buffering 20 depth buffering is GL_LESS, or disabled flat or smooth shading 25 buffering is GL_LESS or disabled flat shading dithered or 32 buffering is GL_LESS or disabled
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.c | 232 int buffering, const char *encoding, const char *errors, in _io_open_impl() argument 365 if (binary && buffering == 1) { in _io_open_impl() 402 if (buffering < 0) { in _io_open_impl() 412 if (buffering == 1 || isatty) { in _io_open_impl() 413 buffering = -1; in _io_open_impl() 419 if (buffering < 0) { in _io_open_impl() 424 buffering = PyLong_AsLong(blksize_obj); in _io_open_impl() 426 if (buffering == -1 && PyErr_Occurred()) in _io_open_impl() 429 if (buffering < 0) { in _io_open_impl() 436 if (buffering == 0) { in _io_open_impl() [all …]
|
/external/python/cpython3/Modules/_io/clinic/ |
D | _iomodule.c.h | 134 int buffering, const char *encoding, const char *errors, 147 int buffering = -1; in _io_open() local 186 buffering = _PyLong_AsInt(args[2]); in _io_open() 187 if (buffering == -1 && PyErr_Occurred()) { in _io_open() 279 …return_value = _io_open_impl(module, file, mode, buffering, encoding, errors, newline, closefd, op… in _io_open()
|
/external/llvm-project/lldb/packages/Python/lldbsuite/support/ |
D | encoded_file.py | 51 buffering=-1, argument 58 buffering=buffering,
|
/external/autotest/client/bin/ |
D | autotestd | 20 stdout = open(os.path.join(logdir, 'stdout'), 'a', buffering=2) 21 stderr = open(os.path.join(logdir, 'stderr'), 'a', buffering=2) 39 exit_file = open(os.path.join(logdir, 'exit_code'), 'wb', buffering=0)
|
D | autotestd_monitor | 19 stderr = open(os.path.join(logdir, 'stderr'), 'a', buffering=2)
|
/external/yapf/yapftests/ |
D | utils.py | 46 buffering=-1, argument 65 buffering=buffering,
|
/external/python/cpython3/Lib/ |
D | tempfile.py | 513 def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None, argument 543 file = _io.open(fd, mode, buffering=buffering, 563 def TemporaryFile(mode='w+b', buffering=-1, encoding=None, argument 606 return _io.open(fd, mode, buffering=buffering, 617 return _io.open(fd, mode, buffering=buffering, 630 def __init__(self, max_size=0, mode='w+b', buffering=-1, argument 641 self._TemporaryFileArgs = {'mode': mode, 'buffering': buffering,
|
D | socket.py | 302 def makefile(self, mode="r", buffering=None, *, argument 323 if buffering is None: 324 buffering = -1 325 if buffering < 0: 326 buffering = io.DEFAULT_BUFFER_SIZE 327 if buffering == 0: 332 buffer = io.BufferedRWPair(raw, raw, buffering) 334 buffer = io.BufferedReader(raw, buffering) 337 buffer = io.BufferedWriter(raw, buffering)
|
D | _pyio.py | 43 def open(file, mode="r", buffering=-1, encoding=None, errors=None, argument 172 if not isinstance(buffering, int): 173 raise TypeError("invalid buffering: %r" % buffering) 207 if binary and buffering == 1: 222 if buffering == 1 or buffering < 0 and raw.isatty(): 223 buffering = -1 225 if buffering < 0: 226 buffering = DEFAULT_BUFFER_SIZE 233 buffering = bs 234 if buffering < 0: [all …]
|
D | os.py | 974 def popen(cmd, mode="r", buffering=-1): argument 979 if buffering == 0 or buffering is None: 986 bufsize=buffering) 992 bufsize=buffering)
|
/external/grpc-grpc/doc/cpp/ |
D | perf_notes.md | 3 ## Streaming write buffering 19 GRPC_ARG_HTTP2_WRITE_BUFFER_SIZE) - this prevents infinite buffering leading
|
/external/python/cpython2/Lib/ |
D | _pyio.py | 44 def open(file, mode="r", buffering=-1, argument 159 if not isinstance(buffering, (int, long)): 160 raise TypeError("invalid buffering: %r" % buffering) 199 if buffering == 1 or buffering < 0 and raw.isatty(): 200 buffering = -1 202 if buffering < 0: 203 buffering = DEFAULT_BUFFER_SIZE 210 buffering = bs 211 if buffering < 0: 213 if buffering == 0: [all …]
|
D | httplib.py | 364 def __init__(self, sock, debuglevel=0, strict=0, method=None, buffering=False): argument 365 if buffering: 1084 def getresponse(self, buffering=False): argument 1114 if buffering: 1186 def getreply(self, buffering=False): argument 1195 if not buffering: 1200 response = self._conn.getresponse(buffering)
|
/external/python/cpython3/Doc/c-api/ |
D | file.rst | 20 .. c:function:: PyObject* PyFile_FromFd(int fd, const char *name, const char *mode, int buffering, … 24 can be ``NULL`` to use the defaults; *buffering* can be *-1* to use the 31 Since Python streams have their own buffering layer, mixing them with
|
/external/antlr/runtime/ObjC/Framework/ |
D | CHANGES.txt | 11 * Add currently empty ANTLRCommonTreeNodeStream class, which will be buffering tree nodes
|
/external/python/parse_type/tasks/_vendor/ |
D | path.py | 1416 def in_place(self, mode='r', buffering=-1, encoding=None, errors=None, argument 1454 readable = io.open(backup_fn, mode, buffering=buffering, 1460 buffering=buffering, encoding=encoding, errors=errors, 1468 buffering=buffering, encoding=encoding, errors=errors,
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_TFRecordDataset.pbtxt | 22 0 means no buffering will be performed.
|
/external/python/cpython2/Doc/library/ |
D | io.rst | 39 :class:`BufferedIOBase` deals with buffering on a raw byte stream 66 .. function:: open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=… 111 *buffering* is an optional integer used to set the buffering policy. 112 Pass 0 to switch buffering off (only allowed in binary mode), 1 to select 113 line buffering (only usable in text mode), and an integer > 1 to indicate 114 the size of a fixed-size chunk buffer. When no *buffering* argument is 115 given, the default buffering policy works as follows: 123 use line buffering. Other text files use the policy described above 174 a file in a binary mode with buffering, the returned class is a subclass of 178 :class:`BufferedRandom`. When buffering is disabled, the raw stream, a [all …]
|
/external/one-true-awk/testdir/ |
D | T.redir | 28 diff foo1 foo2 || echo 'BAD: T.redir (buffering)'
|
/external/python/cpython3/Objects/ |
D | fileobject.c | 33 PyFile_FromFd(int fd, const char *name, const char *mode, int buffering, const char *encoding, in PyFile_FromFd() argument 43 buffering, encoding, errors, in PyFile_FromFd()
|