Home
last modified time | relevance | path

Searched refs:aRouterInfo (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/src/cli/
Dcli_mesh_diag.cpp303 void MeshDiag::HandleMeshDiagDiscoverDone(otError aError, otMeshDiagRouterInfo *aRouterInfo, void *… in HandleMeshDiagDiscoverDone() argument
305 reinterpret_cast<MeshDiag *>(aContext)->HandleMeshDiagDiscoverDone(aError, aRouterInfo); in HandleMeshDiagDiscoverDone()
308 void MeshDiag::HandleMeshDiagDiscoverDone(otError aError, otMeshDiagRouterInfo *aRouterInfo) in HandleMeshDiagDiscoverDone() argument
310 VerifyOrExit(aRouterInfo != nullptr); in HandleMeshDiagDiscoverDone()
312 OutputFormat("id:%02u rloc16:0x%04x ext-addr:", aRouterInfo->mRouterId, aRouterInfo->mRloc16); in HandleMeshDiagDiscoverDone()
313 OutputExtAddress(aRouterInfo->mExtAddress); in HandleMeshDiagDiscoverDone()
315 if (aRouterInfo->mVersion != OT_MESH_DIAG_VERSION_UNKNOWN) in HandleMeshDiagDiscoverDone()
317 OutputFormat(" ver:%u", aRouterInfo->mVersion); in HandleMeshDiagDiscoverDone()
320 if (aRouterInfo->mIsThisDevice) in HandleMeshDiagDiscoverDone()
325 if (aRouterInfo->mIsThisDeviceParent) in HandleMeshDiagDiscoverDone()
[all …]
Dcli_mesh_diag.hpp82 …static void HandleMeshDiagDiscoverDone(otError aError, otMeshDiagRouterInfo *aRouterInfo, void *aC…
84 void HandleMeshDiagDiscoverDone(otError aError, otMeshDiagRouterInfo *aRouterInfo);
/openthread-latest/include/openthread/
Dmesh_diag.h160 typedef void (*otMeshDiagDiscoverCallback)(otError aError, otMeshDiagRouterInfo *aRouterInfo, void …
Dthread_ftd.h605 otError otThreadGetRouterInfo(otInstance *aInstance, uint16_t aRouterId, otRouterInfo *aRouterInfo);
/openthread-latest/src/core/api/
Dthread_ftd_api.cpp249 otError otThreadGetRouterInfo(otInstance *aInstance, uint16_t aRouterId, otRouterInfo *aRouterInfo) in otThreadGetRouterInfo() argument
251 … return AsCoreType(aInstance).Get<RouterTable>().GetRouterInfo(aRouterId, AsCoreType(aRouterInfo)); in otThreadGetRouterInfo()
/openthread-latest/src/core/thread/
Drouter_table.hpp275 Error GetRouterInfo(uint16_t aRouterId, Router::Info &aRouterInfo);
Drouter_table.cpp305 Error RouterTable::GetRouterInfo(uint16_t aRouterId, Router::Info &aRouterInfo) in GetRouterInfo() argument
325 aRouterInfo.SetFrom(*router); in GetRouterInfo()