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

  /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...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
RTSPSource.cpp 88 BufferingSettings* buffering /* nonnull */) {
89 buffering->mInitialBufferingMode = BUFFERING_MODE_TIME_ONLY;
90 buffering->mRebufferingMode = BUFFERING_MODE_TIME_ONLY;
91 buffering->mInitialWatermarkMs = kPrepareMarkMs;
92 buffering->mRebufferingWatermarkLowMs = kUnderflowMarkMs;
93 buffering->mRebufferingWatermarkHighMs = kOverflowMarkMs;
98 status_t NuPlayer::RTSPSource::setBufferingSettings(const BufferingSettings& buffering) {
100 mBufferingSettings = buffering;
105 writeToAMessage(msg, buffering);
255 // We should not enter buffering mod
519 BufferingSettings buffering; local
    [all...]
NuPlayer.cpp 339 BufferingSettings *buffering /* nonnull */) {
346 readFromAMessage(response, buffering);
352 status_t NuPlayer::setBufferingSettings(const BufferingSettings& buffering) {
354 writeToAMessage(msg, buffering);
565 BufferingSettings buffering; local
568 err = mSource->getDefaultBufferingSettings(&buffering);
574 writeToAMessage(response, buffering);
587 BufferingSettings buffering; local
588 readFromAMessage(msg, &buffering);
591 err = mSource->setBufferingSettings(buffering);
    [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...]
  /frameworks/av/media/libmedia/
IMediaPlayer.cpp 171 status_t setBufferingSettings(const BufferingSettings& buffering)
175 buffering.writeToParcel(&data);
180 status_t getDefaultBufferingSettings(BufferingSettings* buffering /* nonnull */)
182 if (buffering == nullptr) {
190 err = buffering->readFromParcel(&reply);
629 BufferingSettings buffering; local
630 buffering.readFromParcel(&data);
631 reply->writeInt32(setBufferingSettings(buffering));
636 BufferingSettings buffering; local
637 status_t err = getDefaultBufferingSettings(&buffering);
    [all...]

Completed in 820 milliseconds