• Home
  • Raw
  • Download

Lines Matching refs:mOptions

848     int v = mOptions.size();  in registerAllOptions()
852 mOptions.push_back({'h', "help", no_argument, v++, [](ListCommand*, const char*) { in registerAllOptions()
855 mOptions.push_back({'i', "interface", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
859 mOptions.push_back({'l', "released", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
863 mOptions.push_back({'t', "transport", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
867 mOptions.push_back({'r', "arch", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
871 mOptions.push_back({'s', "hash", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
875 mOptions.push_back({'p', "pid", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
879 mOptions.push_back({'a', "address", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
883 mOptions.push_back({'c', "clients", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
887 mOptions.push_back({'e', "threads", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
891 mOptions.push_back({'m', "cmdline", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
895mOptions.push_back({'d', "debug", optional_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
902 mOptions.push_back({'V', "vintf", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
911mOptions.push_back({'S', "service-status", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
920 mOptions.push_back({'A', "all", no_argument, v++, in registerAllOptions()
930mOptions.push_back({'\0', "init-vintf", no_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
937mOptions.push_back({'\0', "init-vintf-partition", required_argument, v++, [](ListCommand* thiz, co… in registerAllOptions()
944mOptions.push_back({'\0', "sort", required_argument, v++, [](ListCommand* thiz, const char* arg) { in registerAllOptions()
955 mOptions.push_back({'\0', "neat", no_argument, v++, [](ListCommand* thiz, const char*) { in registerAllOptions()
959 mOptions.push_back( in registerAllOptions()
1048 if (mOptions.empty()) { in parseArgs()
1052 std::unique_ptr<struct option[]> longOptions = getLongOptions(mOptions, &longOptFlag); in parseArgs()
1053 std::string shortOptions = getShortOptions(mOptions); in parseArgs()
1070 for (const auto& e : mOptions) { in parseArgs()
1075 for (const auto& e : mOptions) { in parseArgs()
1167 for (const auto& e : mOptions) { in usage()