Home
last modified time | relevance | path

Searched refs:mNeighborTable (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/src/core/thread/
Dmle_router.cpp1057 mNeighborTable.Signal(NeighborTable::kRouterAdded, *router); in HandleLinkAcceptVariant()
1349 mNeighborTable.Signal(NeighborTable::kRouterAdded, *router); in HandleAdvertisementOnFtd()
3189 neighbor = mNeighborTable.FindNeighbor(aDestination); in SendDataResponse()
3209 neighbor = mNeighborTable.FindNeighbor(aDestination); in SendDataResponse()
3267 mNeighborTable.Signal(NeighborTable::kChildRemoved, aNeighbor); in RemoveNeighbor()
3283 mNeighborTable.Signal(NeighborTable::kRouterRemoved, aNeighbor); in RemoveNeighbor()
3878 mNeighborTable.Signal(NeighborTable::kChildAdded, aChild); in SetChildStateToValid()
Dmle.hpp1497 NeighborTable mNeighborTable; member in ot::Mle::Mle
Dmle.cpp82 , mNeighborTable(aInstance) in Mle()
2413 neighbor = (command == kCommandChildIdResponse) ? mNeighborTable.FindParent(extAddr) in HandleUdpReceive()
2414 : mNeighborTable.FindNeighbor(extAddr); in HandleUdpReceive()
2423 neighbor = mNeighborTable.FindRxOnlyNeighborRouter(extAddr); in HandleUdpReceive()
/openthread-latest/src/core/instance/
Dinstance.hpp793 template <> inline NeighborTable &Instance::Get(void) { return mMleRouter.mNeighborTable; } in Get()