Searched refs:aMinRouterId (Results 1 – 4 of 4) sorted by relevance
/openthread-latest/src/core/api/ |
D | thread_ftd_api.cpp | 393 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/ |
D | router_table.hpp | 418 void GetRouterIdRange(uint8_t &aMinRouterId, uint8_t &aMaxRouterId) const; 432 Error SetRouterIdRange(uint8_t aMinRouterId, uint8_t aMaxRouterId);
|
D | router_table.cpp | 823 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/ |
D | thread_ftd.h | 908 void otThreadGetRouterIdRange(otInstance *aInstance, uint8_t *aMinRouterId, uint8_t *aMaxRouterId); 926 otError otThreadSetRouterIdRange(otInstance *aInstance, uint8_t aMinRouterId, uint8_t aMaxRouterId);
|