Home
last modified time | relevance | path

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

/openthread-2.7.6/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.cpp256 otError Decoder::ReadEui64(spinel_eui64_t &aEui64) in ReadEui64() function in ot::Spinel::Decoder
261 SuccessOrExit(error = ReadEui64(eui64Ptr)); in ReadEui64()
268 otError Decoder::ReadEui64(otExtAddress &aEui64) in ReadEui64() function in ot::Spinel::Decoder
273 SuccessOrExit(error = ReadEui64(eui64Ptr)); in ReadEui64()
/openthread-2.7.6/src/ncp/
Dncp_base_radio.cpp289 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
316 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
343 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
Dncp_base_ftd.cpp774 SuccessOrExit(error = mDecoder.ReadEui64(eui64)); in HandlePropertyInsert()
819 SuccessOrExit(error = mDecoder.ReadEui64(eui64)); in HandlePropertyRemove()
1077 if (mDecoder.ReadEui64(eui64) != OT_ERROR_NONE) in HandlePropertyInsert()
1113 SuccessOrExit(error = mDecoder.ReadEui64(mSteeringDataAddress)); in HandlePropertySet()
Dncp_base_mtd.cpp2977 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3050 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3105 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
3374 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3404 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3425 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyInsert()
3471 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
3484 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
3499 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertyRemove()
Dncp_base.cpp1485 SuccessOrExit(error = mDecoder.ReadEui64(extAddress)); in HandlePropertySet()
/openthread-2.7.6/tests/unit/
Dtest_spinel_decoder.cpp153 SuccessOrQuit(decoder.ReadEui64(eui64)); in TestDecoder()