Searched refs:aTimestamp (Results 1 – 10 of 10) sorted by relevance
/openthread-latest/src/core/net/ |
D | sntp_client.hpp | 160 void SetReferenceTimestampSeconds(uint32_t aTimestamp) in SetReferenceTimestampSeconds() argument 162 mReferenceTimestampSeconds = BigEndian::HostSwap32(aTimestamp); in SetReferenceTimestampSeconds() 175 void SetOriginateTimestampSeconds(uint32_t aTimestamp) in SetOriginateTimestampSeconds() argument 177 mOriginateTimestampSeconds = BigEndian::HostSwap32(aTimestamp); in SetOriginateTimestampSeconds() 190 void SetReceiveTimestampSeconds(uint32_t aTimestamp) in SetReceiveTimestampSeconds() argument 192 mReceiveTimestampSeconds = BigEndian::HostSwap32(aTimestamp); in SetReceiveTimestampSeconds() 202 void SetTransmitTimestampSeconds(uint32_t aTimestamp) in SetTransmitTimestampSeconds() argument 204 mTransmitTimestampSeconds = BigEndian::HostSwap32(aTimestamp); in SetTransmitTimestampSeconds()
|
/openthread-latest/src/core/meshcop/ |
D | dataset.hpp | 479 Error ReadTimestamp(Type aType, Timestamp &aTimestamp) const; 492 Error WriteTimestamp(Type aType, const Timestamp &aTimestamp); 759 template <> inline void Dataset::Info::Get<Dataset::kActiveTimestamp>(Timestamp &aTimestamp) const in Get() 761 aTimestamp.SetFrom(mActiveTimestamp); in Get() 764 template <> inline void Dataset::Info::Get<Dataset::kPendingTimestamp>(Timestamp &aTimestamp) const in Get() 766 aTimestamp.SetFrom(mPendingTimestamp); in Get() 769 template <> inline void Dataset::Info::Set<Dataset::kActiveTimestamp>(const Timestamp &aTimestamp) in Set() argument 772 aTimestamp.ConvertTo(mActiveTimestamp); in Set() 775 template <> inline void Dataset::Info::Set<Dataset::kPendingTimestamp>(const Timestamp &aTimestamp) in Set() argument 778 aTimestamp.ConvertTo(mPendingTimestamp); in Set()
|
D | dataset.cpp | 544 Error Dataset::ReadTimestamp(Type aType, Timestamp &aTimestamp) const in ReadTimestamp() 555 aTimestamp = tlv->ReadValueAs<ActiveTimestampTlv>(); in ReadTimestamp() 561 Error Dataset::WriteTimestamp(Type aType, const Timestamp &aTimestamp) in WriteTimestamp() argument 563 return WriteTlv(TimestampTlvFor(aType), &aTimestamp, sizeof(Timestamp)); in WriteTimestamp()
|
D | dataset_manager.hpp | 428 Error ReadActiveTimestamp(Timestamp &aTimestamp) const;
|
D | dataset_manager.cpp | 898 Error PendingDatasetManager::ReadActiveTimestamp(Timestamp &aTimestamp) const in ReadActiveTimestamp() 905 SuccessOrExit(dataset.Read<ActiveTimestampTlv>(aTimestamp)); in ReadActiveTimestamp()
|
/openthread-latest/src/core/utils/ |
D | otns.cpp | 58 uint32_t aTimestamp, in EmitPingRequest() argument 62 …EmitStatus("ping_request=%s,%d,%lu", aPeerAddress.ToString().AsCString(), aPingLength, aTimestamp); in EmitPingRequest() 65 …Reply(const Ip6::Address &aPeerAddress, uint16_t aPingLength, uint32_t aTimestamp, uint8_t aHopLim… in EmitPingReply() argument 67 …ping_reply=%s,%u,%lu,%d", aPeerAddress.ToString().AsCString(), aPingLength, aTimestamp, aHopLimit); in EmitPingReply()
|
D | otns.hpp | 100 uint32_t aTimestamp, 113 uint32_t aTimestamp,
|
/openthread-latest/src/core/common/ |
D | message.hpp | 1154 void SetTimestamp(TimeMilli aTimestamp) { GetMetadata().mTimestamp = aTimestamp; } in SetTimestamp() argument
|
/openthread-latest/src/core/thread/ |
D | mle.hpp | 1066 …eadAndSaveDataset(MeshCoP::Dataset::Type aDatasetType, const MeshCoP::Timestamp &aTimestamp) const;
|
D | mle.cpp | 5485 const MeshCoP::Timestamp &aTimestamp) const in ReadAndSaveDataset() 5496 SuccessOrExit(error = dataset.WriteTimestamp(aDatasetType, aTimestamp)); in ReadAndSaveDataset()
|