Home
last modified time | relevance | path

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

/openthread-latest/src/lib/spinel/
Dspinel_decoder.hpp319 otError ReadEui64(const spinel_eui64_t *&aEui64Ptr) in ReadEui64() function in ot::Spinel::Decoder
335 otError ReadEui64(const otExtAddress *&aEui64Ptr) in ReadEui64() function in ot::Spinel::Decoder
351 …otError ReadEui64(const uint8_t *&aEui64BufPtr) { return ReadItem(&aEui64BufPtr, sizeof(spinel_eui… in ReadEui64() function in ot::Spinel::Decoder
364 otError ReadEui64(spinel_eui64_t &aEui64);
377 otError ReadEui64(otExtAddress &aEui64);
Dspinel_decoder.cpp258 otError Decoder::ReadEui64(spinel_eui64_t &aEui64) in ReadEui64() function in ot::Spinel::Decoder
263 SuccessOrExit(error = ReadEui64(eui64Ptr)); in ReadEui64()
271 otError Decoder::ReadEui64(otExtAddress &aEui64) in ReadEui64() function in ot::Spinel::Decoder
276 SuccessOrExit(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()
623 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.cpp3060 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3133 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3188 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3458 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3488 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3509 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3555 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
3568 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
3583 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
Dncp_base.cpp1642 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
/openthread-latest/tests/unit/
Dtest_spinel_decoder.cpp153 SuccessOrQuit(decoder.ReadEui64(eui64)); in TestDecoder()