Home
last modified time | relevance | path

Searched defs:aIndex (Results 1 – 25 of 29) sorted by relevance

12

/openthread-latest/src/core/common/
Dbit_set.hpp83 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()
Dsettings_driver.hpp127 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()
Dpool.hpp164 Type &GetEntryAt(uint16_t aIndex) { return mPool[aIndex]; } in GetEntryAt()
Dheap_array.hpp180 Type &operator[](IndexType aIndex) { return mArray[aIndex]; } in operator []()
203 Type *At(IndexType aIndex) { return (aIndex < mLength) ? &mArray[aIndex] : nullptr; } in At()
Darray.hpp225 Type &operator[](IndexType aIndex) { return mElements[aIndex]; } in operator []()
247 Type *At(IndexType aIndex) { return (aIndex < mLength) ? &mElements[aIndex] : nullptr; } in At()
Dsettings.cpp384 Error Settings::ReadBrOnLinkPrefix(int aIndex, BrOnLinkPrefix &aBrOnLinkPrefix) in ReadBrOnLinkPrefix()
/openthread-latest/tests/nexus/platform/
Dnexus_settings.cpp45 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/
Dmulticast_listeners_table.cpp160 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/
Ddns_api.cpp132 uint16_t aIndex, in otDnsAddressResponseGetAddress()
164 uint16_t aIndex, in otDnsBrowseResponseGetServiceInstance()
184 uint16_t aIndex, in otDnsBrowseResponseGetHostAddress()
242 uint16_t aIndex, in otDnsServiceResponseGetHostAddress()
Dsrp_server_api.cpp194 …har *otSrpServerServiceGetSubTypeServiceNameAt(const otSrpServerService *aService, uint16_t aIndex) in otSrpServerServiceGetSubTypeServiceNameAt()
/openthread-latest/src/posix/platform/
Dsettings_file.cpp113 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()
Dsettings.cpp139 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()
Dbacktrace.cpp71 static void demangleSymbol(int aIndex, const char *aSymbol) in demangleSymbol()
/openthread-latest/src/core/thread/
Dnetwork_diagnostic_tlvs.cpp98 void AnswerTlv::Init(uint16_t aIndex, bool aIsLast) in Init()
Drouter_table.hpp440 …void SetIndex(uint8_t aRouterId, uint8_t aIndex) { mIndexes[aRouterId] = kAllocatedFlag | aInde… in SetIndex()
Dchild.hpp306 void SetRequestTlv(uint8_t aIndex, uint8_t aType) { mRequestTlvs[aIndex] = aType; } in SetRequestTlv()
Dnetwork_data.hpp518 void SetEntryIndex(uint8_t aIndex) { mIteratorBuffer[kEntryPosition] = aIndex; } in SetEntryIndex()
/openthread-latest/src/core/utils/
Dflash.cpp114 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()
Dverhoeff_checksum.cpp44 uint8_t VerhoeffChecksum::Lookup(uint8_t aIndex, const uint8_t aCompressedArray[]) in Lookup()
/openthread-latest/examples/platforms/utils/
Dsettings_ram.c70 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/
Dtest_ndproxy_table.cpp49 Ip6::InterfaceIdentifier generateRandomIid(uint16_t aIndex) in generateRandomIid()
/openthread-latest/src/core/net/
Ddns_client.cpp202 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/
Dchanged_props_set.hpp146 void RemoveEntry(uint8_t aIndex) { ClearBit(mChangedSet, aIndex); } in RemoveEntry()
/openthread-latest/tests/gtest/
Dfake_platform.cpp212 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/
Dfuzzer_platform.cpp475 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()

12