Searched defs:CameraState (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/include/camera/
H A DICameraServiceProxy.h39 enum CameraState { enum in class:android::ICameraServiceProxy
49 virtual void notifyCameraState(String16 cameraId, CameraState newCameraState) = 0;
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h179 ICameraServiceProxy::CameraState newState,
421 class CameraState { class in class:android::CameraService
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,
H A DCameraService.cpp257 mCameraStates.emplace(cameraId, std::make_shared<CameraState>(cameraId, cost,
305 std::shared_ptr<CameraState> state = getCameraState(id);
1779 std::shared_ptr<CameraService::CameraState> CameraService::getCameraState(
1781 std::shared_ptr<CameraState> state;
2311 // CameraState
2314 CameraService::CameraState::CameraState(const String8& id, int cost, function in class:android::CameraService::CameraState
2318 CameraService::CameraState::~CameraState() {}
2320 int32_t CameraService::CameraState
[all...]

Completed in 466 milliseconds