Home
last modified time | relevance | path

Searched refs:ParseUint32 (Results 1 – 6 of 6) sorted by relevance

/openthread-latest/tests/unit/
Dtest_url.cpp247 SuccessOrQuit(args.ParseUint32("val1", uint32val)); in TestUintValue()
249 SuccessOrQuit(args.ParseUint32("val2", uint32val)); in TestUintValue()
251 SuccessOrQuit(args.ParseUint32("val3", uint32val)); in TestUintValue()
253 VerifyOrQuit(args.ParseUint32("val4", uint32val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
255 SuccessOrQuit(args.ParseUint32("val5", uint32val)); in TestUintValue()
257 VerifyOrQuit(args.ParseUint32("val6", uint32val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
259 VerifyOrQuit(args.ParseUint32("val7", uint32val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
261 VerifyOrQuit(args.ParseUint32("val8", uint32val) == OT_ERROR_NOT_FOUND); in TestUintValue()
/openthread-latest/src/lib/url/
Durl.cpp121 otError Url::ParseUint32(const char *aName, uint32_t &aValue) const in ParseUint32() function in ot::Url::Url
142 SuccessOrExit(error = ParseUint32(aName, value)); in ParseUint16()
155 SuccessOrExit(error = ParseUint32(aName, value)); in ParseUint8()
Durl.hpp116 otError ParseUint32(const char *aName, uint32_t &aValue) const;
/openthread-latest/src/posix/platform/
Dspi_interface.cpp138 …VerifyOrDie(mRadioUrl.ParseUint32("spi-speed", spiSpeed) != OT_ERROR_INVALID_ARGS, OT_EXIT_INVALID… in Init()
139 VerifyOrDie(mRadioUrl.ParseUint32("spi-reset-delay", spiResetDelay) != OT_ERROR_INVALID_ARGS, in Init()
Dhdlc_interface.cpp508 IgnoreError(aRadioUrl.ParseUint32("uart-baudrate", baudrate)); in OpenFile()
Dradio.cpp143 SuccessOrDie(aRadioUrl.ParseUint32("bus-latency", busLatency)); in ProcessRadioUrl()