Home
last modified time | relevance | path

Searched refs:aclInfo (Results 1 - 7 of 7) sorted by relevance

/foundation/distributedhardware/device_manager/test/servicesfuzztest/deviceprofileconnector_fuzzer/
H A Ddevice_profile_connector_fuzzer.cpp40 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()
62 DeviceProfileConnector::GetInstance().PutAccessControlList(aclInfo, dmAccesser, dmAccessee); in DeviceProfileConnectorFuzzTest()
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/btm/
H A Dbtm_snoop_filter_acl.c412 uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) in ProcessL2capConnectionRequest()
429 cmpinfo.remoteAddr = aclInfo->addr; in ProcessL2capConnectionRequest()
435 l2capInfo = AddL2capConnection(CONNECTING, info->module, aclInfo->handle, *scid, L2CAP_INVALID_CHANNEL_ID); in ProcessL2capConnectionRequest()
437 l2capInfo = AddL2capConnection(CONNECTING, info->module, aclInfo->handle, L2CAP_INVALID_CHANNEL_ID, *scid); in ProcessL2capConnectionRequest()
441 if (*psm == L2CAP_AVDTP_PSM && ExistL2capConnIsAvdtpSignal(aclInfo->handle)) { in ProcessL2capConnectionRequest()
449 uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) in ProcessL2capConnectionResponse()
466 .aclHandle = aclInfo->handle, in ProcessL2capConnectionResponse()
489 uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) in ProcessL2capConfigurationRequest()
509 .aclHandle = aclInfo->handle, in ProcessL2capConfigurationRequest()
530 uint8_t type, const AclConnInfo *aclInfo, cons in ProcessL2capConfigurationResponse()
411 ProcessL2capConnectionRequest( uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) ProcessL2capConnectionRequest() argument
448 ProcessL2capConnectionResponse( uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) ProcessL2capConnectionResponse() argument
488 ProcessL2capConfigurationRequest( uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) ProcessL2capConfigurationRequest() argument
529 ProcessL2capConfigurationResponse( uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) ProcessL2capConfigurationResponse() argument
575 ProcessL2capDisconnectionResponse( uint8_t type, const AclConnInfo *aclInfo, const L2capSignalingHeader *l2capsignalingHeader, const uint8_t *data) ProcessL2capDisconnectionResponse() argument
591 ProcessL2capConnInfo(uint8_t type, const AclConnInfo *aclInfo, const uint8_t *data, uint16_t originalLength) ProcessL2capConnInfo() argument
641 AclConnInfo *aclInfo = ListForEachData(g_aclConnList, FindAclConnInfoByHandle, &aclHandle); RfcommDlciFilterCheck() local
974 AclConnInfo *aclInfo = ListForEachData(g_aclConnList, FindAclConnInfoByHandle, &handle); BtmFilterAclData() local
[all...]
/foundation/distributedhardware/device_manager/services/implementation/src/authentication/
H A Ddm_auth_manager.cpp2070 DmAclInfo aclInfo; in CompatiblePutAcl() local
2071 aclInfo.bindLevel = DEVICE; in CompatiblePutAcl()
2072 aclInfo.bindType = DM_POINT_TO_POINT; in CompatiblePutAcl()
2073 aclInfo.trustDeviceId = remoteDeviceId_; in CompatiblePutAcl()
2075 aclInfo.authenticationType = ALLOW_AUTH_ALWAYS; in CompatiblePutAcl()
2077 aclInfo.authenticationType = ALLOW_AUTH_ONCE; in CompatiblePutAcl()
2079 aclInfo.deviceIdHash = localUdidHash; in CompatiblePutAcl()
2102 DeviceProfileConnector::GetInstance().PutAccessControlList(aclInfo, accesser, accessee); in CompatiblePutAcl()
2247 DmAclInfo aclInfo; in PutAccessControlList() local
2248 aclInfo in PutAccessControlList()
[all...]
/foundation/distributedhardware/device_manager/commondependency/src/
H A Ddeviceprofile_connector.cpp421 int32_t DeviceProfileConnector::PutAccessControlList(DmAclInfo aclInfo, DmAccesser dmAccesser, DmAccessee dmAccessee) 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()
/foundation/distributedhardware/device_manager/services/implementation/src/
H A Ddevice_manager_service_impl.cpp621 DmAclInfo aclInfo; in PutIdenticalAccountToAcl() local
622 aclInfo.bindType = IDENTICAL_ACCOUNT; in PutIdenticalAccountToAcl()
623 aclInfo.trustDeviceId = trustDeviceId; in PutIdenticalAccountToAcl()
624 aclInfo.authenticationType = ALLOW_AUTH_ALWAYS; in PutIdenticalAccountToAcl()
625 aclInfo.deviceIdHash = localUdidHash; in PutIdenticalAccountToAcl()
634 DeviceProfileConnector::GetInstance().PutAccessControlList(aclInfo, accesser, accessee); in PutIdenticalAccountToAcl()
/foundation/distributedhardware/device_manager/commondependency/include/
H A Ddeviceprofile_connector.h99 int32_t PutAccessControlList(DmAclInfo aclInfo, DmAccesser dmAccesser, DmAccessee dmAccessee);
/foundation/distributedhardware/device_manager/test/commonunittest/
H A DUTTest_dm_deviceprofile_connector.cpp504 DmAclInfo aclInfo; in HWTEST_F() local
507 int32_t ret = DeviceProfileConnector::GetInstance().PutAccessControlList(aclInfo, dmAccesser, dmAccessee); in HWTEST_F()

Completed in 11 milliseconds