Home
last modified time | relevance | path

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

/openthread-latest/src/ncp/
Dncp_base_radio.cpp292 uint16_t shortAddress; in HandlePropertySet() local
294 SuccessOrExit(error = mDecoder.ReadUint16(shortAddress)); in HandlePropertySet()
296 SuccessOrExit(error = otLinkRawSrcMatchAddShortEntry(mInstance, shortAddress)); in HandlePropertySet()
327 uint16_t shortAddress; in HandlePropertyRemove() local
329 SuccessOrExit(error = mDecoder.ReadUint16(shortAddress)); in HandlePropertyRemove()
331 error = otLinkRawSrcMatchClearShortEntry(mInstance, shortAddress); in HandlePropertyRemove()
354 uint16_t shortAddress; in HandlePropertyInsert() local
356 SuccessOrExit(error = mDecoder.ReadUint16(shortAddress)); in HandlePropertyInsert()
358 error = otLinkRawSrcMatchAddShortEntry(mInstance, shortAddress); in HandlePropertyInsert()
399 uint16_t shortAddress; in HandlePropertySet() local
[all …]
/openthread-latest/src/posix/platform/
Drcp_caps_diag.cpp640 uint16_t shortAddress; in OutputShortSrcMatchTableSize() local
647 shortAddress = num | (kRouterId << kRouterIdOffset); in OutputShortSrcMatchTableSize()
649 …oSpinel.Insert(SPINEL_PROP_MAC_SRC_MATCH_SHORT_ADDRESSES, SPINEL_DATATYPE_UINT16_S, shortAddress)); in OutputShortSrcMatchTableSize()
/openthread-latest/src/core/diags/
Dfactory_diags.cpp686 Mac::ShortAddress shortAddress;
688 … SuccessOrExit(error = Utils::CmdLineParser::ParseAsUint16(aArgs[0], shortAddress));
689 mReceiveConfig.mFilterAddress.SetShort(shortAddress);
/openthread-latest/src/core/thread/
Dmle.cpp3253 uint16_t shortAddress; in HandleChildIdResponse() local
3264 SuccessOrExit(error = Tlv::Find<Address16Tlv>(aRxInfo.mMessage, shortAddress)); in HandleChildIdResponse()
3265 VerifyOrExit(RouterIdMatch(sourceAddress, shortAddress), error = kErrorRejected); in HandleChildIdResponse()
3335 SetStateChild(shortAddress); in HandleChildIdResponse()