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

/frameworks/base/core/java/android/hardware/
H A DCamera.java675 * @param callbackBuffer the buffer to add to the queue. The size of the
679 public final void addCallbackBuffer(byte[] callbackBuffer) argument
681 _addCallbackBuffer(callbackBuffer, CAMERA_MSG_PREVIEW_FRAME);
713 * @param callbackBuffer the buffer to add to the raw image callback buffer
715 * null callbackBuffer will be ignored and won't be added to the queue.
722 public final void addRawImageCallbackBuffer(byte[] callbackBuffer) argument
724 addCallbackBuffer(callbackBuffer, CAMERA_MSG_RAW_IMAGE);
727 private final void addCallbackBuffer(byte[] callbackBuffer, int msgType) argument
736 _addCallbackBuffer(callbackBuffer, msgType);
740 byte[] callbackBuffer, in
739 _addCallbackBuffer( byte[] callbackBuffer, int msgType) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp396 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb); local
397 mCallbackBuffers.push(callbackBuffer);
412 jbyteArray callbackBuffer = (jbyteArray)env->NewGlobalRef(cbb); local
413 mRawImageCallbackBuffers.push(callbackBuffer);

Completed in 255 milliseconds