Home
last modified time | relevance | path

Searched refs:mSrcMatchShortEntries (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/tests/nexus/platform/
Dnexus_radio.cpp161 VerifyOrExit(!radio.mSrcMatchShortEntries.Contains(aShortAddress)); in otPlatRadioAddSrcMatchShortEntry()
162 error = radio.mSrcMatchShortEntries.PushBack(aShortAddress); in otPlatRadioAddSrcMatchShortEntry()
189 entry = radio.mSrcMatchShortEntries.Find(aShortAddress); in otPlatRadioClearSrcMatchShortEntry()
192 radio.mSrcMatchShortEntries.Remove(*entry); in otPlatRadioClearSrcMatchShortEntry()
218 AsNode(aInstance).mRadio.mSrcMatchShortEntries.Clear(); in otPlatRadioClearSrcMatchShortEntries()
309 hasPending = mSrcMatchShortEntries.Contains(aAddress.GetShort()); in HasFramePendingFor()
Dnexus_radio.hpp73 Array<uint16_t, kMaxSrcMaatchShort> mSrcMatchShortEntries; member
/openthread-latest/src/lib/spinel/
Dradio_spinel.cpp1011 if (mSrcMatchShortEntries[i] == aShortAddress) in AddSrcMatchShortEntry()
1016 mSrcMatchShortEntries[mSrcMatchShortEntryCount] = aShortAddress; in AddSrcMatchShortEntry()
1061 if (mSrcMatchShortEntries[i] == aShortAddress) in ClearSrcMatchShortEntry()
1063 mSrcMatchShortEntries[i] = mSrcMatchShortEntries[mSrcMatchShortEntryCount - 1]; in ClearSrcMatchShortEntry()
2213 …rt(SPINEL_PROP_MAC_SRC_MATCH_SHORT_ADDRESSES, SPINEL_DATATYPE_UINT16_S, mSrcMatchShortEntries[i])); in RestoreProperties()
Dradio_spinel.hpp1284 uint16_t mSrcMatchShortEntries[OPENTHREAD_SPINEL_CONFIG_MAX_SRC_MATCH_ENTRIES]; member in ot::Spinel::RadioSpinel