Home
last modified time | relevance | path

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

/openthread-2.7.6/tests/unit/
Dtest_cmd_line_parser.cpp54 otError mError; member
71 if (testCase->mError != OT_ERROR_NONE) in VerifyParser()
73 printf("error:%s", otThreadErrorToString(testCase->mError)); in VerifyParser()
84 VerifyOrQuit(error == testCase->mError, "Parser did not return the expected error"); in VerifyParser()
Dtest_lowpan.hpp203 void SetError(Error aError) { mError = aError; } in SetError()
277 Error mError; member in ot::TestIphcVector
Dtest_hdlc.cpp437 otError mError; member
444 decoderContext.mError = aError; in ProcessDecodedFrame()
502 …VerifyOrQuit(decoderContext.mError == OT_ERROR_NONE, "Decoder::Decode() returned incorrect error c… in TestEncoderDecoder()
565 …VerifyOrQuit(decoderContext.mError == OT_ERROR_PARSE, "Decoder::Decode() did not fail with bad FCS… in TestEncoderDecoder()
574 …VerifyOrQuit(decoderContext.mError == OT_ERROR_PARSE, "Decoder::Decode() did not fail for short fr… in TestEncoderDecoder()
636 …VerifyOrQuit(decoderContext.mError == OT_ERROR_NONE, "Decoder::Decode() returned incorrect error c… in TestFuzzEncoderDecoder()
Dtest_ip_address.cpp44 ot::Error mError; member
59 … VerifyOrQuit(error == aTestVector->mError, "Address::FromString returned unexpected error code"); in checkAddressFromString()
Dtest_lowpan.cpp160 printf("Expected error -------------- %s\n", aVector.mError ? "yes" : "no"); in Test()
179 aVector.mError); in Test()
181 if (aVector.mError == kErrorNone) in Test()
210 if (aVector.mError == kErrorNone) in Test()
/openthread-2.7.6/src/lib/spinel/
Dradio_spinel_impl.hpp186 , mError(OT_ERROR_NONE) in RadioSpinel()
772 VerifyOrExit(unpacked > 0, mError = OT_ERROR_PARSE); in HandleWaitingResponse()
773 mError = SpinelStatusToOtError(status); in HandleWaitingResponse()
783 VerifyOrExit(unpacked > 0, mError = OT_ERROR_PARSE); in HandleWaitingResponse()
796 mError = (this->*handler)(aBuffer, aLength); in HandleWaitingResponse()
803 VerifyOrExit(unpacked > 0, mError = OT_ERROR_PARSE); in HandleWaitingResponse()
804 mError = OT_ERROR_NONE; in HandleWaitingResponse()
811 mError = OT_ERROR_NONE; in HandleWaitingResponse()
815 mError = OT_ERROR_DROP; in HandleWaitingResponse()
821 mError = OT_ERROR_DROP; in HandleWaitingResponse()
[all …]
Dradio_spinel.hpp941 otError mError; ///< The result of current transaction. member in ot::Spinel::RadioSpinel