Searched refs:aclInfo (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/distributedhardware/device_manager/test/servicesfuzztest/deviceprofileconnector_fuzzer/ |
H A D | device_profile_connector_fuzzer.cpp | 40 DmAclInfo aclInfo; in DeviceProfileConnectorFuzzTest() local 41 aclInfo.bindType = *(reinterpret_cast<const int32_t*>(data)); in DeviceProfileConnectorFuzzTest() 42 aclInfo.bindLevel = *(reinterpret_cast<const int32_t*>(data)); in DeviceProfileConnectorFuzzTest() 43 aclInfo.trustDeviceId = trustDeviceId; in DeviceProfileConnectorFuzzTest() 44 aclInfo.deviceIdHash = deviceIdHash; in DeviceProfileConnectorFuzzTest() 45 aclInfo.authenticationType = *(reinterpret_cast<const int32_t*>(data)); in DeviceProfileConnectorFuzzTest() 61 DeviceProfileConnector::GetInstance().PutAccessControlList(aclInfo, dmAccesser, dmAccessee); in DeviceProfileConnectorFuzzTest()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/btm/ |
H A D | btm_snoop_filter_acl.c | 429 cmpinfo.remoteAddr = aclInfo->addr; in ProcessL2capConnectionRequest() 441 if (*psm == L2CAP_AVDTP_PSM && ExistL2capConnIsAvdtpSignal(aclInfo->handle)) { in ProcessL2capConnectionRequest() 466 .aclHandle = aclInfo->handle, in ProcessL2capConnectionResponse() 509 .aclHandle = aclInfo->handle, in ProcessL2capConfigurationRequest() 555 .aclHandle = aclInfo->handle, in ProcessL2capConfigurationResponse() 642 if (aclInfo == NULL) { in RfcommDlciFilterCheck() 655 cmpinfo.remoteAddr = aclInfo->addr; in RfcommDlciFilterCheck() 975 if (aclInfo == NULL) { in BtmFilterAclData() 980 if (aclInfo->prevPktIsFiltered) { in BtmFilterAclData() 986 aclInfo->prevPktIsFiltered = false; in BtmFilterAclData() [all …]
|
/ohos5.0/foundation/distributedhardware/device_manager/services/implementation/src/ |
H A D | device_manager_service_impl.cpp | 645 DmAclInfo aclInfo; in PutIdenticalAccountToAcl() local 646 aclInfo.bindType = IDENTICAL_ACCOUNT; in PutIdenticalAccountToAcl() 647 aclInfo.trustDeviceId = trustDeviceId; in PutIdenticalAccountToAcl() 648 aclInfo.authenticationType = ALLOW_AUTH_ALWAYS; in PutIdenticalAccountToAcl() 649 aclInfo.deviceIdHash = localUdidHash; in PutIdenticalAccountToAcl() 658 DeviceProfileConnector::GetInstance().PutAccessControlList(aclInfo, accesser, accessee); in PutIdenticalAccountToAcl()
|
/ohos5.0/foundation/distributedhardware/device_manager/services/implementation/src/authentication/ |
H A D | dm_auth_manager.cpp | 2203 DmAclInfo aclInfo; in CompatiblePutAcl() local 2204 aclInfo.bindLevel = DEVICE; in CompatiblePutAcl() 2205 aclInfo.bindType = DM_POINT_TO_POINT; in CompatiblePutAcl() 2206 aclInfo.trustDeviceId = remoteDeviceId_; in CompatiblePutAcl() 2212 aclInfo.deviceIdHash = localUdidHash; in CompatiblePutAcl() 2540 DmAclInfo aclInfo; in PutAccessControlList() local 2541 aclInfo.bindType = DM_ACROSS_ACCOUNT; in PutAccessControlList() 2543 aclInfo.bindType = DM_IDENTICAL_ACCOUNT; in PutAccessControlList() 2547 aclInfo.bindType = DM_POINT_TO_POINT; in PutAccessControlList() 2551 aclInfo.trustDeviceId = remoteDeviceId_; in PutAccessControlList() [all …]
|
/ohos5.0/foundation/distributedhardware/device_manager/commondependency/src/ |
H A D | deviceprofile_connector.cpp | 421 int32_t DeviceProfileConnector::PutAccessControlList(DmAclInfo aclInfo, DmAccesser dmAccesser, DmAc… in PutAccessControlList() argument 437 profile.SetBindType(aclInfo.bindType); in PutAccessControlList() 438 profile.SetBindLevel(aclInfo.bindLevel); in PutAccessControlList() 440 profile.SetTrustDeviceId(aclInfo.trustDeviceId); in PutAccessControlList() 442 profile.SetDeviceIdHash(aclInfo.deviceIdHash); in PutAccessControlList() 443 profile.SetAuthenticationType(aclInfo.authenticationType); in PutAccessControlList()
|
/ohos5.0/foundation/distributedhardware/device_manager/commondependency/include/ |
H A D | deviceprofile_connector.h | 91 …virtual int32_t PutAccessControlList(DmAclInfo aclInfo, DmAccesser dmAccesser, DmAccessee dmAccess… 123 int32_t PutAccessControlList(DmAclInfo aclInfo, DmAccesser dmAccesser, DmAccessee dmAccessee);
|
/ohos5.0/foundation/distributedhardware/device_manager/test/commonunittest/ |
H A D | UTTest_dm_deviceprofile_connector.cpp | 504 DmAclInfo aclInfo; variable 507 …int32_t ret = DeviceProfileConnector::GetInstance().PutAccessControlList(aclInfo, dmAccesser, dmAc…
|