Home
last modified time | relevance | path

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

/openthread-latest/tests/unit/
Dtest_url.cpp209 SuccessOrQuit(args.ParseUint8("val1", uint8val)); in TestUintValue()
211 SuccessOrQuit(args.ParseUint8("val2", uint8val)); in TestUintValue()
213 SuccessOrQuit(args.ParseUint8("val3", uint8val)); in TestUintValue()
215 VerifyOrQuit(args.ParseUint8("val4", uint8val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
217 SuccessOrQuit(args.ParseUint8("val5", uint8val)); in TestUintValue()
219 VerifyOrQuit(args.ParseUint8("val6", uint8val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
221 VerifyOrQuit(args.ParseUint8("val7", uint8val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
223 VerifyOrQuit(args.ParseUint8("val8", uint8val) == OT_ERROR_NOT_FOUND); in TestUintValue()
/openthread-latest/src/posix/platform/
Dspi_interface.cpp135 SuccessOrDie(mRadioUrl.ParseUint8("gpio-int-line", spiGpioIntLine)); in Init()
136 SuccessOrDie(mRadioUrl.ParseUint8("gpio-reset-line", spiGpioResetLine)); in Init()
137 …VerifyOrDie(mRadioUrl.ParseUint8("spi-mode", spiMode) != OT_ERROR_INVALID_ARGS, OT_EXIT_INVALID_AR… in Init()
142 …VerifyOrDie(mRadioUrl.ParseUint8("spi-align-allowance", spiAlignAllowance) != OT_ERROR_INVALID_ARG… in Init()
144 … VerifyOrDie(mRadioUrl.ParseUint8("spi-small-packet", spiSmallPacketSize) != OT_ERROR_INVALID_ARGS, in Init()
Dhdlc_interface.cpp493 IgnoreError(aRadioUrl.ParseUint8("uart-stop", stopBit)); in OpenFile()
/openthread-latest/src/lib/url/
Durl.hpp146 otError ParseUint8(const char *aName, uint8_t &aValue) const;
Durl.cpp150 otError Url::ParseUint8(const char *aName, uint8_t &aValue) const in ParseUint8() function in ot::Url::Url