Home
last modified time | relevance | path

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

/openthread-latest/tests/unit/
Dtest_child_table.cpp367 error = table->SetMaxChildrenAllowed(kMaxChildren - 1); in TestChildTable()
371 error = table->SetMaxChildrenAllowed(kMaxChildren + 1); in TestChildTable()
374 error = table->SetMaxChildrenAllowed(0); in TestChildTable()
377 error = table->SetMaxChildrenAllowed(testNumAllowedChildren); in TestChildTable()
/openthread-latest/src/core/thread/
Dchild_table.hpp217 Error SetMaxChildrenAllowed(uint16_t aMaxChildren);
Dchild_table.cpp169 Error ChildTable::SetMaxChildrenAllowed(uint16_t aMaxChildren) in SetMaxChildrenAllowed() function in ot::ChildTable
/openthread-latest/src/core/api/
Dthread_ftd_api.cpp49 return AsCoreType(aInstance).Get<ChildTable>().SetMaxChildrenAllowed(aMaxChildren); in otThreadSetMaxAllowedChildren()