/foundation/deviceprofile/device_info_manager/common/src/interfaces/ |
H A D | access_control_profile.cpp | 53 void AccessControlProfile::SetAccessControlId(int64_t accessControlId) in SetAccessControlId() argument 55 accessControlId_ = accessControlId; in SetAccessControlId()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_base_test/ |
H A D | mock_distributed_device_profile_client.cpp | 56 int32_t DistributedDeviceProfileClient::DeleteAccessControlProfile(int32_t accessControlId) in DeleteAccessControlProfile() argument
|
/foundation/deviceprofile/device_info_manager/common/include/interfaces/ |
H A D | access_control_profile.h | 35 void SetAccessControlId(int64_t accessControlId);
|
H A D | i_distributed_device_profile.h | 45 virtual int32_t DeleteAccessControlProfile(int32_t accessControlId) = 0;
|
/foundation/deviceprofile/device_info_manager/interfaces/innerkits/core/include/ |
H A D | distributed_device_profile_client.h | 53 int32_t DeleteAccessControlProfile(int32_t accessControlId);
|
H A D | distributed_device_profile_proxy.h | 49 int32_t DeleteAccessControlProfile(int32_t accessControlId) override;
|
/foundation/deviceprofile/device_info_manager/services/core/test/unittest/ |
H A D | dp_profile_service_test.cpp | 179 int32_t accessControlId = 0; in HWTEST_F() local 180 int32_t ret = DistributedDeviceProfileServiceNew::GetInstance().DeleteAccessControlProfile(accessControlId); in HWTEST_F()
|
H A D | distributed_device_profile_stub_new_test.cpp | 44 int32_t DeleteAccessControlProfile(int32_t accessControlId) override;
132 int32_t MockDistributedDeviceProfileStubNew::DeleteAccessControlProfile(int32_t accessControlId)
in DeleteAccessControlProfile() argument 134 (void)accessControlId;
in DeleteAccessControlProfile()
|
/foundation/deviceprofile/device_info_manager/services/core/include/ |
H A D | distributed_device_profile_service_new.h | 51 int32_t DeleteAccessControlProfile(int32_t accessControlId) override;
|
/foundation/deviceprofile/device_info_manager/services/core/src/ |
H A D | distributed_device_profile_stub_new.cpp | 300 int32_t accessControlId; in DeleteAccessControlProfileInner() local 301 READ_HELPER(data, Int32, accessControlId); in DeleteAccessControlProfileInner() 302 int32_t ret = DeleteAccessControlProfile(accessControlId); in DeleteAccessControlProfileInner()
|
H A D | distributed_device_profile_service_new.cpp | 277 int32_t DistributedDeviceProfileServiceNew::DeleteAccessControlProfile(int32_t accessControlId) in DeleteAccessControlProfile() argument 283 int32_t ret = TrustProfileManager::GetInstance().DeleteAccessControlProfile(accessControlId); in DeleteAccessControlProfile()
|
/foundation/deviceprofile/device_info_manager/interfaces/innerkits/core/src/ |
H A D | distributed_device_profile_client.cpp | 197 int32_t DistributedDeviceProfileClient::DeleteAccessControlProfile(int32_t accessControlId) in DeleteAccessControlProfile() argument 204 return dpService->DeleteAccessControlProfile(accessControlId); in DeleteAccessControlProfile()
|
H A D | distributed_device_profile_proxy.cpp | 123 int32_t DistributedDeviceProfileProxy::DeleteAccessControlProfile(int32_t accessControlId) in DeleteAccessControlProfile() argument 129 WRITE_HELPER(data, Int32, accessControlId); in DeleteAccessControlProfile()
|
/foundation/deviceprofile/device_info_manager/old/services/core/src/ |
H A D | distributed_device_profile_stub.cpp | 452 int32_t accessControlId; in DeleteAccessControlProfileInner() local 453 READ_HELPER(data, Int32, accessControlId); in DeleteAccessControlProfileInner() 454 int32_t ret = DistributedDeviceProfileServiceNew::GetInstance().DeleteAccessControlProfile(accessControlId); in DeleteAccessControlProfileInner()
|
/foundation/deviceprofile/device_info_manager/services/core/src/trustprofilemanager/ |
H A D | trust_profile_manager.cpp | 706 int32_t TrustProfileManager::DeleteAccessControlProfile(int64_t accessControlId) in DeleteAccessControlProfile() argument 710 std::vector<ValueObject>{ ValueObject(accessControlId) }); in DeleteAccessControlProfile() 1098 int64_t accessControlId = ACCESSCONTROLID_INIT; in SetAccessControlId() local 1102 resultSet->GetLong(columnIndex, accessControlId); in SetAccessControlId() 1104 profile.SetAccessControlId(accessControlId+1); in SetAccessControlId() 1537 int64_t accessControlId = rowEntity.Get(ACCESS_CONTROL_ID); in ConvertToAccessControlProfile() local 1551 accessControlProfile.SetAccessControlId(accessControlId); in ConvertToAccessControlProfile() 1853 HILOGE("accessControlId not find"); in UpdateAclCheck()
|
/foundation/deviceprofile/device_info_manager/services/core/include/trustprofilemanager/ |
H A D | trust_profile_manager.h | 53 int32_t DeleteAccessControlProfile(int64_t accessControlId);
|
/foundation/distributedhardware/device_manager/commondependency/include/ |
H A D | deviceprofile_connector.h | 138 void DeleteAccessControlById(int64_t accessControlId);
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/include/ |
H A D | device_manager.h | 601 virtual int32_t DpAclAdd(const int64_t accessControlId, const std::string &udid, const int32_t bindType) = 0;
|
H A D | device_manager_impl.h | 378 virtual int32_t DpAclAdd(const int64_t accessControlId, const std::string &udid, const int32_t bindType) override;
|
/foundation/distributedhardware/device_manager/test/unittest/ |
H A D | UTTest_device_manager_impl.cpp | 2499 int64_t accessControlId = 0;
in HWTEST_F() local 2502 int32_t ret = DeviceManager::GetInstance().DpAclAdd(accessControlId, udid, bindType);
in HWTEST_F() 2505 ret = DeviceManager::GetInstance().DpAclAdd(accessControlId, udid, bindType);
in HWTEST_F() 2510 ret = DeviceManager::GetInstance().DpAclAdd(accessControlId, udid, bindType);
in HWTEST_F()
|
/foundation/distributedhardware/device_manager/commondependency/src/ |
H A D | deviceprofile_connector.cpp | 991 void DeviceProfileConnector::DeleteAccessControlById(int64_t accessControlId) in DeleteAccessControlById() argument 993 DistributedDeviceProfileClient::GetInstance().DeleteAccessControlProfile(accessControlId); in DeleteAccessControlById()
|
/foundation/distributedhardware/device_manager/test/unittest/mock/ |
H A D | mock_distributed_device_profile_client.cpp | 632 int32_t DistributedDeviceProfileClient::DeleteAccessControlProfile(int32_t accessControlId) in DeleteAccessControlProfile() argument
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ |
H A D | device_manager_impl.cpp | 2137 int32_t DeviceManagerImpl::DpAclAdd(const int64_t accessControlId, const std::string &udid, const int32_t bindType) in DpAclAdd() argument
|