/openthread-latest/src/core/common/ |
D | tlvs.cpp | 44 …return IsExtended() ? sizeof(ExtendedTlv) + As<ExtendedTlv>(this)->GetLength() : sizeof(Tlv) + Get… in GetSize() 49 return reinterpret_cast<uint8_t *>(this) + (IsExtended() ? sizeof(ExtendedTlv) : sizeof(Tlv)); in GetValue() 54 …return reinterpret_cast<const uint8_t *>(this) + (IsExtended() ? sizeof(ExtendedTlv) : sizeof(Tlv)… in GetValue() 113 if (!tlv.IsExtended()) in ParseFrom() 307 if (tlv->IsExtended()) in FindTlv()
|
D | tlvs.hpp | 84 bool IsExtended(void) const { return (mLength == kExtendedLength); } in IsExtended() function in ot::Tlv
|
/openthread-latest/tests/nexus/platform/ |
D | nexus_radio.cpp | 280 else if (aAddress.IsExtended()) in Matches() 311 else if (aAddress.IsExtended()) in HasFramePendingFor()
|
/openthread-latest/src/core/thread/ |
D | link_metrics_types.hpp | 142 static bool IsExtended(uint8_t aTypeId) { return (aTypeId & kExtendedFlag); } in IsExtended() function in ot::LinkMetrics::TypeId
|
D | network_diagnostic.cpp | 1034 if (tlv.IsExtended()) in GetNextDiagTlv() 1076 VerifyOrExit(!tlv.IsExtended(), error = kErrorParse); in GetNextDiagTlv() 1088 VerifyOrExit(!tlv.IsExtended(), error = kErrorParse); in GetNextDiagTlv() 1099 VerifyOrExit(!tlv.IsExtended(), error = kErrorParse); in GetNextDiagTlv()
|
D | neighbor.hpp | 151 aMacAddress.IsExtended() ? &aMacAddress.GetExtended() : nullptr) in AddressMatcher()
|
D | link_metrics.cpp | 165 if (TypeId::IsExtended(typeId)) in HandleReport() 672 if (TypeId::IsExtended(typeId)) in ReadTypeIdsFromMessage()
|
D | mesh_forwarder.cpp | 170 if (frameInfo.mAddrs.mSource.IsShortAddrInvalid() || aMacDest.IsExtended()) in PrepareEmptyFrame()
|
/openthread-latest/src/core/utils/ |
D | otns.cpp | 141 else if (dst.IsExtended()) in EmitTransmit()
|
D | mesh_diag.cpp | 303 VerifyOrExit(!childTlv.IsExtended()); in ProcessChildTableAnswer() 345 VerifyOrExit(!neighborTlv.IsExtended()); in ProcessRouterNeighborTableAnswer()
|
D | history_tracker.cpp | 133 if (aMacAddress.IsExtended()) in RecordMessage()
|
/openthread-latest/tests/unit/ |
D | test_mac_frame.cpp | 137 VerifyOrQuit(!addr.IsExtended(), "Address::SetShort() failed"); in TestMacAddress() 143 VerifyOrQuit(addr.IsExtended(), "Address::SetExtended() failed"); in TestMacAddress() 149 VerifyOrQuit(addr.IsExtended(), "Address::SetExtended() failed"); in TestMacAddress() 157 VerifyOrQuit(!addr.IsExtended(), "Address::SetNone() failed"); in TestMacAddress()
|
/openthread-latest/src/core/mac/ |
D | mac_types.hpp | 280 bool IsExtended(void) const { return (mType == kTypeExtended); } in IsExtended() function in ot::Mac::Address
|
D | mac_frame.cpp | 153 if (mAddrs.mSource.IsExtended() && mAddrs.mDestination.IsExtended()) in PrepareHeadersIn() 298 VerifyOrExit(srcAddress.IsExtended()); in IsWakeupFrame()
|
D | data_poll_sender.cpp | 558 if (frameInfo.mAddrs.mDestination.IsExtended()) in PrepareDataRequest()
|
D | mac.cpp | 242 VerifyOrExit(address.IsExtended(), error = kErrorParse); in ConvertBeaconToActiveScanResult() 1772 if (!srcAddr.IsExtended() && neighbor != nullptr) in ProcessEnhAckSecurity() 1777 VerifyOrExit(srcAddr.IsExtended() && neighbor != nullptr); in ProcessEnhAckSecurity()
|
/openthread-latest/src/core/radio/ |
D | trel_link.cpp | 205 OT_ASSERT(destAddr.IsExtended()); in BeginTransmit()
|
D | ble_secure.cpp | 393 if (tlv.IsExtended()) in HandleTlsReceive()
|
/openthread-latest/src/core/meshcop/ |
D | dataset.cpp | 112 VerifyOrExit(!tlv->IsExtended() && ((tlv + 1) <= end) && (tlv->GetNext() <= end)); in ValidateTlvs()
|
D | tcat_agent.cpp | 377 if (tlv.IsExtended()) in HandleSingleTlv()
|