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

  /frameworks/base/services/camera/libcameraservice/
CameraHardwareStub.cpp 40 mMsgEnabled(0),
129 mMsgEnabled |= msgType;
135 mMsgEnabled &= ~msgType;
141 return (mMsgEnabled & msgType);
182 if (mMsgEnabled & CAMERA_MSG_PREVIEW_FRAME)
256 if (mMsgEnabled & CAMERA_MSG_FOCUS)
282 if (mMsgEnabled & CAMERA_MSG_SHUTTER)
285 if (mMsgEnabled & CAMERA_MSG_RAW_IMAGE) {
296 if (mMsgEnabled & CAMERA_MSG_COMPRESSED_IMAGE) {
CameraHardwareStub.h 125 int32_t mMsgEnabled;
CameraService.h 195 volatile int32_t mMsgEnabled;
CameraService.cpp 309 mMsgEnabled = 0;
847 android_atomic_or(msgType, &mMsgEnabled);
852 android_atomic_and(~msgType, &mMsgEnabled);
859 while (mMsgEnabled & msgType) {
    [all...]
  /device/samsung/crespo/libcamera/
SecCameraHWInterface.cpp 97 mMsgEnabled(0),
434 LOGV("%s : msgType = 0x%x, mMsgEnabled before = 0x%x",
435 __func__, msgType, mMsgEnabled);
436 mMsgEnabled |= msgType;
437 LOGV("%s : mMsgEnabled = 0x%x", __func__, mMsgEnabled);
442 LOGV("%s : msgType = 0x%x, mMsgEnabled before = 0x%x",
443 __func__, msgType, mMsgEnabled);
444 mMsgEnabled &= ~msgType;
445 LOGV("%s : mMsgEnabled = 0x%x", __func__, mMsgEnabled)
    [all...]
SecCameraHWInterface.h 203 int32_t mMsgEnabled;

Completed in 1927 milliseconds