Searched refs:ParseAs (Results 1 – 2 of 2) sorted by relevance
506 template <typename Type> otError ParseAs(Type &aValue) const;618 template <> inline otError Arg::ParseAs(uint8_t &aValue) const { return ParseAsUint8(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg620 template <> inline otError Arg::ParseAs(uint16_t &aValue) const { return ParseAsUint16(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg622 template <> inline otError Arg::ParseAs(uint32_t &aValue) const { return ParseAsUint32(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg624 template <> inline otError Arg::ParseAs(uint64_t &aValue) const { return ParseAsUint64(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg626 template <> inline otError Arg::ParseAs(bool &aValue) const { return ParseAsBool(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg628 template <> inline otError Arg::ParseAs(int8_t &aValue) const { return ParseAsInt8(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg630 template <> inline otError Arg::ParseAs(int16_t &aValue) const { return ParseAsInt16(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg632 template <> inline otError Arg::ParseAs(int32_t &aValue) const { return ParseAsInt32(aValue); } in ParseAs() function in ot::Utils::CmdLineParser::Arg634 template <> inline otError Arg::ParseAs(const char *&aValue) const in ParseAs() function in ot::Utils::CmdLineParser::Arg[all …]
554 SuccessOrExit(error = aArgs[0].ParseAs<ValueType>(value)); in ProcessSet()568 SuccessOrExit(error = aArgs[0].ParseAs<ValueType>(value)); in ProcessSet()