Home
last modified time | relevance | path

Searched refs:ReadEui64 (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/src/lib/spinel/
Dspinel_decoder.hpp344 otError ReadEui64(const spinel_eui64_t *&aEui64Ptr) in ReadEui64() function in ot::Spinel::Decoder
361 otError ReadEui64(const otExtAddress *&aEui64Ptr) in ReadEui64() function in ot::Spinel::Decoder
378 …otError ReadEui64(const uint8_t *&aEui64BufPtr) { return ReadItem(&aEui64BufPtr, sizeof(spinel_eui… in ReadEui64() function in ot::Spinel::Decoder
392 otError ReadEui64(spinel_eui64_t &aEui64);
406 otError ReadEui64(otExtAddress &aEui64);
Dspinel_decoder.cpp258 otError Decoder::ReadEui64(spinel_eui64_t &aEui64) in ReadEui64() function in ot::Spinel::Decoder
263 EXPECT_NO_ERROR(error = ReadEui64(eui64Ptr)); in ReadEui64()
271 otError Decoder::ReadEui64(otExtAddress &aEui64) in ReadEui64() function in ot::Spinel::Decoder
276 EXPECT_NO_ERROR(error = ReadEui64(eui64Ptr)); in ReadEui64()
/openthread-latest/src/ncp/
Dncp_base_radio.cpp315 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
342 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
369 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
608 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
Dncp_base_ftd.cpp778 SuccessOrExit(error = mDecoder.ReadEui64(eui64)); in HandlePropertyInsert()
823 SuccessOrExit(error = mDecoder.ReadEui64(eui64)); in HandlePropertyRemove()
1081 if (mDecoder.ReadEui64(eui64) != OT_ERROR_NONE) in HandlePropertyInsert()
1117 SuccessOrExit(error = mDecoder.ReadEui64(mSteeringDataAddress)); in HandlePropertySet()
Dncp_base_mtd.cpp3062 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3135 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3190 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3460 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3490 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3511 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3557 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
3570 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
3585 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
Dncp_base.cpp1632 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
/openthread-latest/tests/unit/
Dtest_spinel_decoder.cpp153 SuccessOrQuit(decoder.ReadEui64(eui64)); in TestDecoder()