• Home
  • Raw
  • Download

Lines Matching refs:neighbor

31 namespace neighbor {  namespace
57 neighbor::NameModule* name_module_;
63 const ModuleFactory neighbor::NameDbModule::Factory = ModuleFactory([]() { return new neighbor::Nam… in __anonca2456900202()
65 neighbor::NameDbModule::impl::impl(const neighbor::NameDbModule& module) : module_(module) {} in impl()
67 void neighbor::NameDbModule::impl::ReadRemoteNameRequest( in ReadRemoteNameRequest()
92 void neighbor::NameDbModule::impl::OnRemoteNameResponse(hci::ErrorCode status, hci::Address address… in OnRemoteNameResponse()
104 bool neighbor::NameDbModule::impl::IsNameCached(hci::Address address) const { in IsNameCached()
108 RemoteName neighbor::NameDbModule::impl::ReadCachedRemoteName(hci::Address address) const { in ReadCachedRemoteName()
116 neighbor::NameDbModule::NameDbModule() : pimpl_(std::make_unique<impl>(*this)) {} in NameDbModule()
118 neighbor::NameDbModule::~NameDbModule() { in ~NameDbModule()
122 void neighbor::NameDbModule::ReadRemoteNameRequest( in ReadRemoteNameRequest()
132 bool neighbor::NameDbModule::IsNameCached(hci::Address address) const { in IsNameCached()
136 RemoteName neighbor::NameDbModule::ReadCachedRemoteName(hci::Address address) const { in ReadCachedRemoteName()
140 void neighbor::NameDbModule::impl::Start() { in Start()
141 name_module_ = module_.GetDependency<neighbor::NameModule>(); in Start()
145 void neighbor::NameDbModule::impl::Stop() {} in Stop()
150 void neighbor::NameDbModule::ListDependencies(ModuleList* list) { in ListDependencies()
151 list->add<neighbor::NameModule>(); in ListDependencies()
154 void neighbor::NameDbModule::Start() { in Start()
158 void neighbor::NameDbModule::Stop() { in Stop()