Home
last modified time | relevance | path

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

/openthread-latest/src/core/api/
Dthread_ftd_api.cpp393 void otThreadGetRouterIdRange(otInstance *aInstance, uint8_t *aMinRouterId, uint8_t *aMaxRouterId) in otThreadGetRouterIdRange() argument
395 AssertPointerIsNotNull(aMinRouterId); in otThreadGetRouterIdRange()
398 AsCoreType(aInstance).Get<RouterTable>().GetRouterIdRange(*aMinRouterId, *aMaxRouterId); in otThreadGetRouterIdRange()
401 otError otThreadSetRouterIdRange(otInstance *aInstance, uint8_t aMinRouterId, uint8_t aMaxRouterId) in otThreadSetRouterIdRange() argument
403 return AsCoreType(aInstance).Get<RouterTable>().SetRouterIdRange(aMinRouterId, aMaxRouterId); in otThreadSetRouterIdRange()
/openthread-latest/src/core/thread/
Drouter_table.hpp418 void GetRouterIdRange(uint8_t &aMinRouterId, uint8_t &aMaxRouterId) const;
432 Error SetRouterIdRange(uint8_t aMinRouterId, uint8_t aMaxRouterId);
Drouter_table.cpp823 void RouterTable::GetRouterIdRange(uint8_t &aMinRouterId, uint8_t &aMaxRouterId) const in GetRouterIdRange() argument
825 aMinRouterId = mMinRouterId; in GetRouterIdRange()
829 Error RouterTable::SetRouterIdRange(uint8_t aMinRouterId, uint8_t aMaxRouterId) in SetRouterIdRange() argument
833 VerifyOrExit(aMinRouterId <= aMaxRouterId, error = kErrorInvalidArgs); in SetRouterIdRange()
835 mMinRouterId = aMinRouterId; in SetRouterIdRange()
/openthread-latest/include/openthread/
Dthread_ftd.h908 void otThreadGetRouterIdRange(otInstance *aInstance, uint8_t *aMinRouterId, uint8_t *aMaxRouterId);
926 otError otThreadSetRouterIdRange(otInstance *aInstance, uint8_t aMinRouterId, uint8_t aMaxRouterId);