Home | History | Annotate | Download | only in camera2

Lines Matching refs:buffer

481         CpuConsumer::LockedBuffer buffer;
482 res = rawConsumer->lockNextBuffer(&buffer);
488 ALOGV("Dumping raw buffer to %s", dumpname);
492 buffer.height; y++) {
494 (const char *)(buffer.data + y * buffer.stride * bpp),
495 buffer.width * bpp);
500 res = rawConsumer->unlockBuffer(buffer);
634 CpuConsumer::LockedBuffer buffer;
635 res = rawConsumer->lockNextBuffer(&buffer);
644 ALOGV("Dumping raw buffer to %s", dumpname);
647 for (unsigned int y = 0; y < buffer.height; y++) {
649 (const char *)(buffer.data + y * buffer.stride * 2),
650 buffer.width * 2);
655 res = rawConsumer->unlockBuffer(buffer);
784 CpuConsumer::LockedBuffer buffer;
785 res = jpegConsumer->lockNextBuffer(&buffer);
791 ALOGV("Dumping raw buffer to %s", dumpname);
795 for (unsigned int y = 0; y < buffer.height; y++) {
797 (const char *)(buffer.data + y * buffer.stride * bpp),
798 buffer.width * bpp);
803 res = jpegConsumer->unlockBuffer(buffer);