Lines Matching refs:remote
81 ASSERT(hci::Address::FromString(request->remote().address(), peer)); in OpenChannel()
145 …hci::ErrorCode hci_status, hci::Address remote, LinkSecurityInterfaceCallbackEventType event_type)… in SecurityConnectionEventOccurred() argument
147 msg.mutable_address()->set_address(remote.ToString()); in SecurityConnectionEventOccurred()
223 auto remote = link->GetRemoteAddress(); in OnLinkConnected() local
224 if (outgoing_pairing_remote_devices_.count(remote) == 1) { in OnLinkConnected()
227 outgoing_pairing_remote_devices_.erase(remote); in OnLinkConnected()
229 security_link_map_.emplace(remote, std::move(link)); in OnLinkConnected()
231 hci::ErrorCode::SUCCESS, remote, LinkSecurityInterfaceCallbackEventType::ON_CONNECTED); in OnLinkConnected()
234 void OnLinkDisconnected(hci::Address remote) override { in OnLinkDisconnected() argument
235 auto entry = security_link_map_.find(remote); in OnLinkDisconnected()
237 LOG_WARN("Unknown address '%s'", remote.ToString().c_str()); in OnLinkDisconnected()
243 hci::ErrorCode::SUCCESS, remote, LinkSecurityInterfaceCallbackEventType::ON_DISCONNECTED); in OnLinkDisconnected()
246 void OnAuthenticationComplete(hci::ErrorCode hci_status, hci::Address remote) override { in OnAuthenticationComplete() argument
247 auto entry = security_link_map_.find(remote); in OnAuthenticationComplete()
253 hci_status, remote, LinkSecurityInterfaceCallbackEventType::ON_AUTHENTICATION_COMPLETE); in OnAuthenticationComplete()
256 void OnEncryptionChange(hci::Address remote, bool encrypted) override { in OnEncryptionChange() argument
258 … hci::ErrorCode::SUCCESS, remote, LinkSecurityInterfaceCallbackEventType::ON_ENCRYPTION_CHANGE); in OnEncryptionChange()