Home
last modified time | relevance | path

Searched refs:contextTlv (Results 1 – 2 of 2) sorted by relevance

/openthread-3.4.0/src/core/thread/
Dnetwork_data_leader.cpp141 const ContextTlv *contextTlv; in GetContext() local
152 contextTlv = prefixTlv->FindSubTlv<ContextTlv>(); in GetContext()
154 if (contextTlv == nullptr) in GetContext()
162 aContext.mContextId = contextTlv->GetContextId(); in GetContext()
163 aContext.mCompressFlag = contextTlv->IsCompress(); in GetContext()
185 const ContextTlv *contextTlv = prefixTlv->FindSubTlv<ContextTlv>(); in GetContext() local
187 if ((contextTlv == nullptr) || (contextTlv->GetContextId() != aContextId)) in GetContext()
193 aContext.mContextId = contextTlv->GetContextId(); in GetContext()
194 aContext.mCompressFlag = contextTlv->IsCompress(); in GetContext()
Dnetwork_data.cpp257 const ContextTlv *contextTlv = As<ContextTlv>(subCur); in Iterate() local
269 aConfig.mLowpanContext->SetFrom(*prefixTlv, *contextTlv); in Iterate()