Home
last modified time | relevance | path

Searched refs:mDecoder (Results 1 – 5 of 5) sorted by relevance

/openthread-latest/src/ncp/
Dncp_base_ftd.cpp312 SuccessOrExit(error = mDecoder.ReadBool(eligible)); in HandlePropertySet()
330 SuccessOrExit(error = mDecoder.ReadUint8(maxFrameRetriesIndirect)); in HandlePropertySet()
348 SuccessOrExit(error = mDecoder.ReadUtf8(domainName)); in HandlePropertySet()
383 if (mDecoder.GetRemainingLength() == 0) in HandlePropertySet()
393 SuccessOrExit(error = mDecoder.ReadUint8(i)); in HandlePropertySet()
432 SuccessOrExit(error = mDecoder.ReadUint8(state)); in HandlePropertySet()
467 SuccessOrExit(error = mDecoder.ReadUint16(bbrConfig.mReregistrationDelay)); in HandlePropertySet()
468 SuccessOrExit(error = mDecoder.ReadUint32(bbrConfig.mMlrTimeout)); in HandlePropertySet()
469 SuccessOrExit(error = mDecoder.ReadUint8(bbrConfig.mSequenceNumber)); in HandlePropertySet()
494 SuccessOrExit(error = mDecoder.ReadUint8(jitter)); in HandlePropertySet()
[all …]
Dncp_base_radio.cpp274 SuccessOrExit(error = mDecoder.ReadBool(mSrcMatchEnabled[mCurCommandIid])); in HandlePropertySet()
290 while (mDecoder.GetRemainingLengthInStruct() >= sizeof(uint16_t)) in HandlePropertySet()
294 SuccessOrExit(error = mDecoder.ReadUint16(shortAddress)); in HandlePropertySet()
311 while (mDecoder.GetRemainingLengthInStruct() >= sizeof(otExtAddress)) in HandlePropertySet()
315 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
329 SuccessOrExit(error = mDecoder.ReadUint16(shortAddress)); in HandlePropertyRemove()
342 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
356 SuccessOrExit(error = mDecoder.ReadUint16(shortAddress)); in HandlePropertyInsert()
369 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
382 SuccessOrExit(error = mDecoder.ReadBool(value)); in HandlePropertySet()
[all …]
Dncp_base_mtd.cpp267 SuccessOrExit(error = mDecoder.ReadUint32(cslPeriod)); in HandlePropertySet()
285 SuccessOrExit(error = mDecoder.ReadUint32(cslTimeout)); in HandlePropertySet()
303 SuccessOrExit(error = mDecoder.ReadUint8(cslChannel)); in HandlePropertySet()
326 SuccessOrExit(error = mDecoder.OpenStruct()); in HandlePropertySet()
328 while (mDecoder.GetRemainingLengthInStruct()) in HandlePropertySet()
331 SuccessOrExit(error = mDecoder.ReadIp6Address(addresses[addressesCount])); in HandlePropertySet()
335 SuccessOrExit(error = mDecoder.CloseStruct()); in HandlePropertySet()
337 while (mDecoder.GetRemainingLengthInStruct()) in HandlePropertySet()
341 SuccessOrExit(error = mDecoder.OpenStruct()); in HandlePropertySet()
343 SuccessOrExit(error = mDecoder.ReadUint8(paramId)); in HandlePropertySet()
[all …]
Dncp_base.cpp422 mDecoder.Init(aBuf, aBufLength); in HandleReceive()
430 SuccessOrExit(mDecoder.ReadUint8(header)); in HandleReceive()
982 SuccessOrExit(error = mDecoder.ReadUintPacked(command)); in HandleCommand()
1169 mDecoder.SavePosition(); in HandleCommandPropertyInsertRemove()
1170 IgnoreError(mDecoder.ReadData(valuePtr, valueLen)); in HandleCommandPropertyInsertRemove()
1171 IgnoreError(mDecoder.ResetToSaved()); in HandleCommandPropertyInsertRemove()
1292 if (mDecoder.GetRemainingLengthInStruct() > 0) in CommandHandler_RESET()
1294 SuccessOrAssert(error = mDecoder.ReadUint8(reset_type)); in CommandHandler_RESET()
1348 error = mDecoder.ReadUintPacked(propKey); in CommandHandler_PROP_VALUE_update()
1384 SuccessOrExit(parseError = mDecoder.ReadUint32(address)); in CommandHandler_PEEK()
[all …]
Dncp_base.hpp739 Spinel::Decoder mDecoder; member in ot::Ncp::NcpBase