Searched refs:HcsDeal (Results 1 – 4 of 4) sorted by relevance
28 class HcsDeal {33 HcsDeal(const std::string &pathName);34 virtual ~HcsDeal();35 HcsDeal(const HcsDeal &other) = delete;36 HcsDeal(HcsDeal &&other) = delete;37 HcsDeal &operator=(const HcsDeal &other) = delete;38 HcsDeal &operator=(HcsDeal &&other) = delete;
26 class HcsDeal; variable
25 HcsDeal::HcsDeal(const std::string &pathName) : sPathName(pathName), pDevResIns(nullptr), pRootNode… in HcsDeal() function in OHOS::Camera::HcsDeal27 HcsDeal::~HcsDeal() in ~HcsDeal()34 void HcsDeal::SetHcsPathName(const std::string &pathName) in SetHcsPathName()39 RetCode HcsDeal::Init() in Init()64 RetCode HcsDeal::DealHcsData() in DealHcsData()94 RetCode HcsDeal::DealCameraAbility(const struct DeviceResourceNode &node) in DealCameraAbility()133 RetCode HcsDeal::DealPhysicsCameraId(const struct DeviceResourceNode &node, std::vector<std::string… in DealPhysicsCameraId()145 RetCode HcsDeal::DealMetadata(const std::string &cameraId, const struct DeviceResourceNode &node) in DealMetadata()192 RetCode HcsDeal::DealAeAvailableAntiBandingModes( in DealAeAvailableAntiBandingModes()213 RetCode HcsDeal::DealAeAvailableModes( in DealAeAvailableModes()[all …]
60 std::unique_ptr<HcsDeal> hcsDeal = std::make_unique<HcsDeal>(CONFIG_PATH_NAME); in ReadConfigFile()