Lines Matching refs:hci
41 …void ReadRemoteNameRequest(hci::Address address, ReadRemoteNameDbCallback callback, os::Handler* h…
43 bool IsNameCached(hci::Address address) const;
44 RemoteName ReadCachedRemoteName(hci::Address address) const;
52 std::unordered_map<hci::Address, PendingRemoteNameRead> address_to_pending_read_map_;
53 std::unordered_map<hci::Address, RemoteName> address_to_name_map_;
55 void OnRemoteNameResponse(hci::ErrorCode status, hci::Address address, RemoteName name);
68 hci::Address address, ReadRemoteNameDbCallback callback, os::Handler* handler) { in ReadRemoteNameRequest()
77 hci::PageScanRepetitionMode page_scan_repetition_mode = hci::PageScanRepetitionMode::R1; in ReadRemoteNameRequest()
79 hci::ClockOffsetValid clock_offset_valid = hci::ClockOffsetValid::INVALID; in ReadRemoteNameRequest()
89 void neighbor::NameDbModule::impl::OnRemoteNameResponse(hci::ErrorCode status, hci::Address address… in OnRemoteNameResponse()
93 if (status == hci::ErrorCode::SUCCESS) { in OnRemoteNameResponse()
97 …common::BindOnce(std::move(callback_handler.callback_), address, status == hci::ErrorCode::SUCCESS… in OnRemoteNameResponse()
100 bool neighbor::NameDbModule::impl::IsNameCached(hci::Address address) const { in IsNameCached()
104 RemoteName neighbor::NameDbModule::impl::ReadCachedRemoteName(hci::Address address) const { in ReadCachedRemoteName()
119 hci::Address address, ReadRemoteNameDbCallback callback, os::Handler* handler) { in ReadRemoteNameRequest()
128 bool neighbor::NameDbModule::IsNameCached(hci::Address address) const { in IsNameCached()
132 RemoteName neighbor::NameDbModule::ReadCachedRemoteName(hci::Address address) const { in ReadCachedRemoteName()