Home | History | Annotate | Download | only in common

Lines Matching defs:arg

40         std::string arg = argv[i];
41 if (arg == "-h" || arg == "--help") {
43 } else if (arg == "-b" || arg == "--bootstrapping") {
45 } else if (arg == "--disable_privet") {
47 } else if (arg.find("--registration_ticket") != std::string::npos) {
48 auto pos = arg.find("=");
52 registration_ticket_ = arg.substr(pos + 1);
53 } else if (arg.find("--v") != std::string::npos) {
54 auto pos = arg.find("=");
58 logging::SetMinLogLevel(-std::stoi(arg.substr(pos + 1)));