• Home
  • Raw
  • Download

Lines Matching refs:remote

105 void LinkManager::InitiateConnectionForSecurity(hci::Address remote) {  in InitiateConnectionForSecurity()  argument
106 auto* link = GetLink(remote); in InitiateConnectionForSecurity()
108 LOG_ERROR("Link already exists for %s", remote.ToString().c_str()); in InitiateConnectionForSecurity()
110 acl_manager_->CreateConnection(remote); in InitiateConnectionForSecurity()
127 void LinkManager::OnPendingPacketChange(hci::Address remote, int num_packets) { in OnPendingPacketChange() argument
128 if (disconnected_links_.count(remote) != 0 && num_packets == 0) { in OnPendingPacketChange()
129 links_.erase(remote); in OnPendingPacketChange()
130 links_with_pending_packets_.erase(remote); in OnPendingPacketChange()
132 links_with_pending_packets_.emplace(remote); in OnPendingPacketChange()
134 links_with_pending_packets_.erase(remote); in OnPendingPacketChange()
145 void LinkManager::handle_link_security_hold(hci::Address remote) { in handle_link_security_hold() argument
146 auto link = GetLink(remote); in handle_link_security_hold()
154 void LinkManager::handle_link_security_release(hci::Address remote) { in handle_link_security_release() argument
155 auto link = GetLink(remote); in handle_link_security_release()
163 void LinkManager::handle_link_security_disconnect(hci::Address remote) { in handle_link_security_disconnect() argument
164 auto link = GetLink(remote); in handle_link_security_disconnect()
172 void LinkManager::handle_link_security_ensure_authenticated(hci::Address remote) { in handle_link_security_ensure_authenticated() argument
173 auto link = GetLink(remote); in handle_link_security_ensure_authenticated()
181 void LinkManager::handle_link_security_ensure_encrypted(hci::Address remote) { in handle_link_security_ensure_encrypted() argument
182 auto link = GetLink(remote); in handle_link_security_ensure_encrypted()
402 void LinkManager::OnRoleChange(hci::ErrorCode hci_status, hci::Address remote, hci::Role role) { in OnRoleChange() argument
405 link_property_listener_, &LinkPropertyListener::OnRoleChange, hci_status, remote, role); in OnRoleChange()
409 void LinkManager::OnReadClockOffset(hci::Address remote, uint16_t clock_offset) { in OnReadClockOffset() argument
412 link_property_listener_, &LinkPropertyListener::OnReadClockOffset, remote, clock_offset); in OnReadClockOffset()
416 void LinkManager::OnModeChange(hci::ErrorCode hci_status, hci::Address remote, hci::Mode mode, uint… in OnModeChange() argument
419 … link_property_listener_, &LinkPropertyListener::OnModeChange, hci_status, remote, mode, interval); in OnModeChange()
425 hci::Address remote, in OnSniffSubrating() argument
435 remote, in OnSniffSubrating()