Home
last modified time | relevance | path

Searched refs:isGlobalChanged (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/
H A Dset_browser_policies_plugin_test.cpp148 bool isGlobalChanged = true; variable
149 plugin.OnHandlePolicyDone(0, adminName, isGlobalChanged, userId);
150 ASSERT_TRUE(isGlobalChanged);
163 bool isGlobalChanged = false; variable
164 plugin.OnHandlePolicyDone(0, adminName, isGlobalChanged, userId);
165 ASSERT_FALSE(isGlobalChanged);
/ohos5.0/base/customization/enterprise_device_management/interfaces/inner_api/plugin_kits/include/
H A Diplugin_template.tpp215 const bool isGlobalChanged, int32_t userId)
223 ErrCode res = entry->second.handlePolicyDone_(adminName, isGlobalChanged, type, userId);
224 …EDMLOGI("IPluginTemplate::OnHandlePolicyDone operate: %{public}d, isGlobalChanged: %{public}d, res…
225 type, isGlobalChanged, res);
234 …auto handle = [this](const std::string &adminName, bool isGlobalChanged, FuncOperateType funcOpera…
240 (instance_.get()->*(entry->second.boolConsumer_))(isGlobalChanged);
252 …auto handle = [this](const std::string &adminName, bool isGlobalChanged, FuncOperateType funcOpera…
262 (instance_.get()->*(entry->second.biBoolConsumer_))(currentData, isGlobalChanged, userId);
H A Diplugin_template.h47 bool isGlobalChanged, int32_t userId) override;
178 typedef void (CT::*BoolConsumer)(bool isGlobalChanged);
188 typedef void (CT::*BiBoolConsumer)(DT &data, bool isGlobalChanged, int32_t userId);
H A Diplugin.h93 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged,
/ohos5.0/base/customization/enterprise_device_management/services/edm_plugin/src/
H A Dallowed_bluetooth_devices_plugin.cpp103 void AllowedBluetoothDevicesPlugin::OnChangedPolicyDone(bool isGlobalChanged) in OnChangedPolicyDone() argument
105 if (!isGlobalChanged) { in OnChangedPolicyDone()
H A Dset_browser_policies_plugin.cpp214 bool isGlobalChanged, int32_t userId) in OnHandlePolicyDone() argument
216 if (!isGlobalChanged) { in OnHandlePolicyDone()
/ohos5.0/base/customization/enterprise_device_management/test/unittest/services/edm/include/
H A Dplugin_manager_test.h50 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged, in OnHandlePolicyDone() argument
96 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged, in OnHandlePolicyDone() argument
H A Diplugin_template_test.h243 void SetDone(bool isGlobalChanged) { g_visit = true; } in SetDone() argument
245 void RemoveDone(bool isGlobalChanged) { g_visit = true; } in RemoveDone() argument
261 void SetDone(std::string &data, bool isGlobalChanged, int32_t userId) { g_visit = true; } in SetDone() argument
263 void RemoveDone(std::string &data, bool isGlobalChanged, int32_t userId) { g_visit = true; } in RemoveDone() argument
/ohos5.0/base/customization/enterprise_device_management/services/edm_plugin/include/
H A Dallowed_bluetooth_devices_plugin.h32 void OnChangedPolicyDone(bool isGlobalChanged);
H A Duser_cert_plugin.h31 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged, in OnHandlePolicyDone() argument
H A Ddisallowed_usb_devices_plugin.h29 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged, in OnHandlePolicyDone() argument
H A Dpower_policy_plugin.h33 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged, in OnHandlePolicyDone() argument
H A Dusb_read_only_plugin.h31 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged, in OnHandlePolicyDone() argument
H A Dset_browser_policies_plugin.h31 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged,
H A Diptables_rule_plugin.h32 …void OnHandlePolicyDone(std::uint32_t funcCode, const std::string &adminName, bool isGlobalChanged, in OnHandlePolicyDone() argument
/ohos5.0/base/customization/enterprise_device_management/test/unittest/interface/plugin_kits/mock/
H A Diplugin_mock.h39 bool isGlobalChanged, int32_t userId) override {} in OnHandlePolicyDone() argument
/ohos5.0/base/customization/enterprise_device_management/services/edm/src/
H A Denterprise_device_mgr_ability.cpp1049 bool isGlobalChanged = false; in UpdateDevicePolicy() local
1057 isGlobalChanged = (oldCombinePolicy != mergedPolicy); in UpdateDevicePolicy()
1059 plugin->OnHandlePolicyDone(code, bundleName, isGlobalChanged, userId); in UpdateDevicePolicy()