Searched defs:callbackBuffer (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp394 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb); local
395 mCallbackBuffers.push(callbackBuffer);
410 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb); local
411 mRawImageCallbackBuffers.push(callbackBuffer);
/frameworks/base/core/java/android/hardware/
H A DCamera.java641 * @param callbackBuffer the buffer to add to the queue. The size of the
645 public final void addCallbackBuffer(byte[] callbackBuffer) argument
647 _addCallbackBuffer(callbackBuffer, CAMERA_MSG_PREVIEW_FRAME);
679 * @param callbackBuffer the buffer to add to the raw image callback buffer
681 * null callbackBuffer will be ignored and won't be added to the queue.
688 public final void addRawImageCallbackBuffer(byte[] callbackBuffer) argument
690 addCallbackBuffer(callbackBuffer, CAMERA_MSG_RAW_IMAGE);
693 private final void addCallbackBuffer(byte[] callbackBuffer, int msgType) argument
702 _addCallbackBuffer(callbackBuffer, msgType);
706 byte[] callbackBuffer, in
705 _addCallbackBuffer( byte[] callbackBuffer, int msgType) argument
[all...]

Completed in 57 milliseconds