/openthread-3.7.0/src/core/crypto/ |
D | hmac_sha256.hpp | 101 void Update(const void *aBuf, uint16_t aBufLength); 111 template <typename ObjectType> void Update(const ObjectType &aObject) in Update() function in ot::Crypto::HmacSha256 114 return Update(&aObject, sizeof(ObjectType)); in Update() 125 void Update(const Message &aMessage, uint16_t aOffset, uint16_t aLength);
|
D | sha256.hpp | 114 void Update(const void *aBuf, uint16_t aBufLength); 124 template <typename ObjectType> void Update(const ObjectType &aObject) in Update() function in ot::Crypto::Sha256 127 return Update(&aObject, sizeof(ObjectType)); in Update() 138 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-3.7.0/src/posix/platform/ |
D | mainloop.hpp | 58 virtual void Update(otSysMainloopContext &aContext) = 0; 91 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 | 69 void Update(otSysMainloopContext &aContext) override;
|
D | mdns_socket.hpp | 101 void Update(otSysMainloopContext &aContext) override;
|
/openthread-3.7.0/src/core/thread/ |
D | child.hpp | 119 Update(); in AddressIterator() 162 void operator++(void) { mIndex++, Update(); } in operator ++() 171 void operator++(int) { mIndex++, Update(); } in operator ++() 211 void Update(void);
|
D | indirect_sender.cpp | 153 mCslTxScheduler.Update(); in ClearAllMessagesForSleepyChild() 198 mCslTxScheduler.Update(); in HandleChildModeChange() 254 mCslTxScheduler.Update(); in RequestMessageUpdate() 287 mCslTxScheduler.Update(); in RequestMessageUpdate() 313 mCslTxScheduler.Update(); in UpdateIndirectMessage() 472 mCslTxScheduler.Update(); in HandleSentFrameToChild()
|
D | key_manager.cpp | 227 SuccessOrExit(Get<Notifier>().Update(mPskc, aPskc, kEventPskcChanged)); in SetPskc() 280 SuccessOrExit(Get<Notifier>().Update(mNetworkKey, aNetworkKey, kEventNetworkKeyChanged)); in SetNetworkKey() 308 hmac.Update(keySequenceBytes); in ComputeKeys() 309 hmac.Update(kThreadString); in ComputeKeys() 502 IgnoreError(Get<Notifier>().Update(mSecurityPolicy, newPolicy, kEventSecurityPolicyChanged)); in SetSecurityPolicy()
|
/openthread-3.7.0/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-3.7.0/src/core/utils/ |
D | slaac_address.cpp | 415 sha256.Update(aAddress.mAddress.mFields.m8, BytesForBitSize(aAddress.mPrefixLength)); in GenerateIid() 417 sha256.Update(netIface); in GenerateIid() 418 sha256.Update(aDadCounter); in GenerateIid() 419 sha256.Update(secretKey); in GenerateIid()
|
D | link_metrics_manager.cpp | 124 void LinkMetricsManager::Update(void) in Update() function in ot::Utils::LinkMetricsManager 207 Update(); in HandleTimer()
|
/openthread-3.7.0/src/core/meshcop/ |
D | meshcop.cpp | 259 ccitt.Update(b); in CalculateHashBitIndexes() 260 ansi.Update(b); in CalculateHashBitIndexes() 299 sha256.Update(aEui64); in ComputeJoinerId()
|
D | extended_panid.cpp | 65 … IgnoreError(Get<Notifier>().Update(mExtendedPanId, aExtendedPanId, kEventThreadExtPanIdChanged)); in SetExtPanId()
|
/openthread-3.7.0/src/core/common/ |
D | crc16.hpp | 76 void Update(uint8_t aByte);
|
D | crc16.cpp | 44 void Crc16::Update(uint8_t aByte) in Update() function in ot::Crc16
|
/openthread-3.7.0/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 | 119 void Update(void);
|
/openthread-3.7.0/src/core/api/ |
D | crypto_api.cpp | 57 hmac.Update(aBuf, aBufLength); in otCryptoHmacSha256()
|