/openthread-latest/src/core/common/ |
D | bit_set.hpp | 83 void Add(uint16_t aIndex) { mMask[aIndex / 8] |= BitMaskFor(aIndex); } in Add() 93 void Remove(uint16_t aIndex) { mMask[aIndex / 8] &= ~BitMaskFor(aIndex); } in Remove() 104 void Update(uint16_t aIndex, bool aToAdd) { aToAdd ? Add(aIndex) : Remove(aIndex); } in Update() 129 static uint8_t BitMaskFor(uint16_t aIndex) { return (0x80 >> (aIndex & 7)); } in BitMaskFor()
|
D | settings_driver.hpp | 127 Error Delete(uint16_t aKey, int aIndex = -1) in Delete() 155 Error Get(uint16_t aKey, int aIndex, void *aValue, uint16_t *aValueLength) const in Get()
|
D | pool.hpp | 164 Type &GetEntryAt(uint16_t aIndex) { return mPool[aIndex]; } in GetEntryAt()
|
D | heap_array.hpp | 180 Type &operator[](IndexType aIndex) { return mArray[aIndex]; } in operator []() 203 Type *At(IndexType aIndex) { return (aIndex < mLength) ? &mArray[aIndex] : nullptr; } in At()
|
D | array.hpp | 225 Type &operator[](IndexType aIndex) { return mElements[aIndex]; } in operator []() 247 Type *At(IndexType aIndex) { return (aIndex < mLength) ? &mElements[aIndex] : nullptr; } in At()
|
D | settings.cpp | 384 Error Settings::ReadBrOnLinkPrefix(int aIndex, BrOnLinkPrefix &aBrOnLinkPrefix) in ReadBrOnLinkPrefix()
|
/openthread-latest/tests/nexus/platform/ |
D | nexus_settings.cpp | 45 otError otPlatSettingsGet(otInstance *aInstance, uint16_t aKey, int aIndex, uint8_t *aValue, uint16… in otPlatSettingsGet() 60 otError otPlatSettingsDelete(otInstance *aInstance, uint16_t aKey, int aIndex) in otPlatSettingsDelete() 72 Error Settings::Get(uint16_t aKey, int aIndex, uint8_t *aValue, uint16_t *aValueLength) const in Get() 131 Error Settings::Delete(uint16_t aKey, int aIndex) in Delete()
|
/openthread-latest/src/core/backbone_router/ |
D | multicast_listeners_table.cpp | 160 void MulticastListenersTable::FixHeap(uint16_t aIndex) in FixHeap() 180 bool MulticastListenersTable::SiftHeapElemDown(uint16_t aIndex) in SiftHeapElemDown() 221 void MulticastListenersTable::SiftHeapElemUp(uint16_t aIndex) in SiftHeapElemUp()
|
/openthread-latest/src/core/api/ |
D | dns_api.cpp | 132 uint16_t aIndex, in otDnsAddressResponseGetAddress() 164 uint16_t aIndex, in otDnsBrowseResponseGetServiceInstance() 184 uint16_t aIndex, in otDnsBrowseResponseGetHostAddress() 242 uint16_t aIndex, in otDnsServiceResponseGetHostAddress()
|
D | srp_server_api.cpp | 194 …har *otSrpServerServiceGetSubTypeServiceNameAt(const otSrpServerService *aService, uint16_t aIndex) in otSrpServerServiceGetSubTypeServiceNameAt()
|
/openthread-latest/src/posix/platform/ |
D | settings_file.cpp | 113 otError SettingsFile::Get(uint16_t aKey, int aIndex, uint8_t *aValue, uint16_t *aValueLength) in Get() 220 otError SettingsFile::Delete(uint16_t aKey, int aIndex) { return Delete(aKey, aIndex, nullptr); } in Delete() 222 otError SettingsFile::Delete(uint16_t aKey, int aIndex, int *aSwapFd) in Delete()
|
D | settings.cpp | 139 otError otPlatSettingsGet(otInstance *aInstance, uint16_t aKey, int aIndex, uint8_t *aValue, uint16… in otPlatSettingsGet() 202 otError otPlatSettingsDelete(otInstance *aInstance, uint16_t aKey, int aIndex) in otPlatSettingsDelete()
|
D | backtrace.cpp | 71 static void demangleSymbol(int aIndex, const char *aSymbol) in demangleSymbol()
|
/openthread-latest/src/core/thread/ |
D | network_diagnostic_tlvs.cpp | 98 void AnswerTlv::Init(uint16_t aIndex, bool aIsLast) in Init()
|
D | router_table.hpp | 440 …void SetIndex(uint8_t aRouterId, uint8_t aIndex) { mIndexes[aRouterId] = kAllocatedFlag | aInde… in SetIndex()
|
D | child.hpp | 306 void SetRequestTlv(uint8_t aIndex, uint8_t aType) { mRequestTlvs[aIndex] = aType; } in SetRequestTlv()
|
D | network_data.hpp | 518 void SetEntryIndex(uint8_t aIndex) { mIteratorBuffer[kEntryPosition] = aIndex; } in SetEntryIndex()
|
/openthread-latest/src/core/utils/ |
D | flash.cpp | 114 Error Flash::Get(uint16_t aKey, int aIndex, uint8_t *aValue, uint16_t *aValueLength) const in Get() 255 Error Flash::Delete(uint16_t aKey, int aIndex) in Delete()
|
D | verhoeff_checksum.cpp | 44 uint8_t VerhoeffChecksum::Lookup(uint8_t aIndex, const uint8_t aCompressedArray[]) in Lookup()
|
/openthread-latest/examples/platforms/utils/ |
D | settings_ram.c | 70 otError otPlatSettingsGet(otInstance *aInstance, uint16_t aKey, int aIndex, uint8_t *aValue, uint16… in otPlatSettingsGet() 183 otError otPlatSettingsDelete(otInstance *aInstance, uint16_t aKey, int aIndex) in otPlatSettingsDelete()
|
/openthread-latest/tests/unit/ |
D | test_ndproxy_table.cpp | 49 Ip6::InterfaceIdentifier generateRandomIid(uint16_t aIndex) in generateRandomIid()
|
/openthread-latest/src/core/net/ |
D | dns_client.cpp | 202 uint16_t aIndex, in FindHostAddress() 225 Error Client::Response::FindARecord(Section aSection, const Name &aHostName, uint16_t aIndex, AReco… in FindARecord() 408 Error Client::AddressResponse::GetAddress(uint16_t aIndex, Ip6::Address &aAddress, uint32_t &aTtl) … in GetAddress() 455 Error Client::BrowseResponse::GetServiceInstance(uint16_t aIndex, char *aLabelBuffer, uint8_t aLabe… in GetServiceInstance() 498 uint16_t aIndex, in GetHostAddress() 652 uint16_t aIndex, in GetHostAddress()
|
/openthread-latest/src/ncp/ |
D | changed_props_set.hpp | 146 void RemoveEntry(uint8_t aIndex) { ClearBit(mChangedSet, aIndex); } in RemoveEntry()
|
/openthread-latest/tests/gtest/ |
D | fake_platform.cpp | 212 otError FakePlatform::SettingsGet(uint16_t aKey, uint16_t aIndex, uint8_t *aValue, uint16_t *aValue… in SettingsGet() 268 otError FakePlatform::SettingsDelete(uint16_t aKey, int aIndex) in SettingsDelete() 519 otError otPlatSettingsGet(otInstance *, uint16_t aKey, int aIndex, uint8_t *aValue, uint16_t *aValu… in otPlatSettingsGet() 534 otError otPlatSettingsDelete(otInstance *, uint16_t aKey, int aIndex) in otPlatSettingsDelete()
|
/openthread-latest/tests/fuzz/ |
D | fuzzer_platform.cpp | 475 otError otPlatSettingsGet(otInstance *aInstance, uint16_t aKey, int aIndex, uint8_t *aValue, uint16… in otPlatSettingsGet() 503 otError otPlatSettingsDelete(otInstance *aInstance, uint16_t aKey, int aIndex) in otPlatSettingsDelete()
|