Home
last modified time | relevance | path

Searched refs:mContextId (Results 1 – 12 of 12) sorted by relevance

/openthread-latest/src/core/utils/
Dslaac_address.hpp175 uint8_t GetContextId(void) const { return mContextId; } in GetContextId()
176 void SetContextId(uint8_t aContextId) { mContextId = aContextId; } in SetContextId()
195 uint8_t mContextId; member in ot::Utils::Slaac::SlaacAddress
Dslaac_address.cpp371 context.mContextId = SlaacAddress::kInvalidContextId; in UpdateContextIdFor()
374 VerifyOrExit(context.mContextId != aSlaacAddress.GetContextId()); in UpdateContextIdFor()
375 aSlaacAddress.SetContextId(context.mContextId); in UpdateContextIdFor()
/openthread-latest/src/core/net/
Dnd_agent.cpp68 if ((error != kErrorNone) || (lowpanContext.mContextId != contextId)) in UpdateService()
99 … uint16_t aloc16 = Mle::kAloc16NeighborDiscoveryAgentStart + lowpanContext.mContextId - 1; in UpdateService()
Ddhcp6_server.cpp83 if ((error == kErrorNone) && (prefixAgent.GetContextId() == lowpanContext.mContextId)) in UpdateService()
162 newEntry->Set(aIp6Prefix, Get<Mle::MleRouter>().GetMeshLocalPrefix(), aContext.mContextId); in AddPrefixAgent()
/openthread-latest/tests/unit/
Dtest_lowpan.hpp65 mSrcContext.mContextId = kContextUnused; in TestIphcVector()
66 mDstContext.mContextId = kContextUnused; in TestIphcVector()
/openthread-latest/include/openthread/
Dnetdata.h79 uint8_t mContextId; ///< The 6LoWPAN Context ID. member
/openthread-latest/src/core/thread/
Dnetwork_data_leader.cpp184 aContext.mContextId = contextTlv->GetContextId(); in GetContext()
229 aContext.mContextId = contextTlv->GetContextId(); in GetContext()
240 aContext.mContextId = Mle::kMeshLocalPrefixContextId; in GetContextForMeshLocalPrefix()
Dnetwork_data_types.cpp259 mContextId = aContextTlv.GetContextId(); in SetFrom()
Dlowpan.cpp255 if (srcContext.mContextId != 0 || dstContext.mContextId != 0) in Compress()
258 …ssOrExit(error = aFrameBuilder.AppendUint8(((srcContext.mContextId << 4) | dstContext.mContextId) … in Compress()
Dlowpan.hpp76 uint8_t mContextId; ///< The Context ID. member
Dmle.cpp4982 …error = AppendCompressedAddressEntry(context.mContextId, Get<DuaManager>().GetDomainUnicastAddress… in AppendAddressRegistrationTlv()
5005 … SuccessOrExit(error = AppendCompressedAddressEntry(context.mContextId, addr.GetAddress())); in AppendAddressRegistrationTlv()
5268 SuccessOrExit(error = AppendCompressedAddressEntry(context.mContextId, address)); in AppendAddressRegistrationTlv()
/openthread-latest/src/cli/
Dcli_network_data.cpp643 OutputLine(" %u %c", context.mContextId, context.mCompressFlag ? 'c' : '-'); in OutputNetworkData()