/openthread-latest/src/core/crypto/ |
D | hmac_sha256.hpp | 94 void Update(const void *aBuf, uint16_t aBufLength); 103 template <typename ObjectType> void Update(const ObjectType &aObject) in Update() function in ot::Crypto::HmacSha256 106 return Update(&aObject, sizeof(ObjectType)); in Update() 116 void Update(const Message &aMessage, uint16_t aOffset, uint16_t aLength);
|
D | sha256.hpp | 106 void Update(const void *aBuf, uint16_t aBufLength); 115 template <typename ObjectType> void Update(const ObjectType &aObject) in Update() function in ot::Crypto::Sha256 118 return Update(&aObject, sizeof(ObjectType)); in Update() 128 void Update(const Message &aMessage, uint16_t aOffset, uint16_t aLength);
|
D | sha256.cpp | 54 void Sha256::Update(const void *aBuf, uint16_t aBufLength) in Update() function in ot::Crypto::Sha256 59 void Sha256::Update(const Message &aMessage, uint16_t aOffset, uint16_t aLength) in Update() function in ot::Crypto::Sha256 67 Update(chunk.GetBytes(), chunk.GetLength()); in Update()
|
D | hmac_sha256.cpp | 54 void HmacSha256::Update(const void *aBuf, uint16_t aBufLength) in Update() function in ot::Crypto::HmacSha256 64 void HmacSha256::Update(const Message &aMessage, uint16_t aOffset, uint16_t aLength) in Update() function in ot::Crypto::HmacSha256 72 Update(chunk.GetBytes(), chunk.GetLength()); in Update()
|
/openthread-latest/src/posix/platform/ |
D | mainloop.hpp | 56 virtual void Update(otSysMainloopContext &aContext) = 0; 85 void Update(otSysMainloopContext &aContext);
|
D | mainloop.cpp | 61 void Manager::Update(otSysMainloopContext &aContext) in Update() function in ot::Posix::Mainloop::Manager 65 source->Update(aContext); in Update()
|
D | udp.hpp | 50 void Update(otSysMainloopContext &aContext) override;
|
D | daemon.hpp | 50 void Update(otSysMainloopContext &aContext) override;
|
D | infra_if.hpp | 67 void Update(otSysMainloopContext &aContext) override;
|
/openthread-latest/tests/unit/ |
D | test_hmac_sha256.cpp | 105 sha256.Update(testCase.mData, static_cast<uint16_t>(strlen(testCase.mData))); in TestSha256() 131 sha256.Update(*message, offsets[index++], static_cast<uint16_t>(strlen(testCase.mData))); in TestSha256() 248 hmac.Update(testCase.mData, testCase.mDataLength); in TestHmacSha256() 274 hmac.Update(*message, offsets[index++], testCase.mDataLength); in TestHmacSha256()
|
D | test_ecdsa.cpp | 106 sha256.Update(kMessage); in TestEcdsaVector() 159 sha256.Update(kMessage, sizeof(kMessage) - 1); in TestEcdsaKeyGenerationSignAndVerify() 173 sha256.Update(kMessage, sizeof(kMessage)); // include null char in TestEcdsaKeyGenerationSignAndVerify()
|
D | test_link_metrics_manager.cpp | 181 linkMetricsMgr->Update(); in TestLinkMetricsManager() 188 linkMetricsMgr->Update(); in TestLinkMetricsManager() 198 linkMetricsMgr->Update(); in TestLinkMetricsManager()
|
/openthread-latest/src/core/thread/ |
D | child.cpp | 111 aChild.mMlrToRegisterSet.Update(index, aState == kMlrStateToRegister); in SetMlrState() 112 aChild.mMlrRegisteredSet.Update(index, aState == kMlrStateRegistered); in SetMlrState() 235 mMlrToRegisterSet.Update(entryIndex, mMlrToRegisterSet.Has(lastIndex)); in RemoveIp6Address() 238 mMlrRegisteredSet.Update(entryIndex, mMlrRegisteredSet.Has(lastIndex)); in RemoveIp6Address()
|
D | indirect_sender.cpp | 154 mCslTxScheduler.Update(); in ClearAllMessagesForSleepyChild() 217 mCslTxScheduler.Update(); in HandleChildModeChange() 255 mCslTxScheduler.Update(); in RequestMessageUpdate() 288 mCslTxScheduler.Update(); in RequestMessageUpdate() 314 mCslTxScheduler.Update(); in UpdateIndirectMessage() 470 mCslTxScheduler.Update(); in HandleSentFrameToChild()
|
D | key_manager.cpp | 221 SuccessOrExit(Get<Notifier>().Update(mPskc, aPskc, kEventPskcChanged)); in SetPskc() 274 SuccessOrExit(Get<Notifier>().Update(mNetworkKey, aNetworkKey, kEventNetworkKeyChanged)); in SetNetworkKey() 302 hmac.Update(keySequenceBytes); in ComputeKeys() 303 hmac.Update(kThreadString); in ComputeKeys() 512 IgnoreError(Get<Notifier>().Update(mSecurityPolicy, newPolicy, kEventSecurityPolicyChanged)); in SetSecurityPolicy()
|
D | csl_tx_scheduler.hpp | 173 void Update(void);
|
/openthread-latest/src/core/utils/ |
D | slaac_address.cpp | 436 sha256.Update(aAddress.mAddress.mFields.m8, BytesForBitSize(aAddress.mPrefixLength)); in GenerateIid() 438 sha256.Update(netIface); in GenerateIid() 439 sha256.Update(aDadCounter); in GenerateIid() 440 sha256.Update(secretKey); in GenerateIid()
|
/openthread-latest/src/core/meshcop/ |
D | meshcop.cpp | 252 ccitt.Update(b); in CalculateHashBitIndexes() 253 ansi.Update(b); in CalculateHashBitIndexes() 292 sha256.Update(aEui64); in ComputeJoinerId()
|
D | extended_panid.cpp | 63 … IgnoreError(Get<Notifier>().Update(mExtendedPanId, aExtendedPanId, kEventThreadExtPanIdChanged)); in SetExtPanId()
|
/openthread-latest/src/core/common/ |
D | crc16.hpp | 72 void Update(uint8_t aByte);
|
D | crc16.cpp | 44 void Crc16::Update(uint8_t aByte) in Update() function in ot::Crc16
|
D | bit_set.hpp | 104 void Update(uint16_t aIndex, bool aToAdd) { aToAdd ? Add(aIndex) : Remove(aIndex); } in Update() function in ot::BitSet
|
/openthread-latest/src/core/backbone_router/ |
D | ndproxy_table.cpp | 63 Update(aRloc16, aTimeSinceLastTransaction); in Init() 66 void NdProxyTable::NdProxy::Update(uint16_t aRloc16, uint32_t aTimeSinceLastTransaction) in Update() function in ot::BackboneRouter::NdProxyTable::NdProxy 161 proxy->Update(aRloc16, timeSinceLastTransaction); in Register()
|
D | bbr_leader.hpp | 114 void Update(void);
|
/openthread-latest/src/core/api/ |
D | crypto_api.cpp | 51 hmac.Update(aBuf, aBufLength); in otCryptoHmacSha256()
|