HomeSort by relevance Sort by last modified time
    Searched defs:cameraState (Results 1 - 3 of 3) sorted by null

  /frameworks/av/services/camera/libcameraservice/
CameraService.h 179 ICameraServiceProxy::CameraState newState,
421 class CameraState {
424 * Make a new CameraState and set the ID, cost, and conflicting devices using the values
427 CameraState(const String8& id, int cost, const std::set<String8>& conflicting);
428 virtual ~CameraState();
485 }; // class CameraState
529 std::map<String8, std::shared_ptr<CameraState>> mCameraStates;
551 std::shared_ptr<CameraService::CameraState> getCameraState(const String8& cameraId) const;
768 void CameraService::CameraState::updateStatus(int32_t status,
    [all...]
CameraService.cpp 257 mCameraStates.emplace(cameraId, std::make_shared<CameraState>(cameraId, cost,
305 std::shared_ptr<CameraState> state = getCameraState(id);
868 auto cameraState = getCameraState(id);
869 if (cameraState == nullptr) {
874 CameraParameters p = cameraState->getShimParams();
893 auto cameraState = getCameraState(id);
894 if (cameraState == nullptr) {
899 CameraParameters p = cameraState->getShimParams();
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCameraAgentImpl.java 618 int cameraState = mCameraState.getState();
620 "] at CameraState[" + cameraState + "]";
647 ex, generateHistoryString(mCameraId), cameraAction, cameraState);
    [all...]

Completed in 253 milliseconds