HomeSort by relevance Sort by last modified time
    Searched refs:obtainBuffer (Results 1 - 7 of 7) sorted by null

  /frameworks/base/include/media/
AudioRecord.h 57 /* Create Buffer on the stack and pass it to obtainBuffer()
218 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
299 * filled entirely. If the track is stopped, obtainBuffer() returns
303 * is exhausted, at which point obtainBuffer() will either block
313 status_t obtainBuffer(Buffer* audioBuffer, int32_t waitCount);
AudioTrack.h 62 /* Create Buffer on the stack and pass it to obtainBuffer()
231 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
243 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
390 * filled entirely. If the track is stopped, obtainBuffer() returns
394 * is exhausted, at which point obtainBuffer() will either block
404 status_t obtainBuffer(Buffer* audioBuffer, int32_t waitCount);
  /frameworks/base/media/libmedia/
AudioRecord.cpp 105 // it is looping on buffer empty condition in obtainBuffer().
458 status_t AudioRecord::obtainBuffer(Buffer* audioBuffer, int32_t waitCount)
488 LOGW( "obtainBuffer timed out (is the CPU pegged?) "
493 LOGW("obtainBuffer() dead IAudioRecord: creating a new one");
580 // obtainBuffer() we give a chance to recover once for a read timeout
583 status_t err = obtainBuffer(&audioBuffer, ((2 * MAX_RUN_TIMEOUT_MS) / WAIT_PERIOD_MS));
632 // Calling obtainBuffer() with a wait count of 1
635 status_t err = obtainBuffer(&audioBuffer, 1);
AudioTrack.cpp 123 // it is looping on buffer full condition in obtainBuffer().
414 // in AudioTrack::obtainBuffer()
771 status_t AudioTrack::obtainBuffer(Buffer* audioBuffer, int32_t waitCount)
802 LOGW("obtainBuffer() track %p invalidated, creating a new one", this);
813 LOGW( "obtainBuffer timed out (is the CPU pegged?) %p "
819 LOGW("obtainBuffer() dead IAudioTrack: creating a new one");
849 LOGW("obtainBuffer() track %p disabled, restarting", this);
909 // Calling obtainBuffer() with a negative wait count causes
911 status_t err = obtainBuffer(&audioBuffer, -1);
1001 // Calling obtainBuffer() with a wait count of
    [all...]
  /frameworks/base/voip/jni/rtp/
AudioGroup.cpp 807 status_t status = track.obtainBuffer(&buffer, 1);
823 status_t status = record.obtainBuffer(&buffer, 1);
  /frameworks/base/services/audioflinger/
AudioFlinger.h 547 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
    [all...]
AudioFlinger.cpp     [all...]

Completed in 63 milliseconds