HomeSort by relevance Sort by last modified time
    Searched refs:buffering (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/python/cpython3/Modules/_io/clinic/
_iomodule.c.h 6 "open($module, /, file, mode=\'r\', buffering=-1, encoding=None,\n"
59 "buffering is an optional integer used to set the buffering policy.\n"
60 "Pass 0 to switch buffering off (only allowed in binary mode), 1 to select\n"
61 "line buffering (only usable in text mode), and an integer > 1 to indicate\n"
62 "the size of a fixed-size chunk buffer. When no buffering argument is\n"
63 "given, the default buffering policy works as follows:\n"
71 " use line buffering. Other text files use the policy described above\n"
134 int buffering, const char *encoding, const char *errors,
141 static const char * const _keywords[] = {"file", "mode", "buffering", "encoding", "errors", "newline", "closefd", "opener", NULL}
145 int buffering = -1; local
    [all...]
  /external/curl/docs/cmdline-opts/
no-buffer.d 3 Help: Disable buffering of the output stream
5 Disables the buffering of the output stream. In normal work situations, curl
8 Using this option will disable that buffering.
11 --buffer to enforce the buffering.
  /frameworks/av/media/libmediaplayerservice/nuplayer/
StreamingSource.h 36 BufferingSettings* buffering /* nonnull */) override;
37 virtual status_t setBufferingSettings(const BufferingSettings& buffering) override;
HTTPLiveSource.h 38 BufferingSettings* buffering /* nonnull */) override;
39 virtual status_t setBufferingSettings(const BufferingSettings& buffering) override;
NuPlayerSource.h 70 BufferingSettings* buffering /* nonnull */) = 0;
71 virtual status_t setBufferingSettings(const BufferingSettings& buffering) = 0;
RTSPSource.h 44 BufferingSettings* buffering /* nonnull */) override;
45 virtual status_t setBufferingSettings(const BufferingSettings& buffering) override;
  /external/yapf/yapftests/
utils.py 42 # Note: `buffering` is set to -1 despite documentation of NamedTemporaryFile
46 buffering=-1,
65 buffering=buffering,
  /external/python/cpython3/Lib/test/
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:
158 with open('CONIN$', 'rb', buffering=0) as stdin:
175 with open('CONIN$', 'rb', buffering=0) as stdin:
186 with open('CONIN$', 'rb', buffering=0) as stdin:
test_popen.py 61 with os.popen(cmd="exit 0", mode="w", buffering=-1):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 69 "BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"
225 "buffering is an optional integer used to set the buffering policy.\n"
226 "Pass 0 to switch buffering off (only allowed in binary mode), 1 to select\n"
227 "line buffering (only usable in text mode), and an integer > 1 to indicate\n"
228 "the size of a fixed-size chunk buffer. When no buffering argument is\n"
229 "given, the default buffering policy works as follows:\n"
237 " use line buffering. Other text files use the policy described above\n"
293 char *kwlist[] = {"file", "mode", "buffering",
298 int buffering = -1, closefd = 1;
295 int buffering = -1, closefd = 1; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 69 "BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"
225 "buffering is an optional integer used to set the buffering policy.\n"
226 "Pass 0 to switch buffering off (only allowed in binary mode), 1 to select\n"
227 "line buffering (only usable in text mode), and an integer > 1 to indicate\n"
228 "the size of a fixed-size chunk buffer. When no buffering argument is\n"
229 "given, the default buffering policy works as follows:\n"
237 " use line buffering. Other text files use the policy described above\n"
293 char *kwlist[] = {"file", "mode", "buffering",
298 int buffering = -1, closefd = 1;
295 int buffering = -1, closefd = 1; local
    [all...]
  /external/python/cpython2/Modules/_io/
_iomodule.c 69 "BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"
225 "buffering is an optional integer used to set the buffering policy.\n"
226 "Pass 0 to switch buffering off (only allowed in binary mode), 1 to select\n"
227 "line buffering (only usable in text mode), and an integer > 1 to indicate\n"
228 "the size of a fixed-size chunk buffer. When no buffering argument is\n"
229 "given, the default buffering policy works as follows:\n"
237 " use line buffering. Other text files use the policy described above\n"
293 char *kwlist[] = {"file", "mode", "buffering",
298 int buffering = -1, closefd = 1
295 int buffering = -1, closefd = 1; local
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
HTTPLiveSource2.h 38 BufferingSettings* buffering /* nonnull */) override;
39 virtual status_t setBufferingSettings(const BufferingSettings& buffering) override;
NuPlayer2Source.h 69 BufferingSettings* buffering /* nonnull */) = 0;
70 virtual status_t setBufferingSettings(const BufferingSettings& buffering) = 0;
RTSPSource2.h 43 BufferingSettings* buffering /* nonnull */) override;
44 virtual status_t setBufferingSettings(const BufferingSettings& buffering) override;
NuPlayer2Driver.h 41 BufferingSettings* buffering /* nonnull */) override;
42 virtual status_t setBufferingSettings(const BufferingSettings& buffering) override;
  /frameworks/av/media/libstagefright/include/media/stagefright/
Utils.h 85 void writeToAMessage(const sp<AMessage> &msg, const BufferingSettings &buffering);
86 void readFromAMessage(const sp<AMessage> &msg, BufferingSettings *buffering /* nonnull */);
  /external/python/cpython3/Modules/_io/
_iomodule.c 71 "BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"
105 buffering: int = -1
161 buffering is an optional integer used to set the buffering policy.
162 Pass 0 to switch buffering off (only allowed in binary mode), 1 to select
163 line buffering (only usable in text mode), and an integer > 1 to indicate
164 the size of a fixed-size chunk buffer. When no buffering argument is
165 given, the default buffering policy works as follows:
173 use line buffering. Other text files use the policy described above
234 int buffering, const char *encoding, const char *errors
    [all...]
  /device/google/bonito/
device-common.mk 28 PRODUCT_PROPERTY_OVERRIDES += audio.adm.buffering.ms=3
29 PRODUCT_PROPERTY_OVERRIDES += vendor.audio.adm.buffering.ms=3
  /external/webrtc/webrtc/modules/audio_coding/acm2/
initial_delay_manager.h 69 // Returns true if the timestamp is valid (when buffering), otherwise false.
73 // the constructor). Buffering might be disabled by the client of this class.
74 bool buffering() { return buffering_; } function in class:webrtc::acm2::InitialDelayManager
76 // Disable buffering in the class.
79 // True if any packet received for buffering.
85 // Update playout timestamps. While buffering, this is about
  /external/python/cpython3/Lib/
tempfile.py 520 def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None,
527 'buffering' -- the buffer size argument to io.open (default -1).
549 file = _io.open(fd, mode, buffering=buffering,
569 def TemporaryFile(mode='w+b', buffering=-1, encoding=None,
576 'buffering' -- the buffer size argument to io.open (default -1).
611 return _io.open(fd, mode, buffering=buffering,
621 return _io.open(fd, mode, buffering=buffering,
    [all...]
socket.py 221 def makefile(self, mode="r", buffering=None, *,
242 if buffering is None:
243 buffering = -1
244 if buffering < 0:
245 buffering = io.DEFAULT_BUFFER_SIZE
246 if buffering == 0:
251 buffer = io.BufferedRWPair(raw, raw, buffering)
253 buffer = io.BufferedReader(raw, buffering)
256 buffer = io.BufferedWriter(raw, buffering)
  /cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-3913/
poc.cpp 52 status_t getBufferingSettings(BufferingSettings *buffering) {
56 status_t setBufferingSettings(const BufferingSettings &buffering) {
  /device/google/crosshatch/
device-common.mk 36 PRODUCT_PROPERTY_OVERRIDES += audio.adm.buffering.ms=3
37 PRODUCT_PROPERTY_OVERRIDES += vendor.audio.adm.buffering.ms=3
  /frameworks/av/media/libmedia/include/media/
IMediaPlayer.h 65 BufferingSettings* buffering /* nonnull */) = 0;
66 virtual status_t setBufferingSettings(const BufferingSettings& buffering) = 0;

Completed in 1729 milliseconds

1 2 3 4