Home
last modified time | relevance | path

Searched refs:ParseUint16 (Results 1 – 4 of 4) sorted by relevance

/openthread-3.6.0/tests/unit/
Dtest_url.cpp228 SuccessOrQuit(args.ParseUint16("val1", uint16val)); in TestUintValue()
230 SuccessOrQuit(args.ParseUint16("val2", uint16val)); in TestUintValue()
232 SuccessOrQuit(args.ParseUint16("val3", uint16val)); in TestUintValue()
234 VerifyOrQuit(args.ParseUint16("val4", uint16val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
236 SuccessOrQuit(args.ParseUint16("val5", uint16val)); in TestUintValue()
238 VerifyOrQuit(args.ParseUint16("val6", uint16val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
240 VerifyOrQuit(args.ParseUint16("val7", uint16val) == OT_ERROR_INVALID_ARGS); in TestUintValue()
242 VerifyOrQuit(args.ParseUint16("val8", uint16val) == OT_ERROR_NOT_FOUND); in TestUintValue()
/openthread-3.6.0/src/lib/url/
Durl.hpp140 otError ParseUint16(const char *aName, uint16_t &aValue) const;
Durl.cpp137 otError Url::ParseUint16(const char *aName, uint16_t &aValue) const in ParseUint16() function in ot::Url::Url
/openthread-3.6.0/src/posix/platform/
Dspi_interface.cpp137 …VerifyOrDie(mRadioUrl.ParseUint16("spi-cs-delay", spiCsDelay) != OT_ERROR_INVALID_ARGS, OT_EXIT_IN… in Init()