/third_party/openssl/doc/man3/ |
D | BIO_f_readbuffer.pod | 6 - read only buffering BIO that supports BIO_tell() and BIO_seek() 16 BIO_f_readbuffer() returns the read buffering BIO method. 21 Data read from a read buffering BIO comes from an internal buffer which is 24 BIO_gets() is supported for read buffering BIOs. 25 Writing data to a read buffering BIO is not supported. 27 Calling BIO_reset() on a read buffering BIO does not clear any buffered data. 31 Read buffering BIOs implement BIO_read_ex() by using BIO_read_ex() operations 42 BIO_f_readbuffer() returns the read buffering BIO method.
|
D | BIO_f_buffer.pod | 11 - buffering BIO 27 BIO_f_buffer() returns the buffering BIO method. 29 Data written to a buffering BIO is buffered and periodically written 30 to the next BIO in the chain. Data read from a buffering BIO comes from 34 Calling BIO_reset() on a buffering BIO clears any buffered data. 59 buffering BIO to a chain it is therefore possible to provide 69 whenever any pending data should be written such as when removing a buffering 75 BIO_f_buffer() returns the buffering BIO method.
|
/third_party/python/Lib/test/ |
D | test_winconsoleio.py | 97 f = open('C:/con', 'rb', buffering=0) 104 f = open(r'\\.\conin$', 'rb', buffering=0) 108 f = open('//?/conout$', 'wb', buffering=0) 118 with open(conout_path, 'wb', buffering=0) as f: 163 with open('CONIN$', 'rb', buffering=0) as stdin: 182 with open('CONIN$', 'rb', buffering=0) as stdin: 193 with open('CONIN$', 'rb', buffering=0) as stdin:
|
/third_party/python/Modules/_io/ |
D | _iomodule.c | 234 int buffering, const char *encoding, const char *errors, in _io_open_impl() argument 367 if (binary && buffering == 1) { in _io_open_impl() 404 if (buffering < 0) { in _io_open_impl() 414 if (buffering == 1 || isatty) { in _io_open_impl() 415 buffering = -1; in _io_open_impl() 421 if (buffering < 0) { in _io_open_impl() 426 buffering = PyLong_AsLong(blksize_obj); in _io_open_impl() 428 if (buffering == -1 && PyErr_Occurred()) in _io_open_impl() 431 if (buffering < 0) { in _io_open_impl() 438 if (buffering == 0) { in _io_open_impl() [all …]
|
/third_party/curl/docs/cmdline-opts/ |
D | no-buffer.md | 6 Help: Disable buffering of the output stream 18 Disables the buffering of the output stream. In normal work situations, curl 21 option disables that buffering. 24 enable buffering again.
|
/third_party/littlefs/scripts/ |
D | teepipe.py | 18 def openio(path, mode='r', buffering=-1): argument 22 return os.fdopen(os.dup(sys.stdin.fileno()), mode, buffering) 24 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 26 return open(path, mode, buffering)
|
D | changeprefix.py | 27 def openio(path, mode='r', buffering=-1): argument 31 return os.fdopen(os.dup(sys.stdin.fileno()), mode, buffering) 33 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 35 return open(path, mode, buffering)
|
D | tailpipe.py | 22 def openio(path, mode='r', buffering=-1): argument 26 return os.fdopen(os.dup(sys.stdin.fileno()), mode, buffering) 28 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 30 return open(path, mode, buffering)
|
D | watch.py | 33 def openio(path, mode='r', buffering=-1): argument 37 return os.fdopen(os.dup(sys.stdin.fileno()), mode, buffering) 39 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 41 return open(path, mode, buffering)
|
D | prettyasserts.py | 46 def openio(path, mode='r', buffering=-1): argument 50 return os.fdopen(os.dup(sys.stdin.fileno()), mode, buffering) 52 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 54 return open(path, mode, buffering)
|
D | data.py | 128 def openio(path, mode='r', buffering=-1): argument 132 return os.fdopen(os.dup(sys.stdin.fileno()), mode, buffering) 134 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 136 return open(path, mode, buffering)
|
/third_party/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
|
/third_party/python/Modules/_io/clinic/ |
D | _iomodule.c.h | 134 int buffering, const char *encoding, const char *errors, 147 int buffering = -1; in _io_open() local 181 buffering = _PyLong_AsInt(args[2]); in _io_open() 182 if (buffering == -1 && PyErr_Occurred()) { in _io_open() 269 …return_value = _io_open_impl(module, file, mode, buffering, encoding, errors, newline, closefd, op… in _io_open()
|
/third_party/libsnd/src/ |
D | ogg.c | 470 int buffering = SF_FALSE ; in ogg_stream_seek_page_search() local 515 { if (buffering == SF_TRUE) in ogg_stream_seek_page_search() 517 buffering = SF_FALSE ; in ogg_stream_seek_page_search() 553 if (buffering) in ogg_stream_seek_page_search() 555 buffering = SF_FALSE ; in ogg_stream_seek_page_search() 594 { if (buffering == SF_TRUE) in ogg_stream_seek_page_search() 606 buffering = SF_FALSE ; in ogg_stream_seek_page_search() 622 if (buffering) in ogg_stream_seek_page_search() 640 buffering = SF_TRUE ; in ogg_stream_seek_page_search() 687 if (buffering == SF_FALSE) in ogg_stream_seek_page_search()
|
/third_party/python/Lib/ |
D | tempfile.py | 538 def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None, argument 571 file = _io.open(fd, mode, buffering=buffering, 591 def TemporaryFile(mode='w+b', buffering=-1, encoding=None, argument 637 return _io.open(fd, mode, buffering=buffering, 648 return _io.open(fd, mode, buffering=buffering, 661 def __init__(self, max_size=0, mode='w+b', buffering=-1, argument 673 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 | os.py | 976 def popen(cmd, mode="r", buffering=-1): argument 981 if buffering == 0 or buffering is None: 988 bufsize=buffering) 994 bufsize=buffering) 1023 def fdopen(fd, mode="r", buffering=-1, encoding=None, *args, **kwargs): argument 1029 return io.open(fd, mode, buffering, encoding, *args, **kwargs)
|
D | _pyio.py | 73 def open(file, mode="r", buffering=-1, encoding=None, errors=None, argument 202 if not isinstance(buffering, int): 203 raise TypeError("invalid buffering: %r" % buffering) 237 if binary and buffering == 1: 252 if buffering == 1 or buffering < 0 and raw.isatty(): 253 buffering = -1 255 if buffering < 0: 256 buffering = DEFAULT_BUFFER_SIZE 263 buffering = bs 264 if buffering < 0: [all …]
|
/third_party/EGL/extensions/NV/ |
D | EGL_NV_n_buffer.txt | 117 1. Why do we need triple-buffering? 128 2. Why quadruple-buffering? Isn't triple-buffering enough to 133 operating on a system, triple-buffering is sufficient. However, 140 3. Then why not arbitrary n-buffering?
|
/third_party/mbedtls/library/ |
D | ssl_msg.c | 2480 ssl->handshake->buffering.seen_ccs = 0; in mbedtls_ssl_recv_flight_completed() 3123 for (offset = 0, hs_buf = &hs->buffering.hs[0]; in mbedtls_ssl_update_handshake_status() 4003 if (!hs->buffering.seen_ccs) { in ssl_load_buffered_message() 4018 hs->buffering.seen_ccs = 0; in ssl_load_buffered_message() 4027 hs_buf = &hs->buffering.hs[offset]; in ssl_load_buffered_message() 4039 hs_buf = &hs->buffering.hs[0]; in ssl_load_buffered_message() 4091 hs->buffering.total_bytes_buffered)) { in ssl_buffer_make_space() 4110 hs->buffering.total_bytes_buffered)) { in ssl_buffer_make_space() 4135 hs->buffering.seen_ccs = 1; in ssl_buffer_message() 4168 hs_buf = &hs->buffering.hs[recv_msg_seq_offset]; in ssl_buffer_message() [all …]
|
/third_party/node/lib/internal/child_process/ |
D | serialization.js | 58 channel.buffering = false; 101 channel.buffering = channel[kMessageBufferSize] > 0; 155 channel.buffering = channel[kJSONBuffer].length !== 0;
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_texture_multi_buffer.txt | 35 Conceptually this is similar to frame buffer double-buffering, 37 OpenGL to promote such double-buffering if and wherever possible. 43 GL_FASTEST in this context means that texture multi-buffering
|
/third_party/openGLES/extensions/SGIX/ |
D | SGIX_texture_multi_buffer.txt | 35 Conceptually this is similar to frame buffer double-buffering, 37 OpenGL to promote such double-buffering if and wherever possible. 43 GL_FASTEST in this context means that texture multi-buffering
|
/third_party/ffmpeg/doc/ |
D | formats.texi | 21 Reduce buffering. 53 Reduce the latency introduced by buffering during initial input streams analysis. 94 Set max memory used for buffering real-time frames. 143 Set maximum buffering duration for interleaving. The duration is 150 can result in excessive buffering. 157 If set to 0, libavformat will continue buffering packets until it has
|
/third_party/python/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
|