Home
last modified time | relevance | path

Searched refs:GetRemainingLengthInStruct (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/openthread/tests/unit/
H A Dtest_spinel_decoder.cpp364 VerifyOrQuit(decoder.GetRemainingLengthInStruct() == frameLen); in TestDecoder()
377 VerifyOrQuit(decoder.GetRemainingLengthInStruct() == 0); in TestDecoder()
392 VerifyOrQuit(decoder.GetRemainingLengthInStruct() == 0); in TestDecoder()
/aosp_15_r20/external/openthread/src/ncp/
H A Dncp_base_radio.cpp290 while (mDecoder.GetRemainingLengthInStruct() >= sizeof(uint16_t)) in HandlePropertySet()
311 while (mDecoder.GetRemainingLengthInStruct() >= sizeof(otExtAddress)) in HandlePropertySet()
H A Dncp_base_mtd.cpp328 while (mDecoder.GetRemainingLengthInStruct()) in HandlePropertySet()
337 while (mDecoder.GetRemainingLengthInStruct()) in HandlePropertySet()
889 while (mDecoder.GetRemainingLengthInStruct() >= sizeof(uint16_t)) in HandlePropertySet()
1574 … if (otThreadGetVersion() >= OT_THREAD_VERSION_1_2 && mDecoder.GetRemainingLengthInStruct() > 0) in DecodeOperationalDataset()
3056 while (mDecoder.GetRemainingLengthInStruct() > 0) in HandlePropertySet()
3130 while (mDecoder.GetRemainingLengthInStruct() > 0) in HandlePropertySet()
3181 while (mDecoder.GetRemainingLengthInStruct() > 0) in HandlePropertySet()
3188 if (mDecoder.GetRemainingLengthInStruct() > sizeof(otExtAddress)) in HandlePropertySet()
H A Dncp_base_ftd.cpp770 switch (mDecoder.GetRemainingLengthInStruct()) in HandlePropertyInsert()
815 switch (mDecoder.GetRemainingLengthInStruct()) in HandlePropertyRemove()
H A Dncp_base.cpp1282 if (mDecoder.GetRemainingLengthInStruct() > 0) in CommandHandler_RESET()
1886 while (mDecoder.GetRemainingLengthInStruct() > 0) in HandlePropertySet()
/aosp_15_r20/external/openthread/src/lib/spinel/
H A Dspinel_decoder.hpp532 uint16_t GetRemainingLengthInStruct(void) const { return mEnd - mIndex; } in GetRemainingLengthInStruct() function in ot::Spinel::Decoder