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

  /frameworks/native/services/surfaceflinger/DisplayHardware/
FramebufferSurface.cpp 80 // Once we remove FB HAL support, we can call nextBuffer() from here
86 status_t FramebufferSurface::nextBuffer(sp<GraphicBuffer>& outBuffer, sp<Fence>& outFence) {
128 status_t err = nextBuffer(buf, acquireFence);
  /frameworks/av/media/libstagefright/
MediaBuffer.cpp 181 MediaBuffer *MediaBuffer::nextBuffer() {
  /frameworks/base/libs/androidfw/
ZipUtils.cpp 109 unsigned char* nextBuffer = NULL;
110 const unsigned long nextSize = reader.read(&nextBuffer, getSize);
112 if (nextSize < getSize || nextBuffer == NULL) {
119 zstream.next_in = nextBuffer;
162 long read(unsigned char** nextBuffer, long readSize) const {
163 *nextBuffer = mReadBuf;
182 long read(unsigned char** nextBuffer, long readSize) const {
183 *nextBuffer = mReadBuf;
200 long read(unsigned char** nextBuffer, long /*readSize*/) {
203 *nextBuffer = mInput
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrBufferAllocPool.cpp 271 uint32_t nextBuffer = (fPreallocBuffersInUse +
274 block.fBuffer = fPreallocBuffers[nextBuffer];
  /external/skia/src/gpu/
GrBufferAllocPool.cpp 271 uint32_t nextBuffer = (fPreallocBuffersInUse +
274 block.fBuffer = fPreallocBuffers[nextBuffer];
  /development/ndk/platforms/android-9/samples/native-audio/jni/
native-audio-jni.c 100 static short *nextBuffer;
121 if (--nextCount > 0 && NULL != nextBuffer && 0 != nextSize) {
124 result = (*bqPlayerBufferQueue)->Enqueue(bqPlayerBufferQueue, nextBuffer, nextSize);
518 nextBuffer = (short *) NULL;
522 nextBuffer = (short *) hello;
526 nextBuffer = (short *) android;
530 nextBuffer = sawtoothBuffer;
543 nextBuffer = recorderBuffer;
547 nextBuffer = NULL;
556 result = (*bqPlayerBufferQueue)->Enqueue(bqPlayerBufferQueue, nextBuffer, nextSize)
    [all...]

Completed in 377 milliseconds