Home
last modified time | relevance | path

Searched refs:neighborInfo (Results 1 – 3 of 3) sorted by relevance

/external/ot-br-posix/src/dbus/server/
Ddbus_thread_object.cpp1002 otNeighborInfo neighborInfo; in GetNeighborTableHandler() local
1005 …while (otThreadGetNextNeighborInfo(threadHelper->GetInstance(), &iter, &neighborInfo) == OT_ERROR_… in GetNeighborTableHandler()
1009 info.mExtAddress = ConvertOpenThreadUint64(neighborInfo.mExtAddress.m8); in GetNeighborTableHandler()
1010 info.mAge = neighborInfo.mAge; in GetNeighborTableHandler()
1011 info.mRloc16 = neighborInfo.mRloc16; in GetNeighborTableHandler()
1012 info.mLinkFrameCounter = neighborInfo.mLinkFrameCounter; in GetNeighborTableHandler()
1013 info.mMleFrameCounter = neighborInfo.mMleFrameCounter; in GetNeighborTableHandler()
1014 info.mLinkQualityIn = neighborInfo.mLinkQualityIn; in GetNeighborTableHandler()
1015 info.mAverageRssi = neighborInfo.mAverageRssi; in GetNeighborTableHandler()
1016 info.mLastRssi = neighborInfo.mLastRssi; in GetNeighborTableHandler()
[all …]
/external/ot-br-posix/src/openwrt/ubus/
Dotubus.cpp781 otNeighborInfo neighborInfo; in UbusNeighborHandlerDetail() local
793 …while (otThreadGetNextNeighborInfo(mController->GetInstance(), &iterator, &neighborInfo) == OT_ERR… in UbusNeighborHandlerDetail()
797 blobmsg_add_string(&mBuf, "Role", neighborInfo.mIsChild ? "C" : "R"); in UbusNeighborHandlerDetail()
799 sprintf(transfer, "0x%04x", neighborInfo.mRloc16); in UbusNeighborHandlerDetail()
802 sprintf(transfer, "%3d", neighborInfo.mAge); in UbusNeighborHandlerDetail()
805 sprintf(transfer, "%8d", neighborInfo.mAverageRssi); in UbusNeighborHandlerDetail()
808 sprintf(transfer, "%9d", neighborInfo.mLastRssi); in UbusNeighborHandlerDetail()
811 if (neighborInfo.mRxOnWhenIdle) in UbusNeighborHandlerDetail()
816 if (neighborInfo.mFullThreadDevice) in UbusNeighborHandlerDetail()
821 if (neighborInfo.mFullNetworkData) in UbusNeighborHandlerDetail()
[all …]
/external/openthread/src/cli/
Dcli.cpp3109 otNeighborInfo neighborInfo; in Process() local
3130 … while (otThreadGetNextNeighborInfo(GetInstancePtr(), &iterator, &neighborInfo) == OT_ERROR_NONE) in Process()
3134 OutputFormat("| %3c ", neighborInfo.mIsChild ? 'C' : 'R'); in Process()
3135 OutputFormat("| 0x%04x ", neighborInfo.mRloc16); in Process()
3136 OutputFormat("| %3d ", neighborInfo.mAge); in Process()
3137 OutputFormat("| %8d ", neighborInfo.mAverageRssi); in Process()
3138 OutputFormat("| %9d ", neighborInfo.mLastRssi); in Process()
3139 OutputFormat("|%1d", neighborInfo.mRxOnWhenIdle); in Process()
3140 OutputFormat("|%1d", neighborInfo.mFullThreadDevice); in Process()
3141 OutputFormat("|%1d", neighborInfo.mFullNetworkData); in Process()
[all …]