Home
last modified time | relevance | path

Searched refs:buffering (Results 1 – 25 of 235) sorted by relevance

12345678910

/third_party/openssl/doc/man3/
DBIO_f_readbuffer.pod6 - 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.
DBIO_f_buffer.pod11 - 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/
Dtest_winconsoleio.py97 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.c234 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/
Dno-buffer.md6 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/
Dteepipe.py18 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)
Dchangeprefix.py27 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)
Dtailpipe.py22 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)
Dwatch.py33 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)
Dprettyasserts.py46 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)
Ddata.py128 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/
Dperf.rst7 #. 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.h134 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/
Dogg.c470 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/
Dtempfile.py538 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,
Dsocket.py302 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)
Dos.py976 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.py73 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/
DEGL_NV_n_buffer.txt117 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/
Dssl_msg.c2480 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/
Dserialization.js58 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/
DSGIX_texture_multi_buffer.txt35 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/
DSGIX_texture_multi_buffer.txt35 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/
Dformats.texi21 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/
Dfile.rst20 .. 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

12345678910