| /openbmc/witherspoon-pfault-analysis/ |
| H A D | argument.hpp | 16 class ArgumentParser class 19 ArgumentParser() = delete; 20 ~ArgumentParser() = default; 21 ArgumentParser(const ArgumentParser&) = delete; 22 ArgumentParser& operator=(const ArgumentParser&) = delete; 23 ArgumentParser(ArgumentParser&&) = default; 24 ArgumentParser& operator=(ArgumentParser&&) = default; 32 ArgumentParser(int argc, char** argv);
|
| /openbmc/phosphor-led-sysfs/ |
| H A D | argument.hpp | 15 class ArgumentParser class 18 ArgumentParser() = delete; 19 ~ArgumentParser() = default; 20 ArgumentParser(const ArgumentParser&) = delete; 21 ArgumentParser& operator=(const ArgumentParser&) = delete; 22 ArgumentParser(ArgumentParser&&) = default; 23 ArgumentParser& operator=(ArgumentParser&&) = default; 32 ArgumentParser(int argc, char* argv[]);
|
| H A D | argument.cpp | 29 ArgumentParser::ArgumentParser(int argc, char* argv[]) in ArgumentParser() function in phosphor::led::ArgumentParser 49 const std::string& ArgumentParser::operator[](const std::string& opt) in operator []() 63 void ArgumentParser::usage(char* argv[]) in usage()
|
| H A D | add_led_action.cpp | 71 auto options = phosphor::led::ArgumentParser(argc, argv); in main() 78 phosphor::led::ArgumentParser::usage(argv); in main()
|
| /openbmc/phosphor-networkd/src/ |
| H A D | argument.hpp | 17 class ArgumentParser class 20 ArgumentParser() = delete; 21 ~ArgumentParser() = default; 22 ArgumentParser(const ArgumentParser&) = delete; 23 ArgumentParser& operator=(const ArgumentParser&) = delete; 24 ArgumentParser(ArgumentParser&&) = default; 25 ArgumentParser& operator=(ArgumentParser&&) = default; 33 ArgumentParser(int argc, char** argv);
|
| H A D | argument.cpp | 15 ArgumentParser::ArgumentParser(int argc, char** argv) in ArgumentParser() function in phosphor::network::ncsi::ArgumentParser 39 const std::string& ArgumentParser::operator[](const std::string& opt) in operator []() 52 void ArgumentParser::usage(char* const* argv) in usage() 83 const option ArgumentParser::options[] = { 97 const char* ArgumentParser::optionStr = "irsj:k:x:o:p:c:h?"; 99 const std::string ArgumentParser::trueString = "true"; 100 const std::string ArgumentParser::emptyString = "";
|
| /openbmc/witherspoon-pfault-analysis/power-sequencer/ |
| H A D | argument.cpp | 27 void ArgumentParser::usage(char** argv) in usage() 41 const option ArgumentParser::options[] = { 48 const char* ArgumentParser::optionStr = "a:i:h?"; 49 ArgumentParser::ArgumentParser(int argc, char** argv) in ArgumentParser() function in witherspoon::power::ArgumentParser 73 const std::string& ArgumentParser::operator[](const std::string& opt) in operator []() 86 const std::string ArgumentParser::trueString = "true"; 87 const std::string ArgumentParser::emptyString = "";
|
| H A D | gen-ucd90160-defs.py | 5 from argparse import ArgumentParser 11 parser = ArgumentParser(
|
| /openbmc/witherspoon-pfault-analysis/power-supply/ |
| H A D | argument.cpp | 28 ArgumentParser::ArgumentParser(int argc, char** argv) in ArgumentParser() function in witherspoon::power::ArgumentParser 52 const std::string& ArgumentParser::operator[](const std::string& opt) in operator []() 65 void ArgumentParser::usage(char** argv) in usage() 85 const option ArgumentParser::options[] = { 96 const char* ArgumentParser::optionStr = "p:n:i:r:a:u:h"; 98 const std::string ArgumentParser::trueString = "true"; 99 const std::string ArgumentParser::emptyString = "";
|
| H A D | main.cpp | 32 auto options = ArgumentParser(argc, argv); in main() 44 if (objpath == ArgumentParser::emptyString) in main() 50 if (instnum == ArgumentParser::emptyString) in main() 56 if (invpath == ArgumentParser::emptyString) in main() 91 if (records != ArgumentParser::emptyString) in main() 108 if (((syncGPIOPath == ArgumentParser::emptyString) && in main() 109 (syncGPIONum != ArgumentParser::emptyString)) || in main() 110 ((syncGPIOPath != ArgumentParser::emptyString) && in main() 111 (syncGPIONum == ArgumentParser::emptyString))) in main() 118 if (syncGPIONum != ArgumentParser::emptyString) in main()
|
| /openbmc/qemu/python/qemu/utils/ |
| H A D | qom.py | 70 def configure_parser(cls, parser: argparse.ArgumentParser) -> None: argument 117 def configure_parser(cls, parser: argparse.ArgumentParser) -> None: argument 165 def configure_parser(cls, parser: argparse.ArgumentParser) -> None: argument 211 def configure_parser(cls, parser: argparse.ArgumentParser) -> None: argument 259 parser = argparse.ArgumentParser(
|
| H A D | qom_common.py | 146 def configure_parser(cls, parser: argparse.ArgumentParser) -> None: argument 164 def add_path_prop_arg(cls, parser: argparse.ArgumentParser) -> None: argument 227 parser = argparse.ArgumentParser(description=cls.help)
|
| /openbmc/openbmc-tools/format-yaml/ |
| H A D | format-yaml.py | 5 from argparse import ArgumentParser 11 parser = ArgumentParser(description="YAML formatter")
|
| /openbmc/openbmc/poky/scripts/lib/ |
| H A D | argparse_oe.py | 17 class ArgumentParser(argparse.ArgumentParser): class 22 super(ArgumentParser, self).__init__(*args, **kwargs) 52 ret = super(ArgumentParser, self).add_subparsers(*args, **kwargs) 97 class ArgumentSubParser(ArgumentParser): 137 return super(ArgumentParser, self).format_help()
|
| /openbmc/qemu/tests/tcg/x86_64/system/ |
| H A D | validate-patch.py | 14 from argparse import ArgumentParser 21 parser = ArgumentParser(description="Validate patch")
|
| /openbmc/phosphor-fan-presence/monitor/ |
| H A D | gen-fan-monitor-defs.py | 5 from argparse import ArgumentParser 133 parser = ArgumentParser(
|
| /openbmc/phosphor-power/power-sequencer/ |
| H A D | gen-ucd90160-defs.py | 5 from argparse import ArgumentParser 11 parser = ArgumentParser(
|
| /openbmc/openbmc-tools/pretty-journal/ |
| H A D | pretty-journal.py | 12 from argparse import ArgumentParser 34 parser = ArgumentParser()
|
| /openbmc/qemu/tests/tcg/multiarch/system/ |
| H A D | validate-memory-counts.py | 14 from argparse import ArgumentParser 89 parser = ArgumentParser(description="Validate memory instrumentation")
|
| /openbmc/openbmc-test-automation/templates/ |
| H A D | python_pgm_template | 7 parser = argparse.ArgumentParser(
|
| /openbmc/qemu/target/hexagon/ |
| H A D | gen_opcodes_def.py | 28 parser = argparse.ArgumentParser(
|
| H A D | gen_op_attribs.py | 28 parser = argparse.ArgumentParser(
|
| /openbmc/openbmc-tools/tof-voters/libvoters/ |
| H A D | entry_point.py | 8 parser = argparse.ArgumentParser(description="Obtain TOF voter metrics")
|
| /openbmc/openbmc/meta-arm/meta-arm/lib/oeqa/selftest/cases/tests/ |
| H A D | mock-fvp.py | 20 parser = argparse.ArgumentParser()
|
| /openbmc/openbmc/meta-arm/ci/ |
| H A D | download-lockfile.py | 19 parser = argparse.ArgumentParser()
|