Lines Matching refs:routerInfo

5803     otRouterInfo routerInfo;  in Process()  local
5853 if (otThreadGetRouterInfo(GetInstancePtr(), i, &routerInfo) != OT_ERROR_NONE) in Process()
5860 OutputFormat("| %2u ", routerInfo.mRouterId); in Process()
5861 OutputFormat("| 0x%04x ", routerInfo.mRloc16); in Process()
5862 OutputFormat("| %8u ", routerInfo.mNextHop); in Process()
5863 OutputFormat("| %9u ", routerInfo.mPathCost); in Process()
5864 OutputFormat("| %5u ", routerInfo.mLinkQualityIn); in Process()
5865 OutputFormat("| %6u ", routerInfo.mLinkQualityOut); in Process()
5866 OutputFormat("| %3u ", routerInfo.mAge); in Process()
5868 OutputExtAddress(routerInfo.mExtAddress); in Process()
5869 OutputLine(" | %4d |", routerInfo.mLinkEstablished); in Process()
5918 SuccessOrExit(error = otThreadGetRouterInfo(GetInstancePtr(), routerId, &routerInfo)); in Process()
5920 OutputLine("Alloc: %d", routerInfo.mAllocated); in Process()
5922 if (routerInfo.mAllocated) in Process()
5924 OutputLine("Router ID: %u", routerInfo.mRouterId); in Process()
5925 OutputLine("Rloc: %04x", routerInfo.mRloc16); in Process()
5926 OutputLine("Next Hop: %04x", static_cast<uint16_t>(routerInfo.mNextHop) << 10); in Process()
5927 OutputLine("Link: %d", routerInfo.mLinkEstablished); in Process()
5929 if (routerInfo.mLinkEstablished) in Process()
5932 OutputExtAddressLine(routerInfo.mExtAddress); in Process()
5933 OutputLine("Cost: %u", routerInfo.mPathCost); in Process()
5934 OutputLine("Link Quality In: %u", routerInfo.mLinkQualityIn); in Process()
5935 OutputLine("Link Quality Out: %u", routerInfo.mLinkQualityOut); in Process()
5936 OutputLine("Age: %u", routerInfo.mAge); in Process()