Home | History | Annotate | Download | only in hardware

Lines Matching defs:msgType

1022     private final void addCallbackBuffer(byte[] callbackBuffer, int msgType)
1025 if (msgType != CAMERA_MSG_PREVIEW_FRAME &&
1026 msgType != CAMERA_MSG_RAW_IMAGE) {
1028 "Unsupported message type: " + msgType);
1031 _addCallbackBuffer(callbackBuffer, msgType);
1035 byte[] callbackBuffer, int msgType);
1495 private native final void native_takePicture(int msgType);
1537 int msgType = 0;
1539 msgType |= CAMERA_MSG_SHUTTER;
1542 msgType |= CAMERA_MSG_RAW_IMAGE;
1545 msgType |= CAMERA_MSG_POSTVIEW_FRAME;
1548 msgType |= CAMERA_MSG_COMPRESSED_IMAGE;
1551 native_takePicture(msgType);