HomeSort by relevance Sort by last modified time
    Searched defs:buffering (Results 1 - 11 of 11) sorted by null

  /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/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
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
bz2module.c 819 Write the 'data' string to file. Note that due to buffering, close() may\n\
1371 int buffering = -1; local
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 808 Write the 'data' string to file. Note that due to buffering, close() may\n\
1364 int buffering = -1; local
    [all...]
  /external/python/cpython3/Python/
pylifecycle.c 1071 int buffering, isatty; local
1086 buffering = 0;
1088 buffering = -1;
1094 fd, mode, buffering,
1100 if (buffering) {
    [all...]
  /frameworks/av/media/libmedia/
IMediaPlayer.cpp 178 status_t setBufferingSettings(const BufferingSettings& buffering)
182 buffering.writeToParcel(&data);
187 status_t getBufferingSettings(BufferingSettings* buffering /* nonnull */)
189 if (buffering == nullptr) {
197 err = buffering->readFromParcel(&reply);
698 BufferingSettings buffering; local
699 buffering.readFromParcel(&data);
700 reply->writeInt32(setBufferingSettings(buffering));
705 BufferingSettings buffering; local
706 status_t err = getBufferingSettings(&buffering);
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2.cpp 435 BufferingSettings *buffering /* nonnull */) {
442 readFromAMessage(response, buffering);
448 status_t NuPlayer2::setBufferingSettings(const BufferingSettings& buffering) {
450 writeToAMessage(msg, buffering);
718 BufferingSettings buffering; local
721 err = mSource->getBufferingSettings(&buffering);
727 writeToAMessage(response, buffering);
740 BufferingSettings buffering; local
741 readFromAMessage(msg, &buffering);
744 err = mSource->setBufferingSettings(buffering);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 347 BufferingSettings *buffering /* nonnull */) {
354 readFromAMessage(response, buffering);
360 status_t NuPlayer::setBufferingSettings(const BufferingSettings& buffering) {
362 writeToAMessage(msg, buffering);
580 BufferingSettings buffering; local
583 err = mSource->getBufferingSettings(&buffering);
589 writeToAMessage(response, buffering);
602 BufferingSettings buffering; local
603 readFromAMessage(msg, &buffering);
606 err = mSource->setBufferingSettings(buffering);
    [all...]

Completed in 1062 milliseconds