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 __anone43e45a90202()
65 neighbor::NameDbModule::impl::impl(const neighbor::NameDbModule& module) : module_(module) {} in impl()
67 void neighbor::NameDbModule::impl::ReadRemoteNameRequest( in ReadRemoteNameRequest()
89 void neighbor::NameDbModule::impl::OnRemoteNameResponse(hci::ErrorCode status, hci::Address address… 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()
112 neighbor::NameDbModule::NameDbModule() : pimpl_(std::make_unique<impl>(*this)) {} in NameDbModule()
114 neighbor::NameDbModule::~NameDbModule() { in ~NameDbModule()
118 void neighbor::NameDbModule::ReadRemoteNameRequest( in ReadRemoteNameRequest()
128 bool neighbor::NameDbModule::IsNameCached(hci::Address address) const { in IsNameCached()
132 RemoteName neighbor::NameDbModule::ReadCachedRemoteName(hci::Address address) const { in ReadCachedRemoteName()
136 void neighbor::NameDbModule::impl::Start() { in Start()
137 name_module_ = module_.GetDependency<neighbor::NameModule>(); in Start()
141 void neighbor::NameDbModule::impl::Stop() {} in Stop()
146 void neighbor::NameDbModule::ListDependencies(ModuleList* list) { in ListDependencies()
147 list->add<neighbor::NameModule>(); in ListDependencies()
150 void neighbor::NameDbModule::Start() { in Start()
154 void neighbor::NameDbModule::Stop() { in Stop()