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

  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerStreamListener.cpp 55 void NuPlayer::NuPlayerStreamListener::queueBuffer(size_t index, size_t size) {
NuPlayerRenderer.cpp 57 void NuPlayer::Renderer::queueBuffer(
  /frameworks/base/services/surfaceflinger/
SurfaceTextureLayer.cpp 55 status_t SurfaceTextureLayer::queueBuffer(int buf, int64_t timestamp,
58 status_t res = SurfaceTexture::queueBuffer(buf, timestamp,
  /frameworks/base/media/libstagefright/httplive/
LiveDataSource.cpp 136 void LiveDataSource::queueBuffer(const sp<ABuffer> &buffer) {
  /frameworks/base/media/libmedia/
IStreamSource.cpp 126 virtual void queueBuffer(size_t index, size_t size) {
164 queueBuffer(index, size);
  /frameworks/base/libs/ui/
FramebufferNativeWindow.cpp 142 ANativeWindow::queueBuffer = queueBuffer;
251 int FramebufferNativeWindow::queueBuffer(ANativeWindow* window,
  /frameworks/base/libs/gui/
ISurfaceTexture.cpp 104 virtual status_t queueBuffer(int buf, int64_t timestamp,
265 status_t result = queueBuffer(buf, timestamp,
SurfaceTextureClient.cpp 51 ANativeWindow::queueBuffer = hook_queueBuffer;
105 return c->queueBuffer(buffer);
213 int SurfaceTextureClient::queueBuffer(android_native_buffer_t* buffer) {
214 LOGV("SurfaceTextureClient::queueBuffer");
219 LOGV("SurfaceTextureClient::queueBuffer making up timestamp: %.2f ms",
228 status_t err = mSurfaceTexture->queueBuffer(i, timestamp,
231 LOGE("queueBuffer: error queuing buffer to SurfaceTexture, %d", err);
688 err = queueBuffer(mLockedBuffer.get());
689 LOGE_IF(err, "queueBuffer (handle=%p) failed (%s)",
SurfaceTexture.cpp 538 status_t SurfaceTexture::queueBuffer(int buf, int64_t timestamp,
540 ST_LOGV("queueBuffer: slot=%d time=%lld", buf, timestamp);
547 ST_LOGE("queueBuffer: SurfaceTexture has been abandoned!");
551 ST_LOGE("queueBuffer: slot index out of range [0, %d]: %d",
555 ST_LOGE("queueBuffer: slot %d is not owned by the client "
559 ST_LOGE("queueBuffer: slot %d is current!", buf);
562 ST_LOGE("queueBuffer: slot %d was enqueued without requesting a "
    [all...]
  /frameworks/base/media/libstagefright/
SurfaceMediaSource.cpp 458 status_t SurfaceMediaSource::queueBuffer(int bufIndex, int64_t timestamp,
460 LOGV("queueBuffer");
468 LOGE("queueBuffer: slot index out of range [0, %d]: %d",
472 LOGE("queueBuffer: slot %d is not owned by the client (state=%d)",
476 LOGE("queueBuffer: slot %d was enqueued without requesting a "
534 // It is supposed to be called only from queuebuffer.
  /system/core/include/system/
window.h 134 /* Check whether queueBuffer operations on the ANativeWindow send the buffer
290 * by the native window when queueBuffer is called. This is equal to INT64_MIN,
348 * either queueBuffer or cancelBuffer, so clients only need their own
372 * either queueBuffer or cancelBuffer, so clients only need their own
381 int (*queueBuffer)(struct ANativeWindow* window,
432 * either queueBuffer or cancelBuffer, so clients only need their own
577 * (the default), timestamps will be generated automatically when queueBuffer is

Completed in 369 milliseconds