Searched defs:Usage (Results 1 - 10 of 10) sorted by relevance

/art/cmdline/
H A Dcmdline_parse_result.h34 static CmdlineParseResult Usage(const std::string& message) { function in struct:art::CmdlineParseResult
/art/compiler/driver/
H A Dcompiler_options.cc105 void CompilerOptions::ParseHugeMethodMax(const StringPiece& option, UsageFn Usage) { argument
106 ParseUintOption(option, "--huge-method-max", &huge_method_threshold_, Usage);
109 void CompilerOptions::ParseLargeMethodMax(const StringPiece& option, UsageFn Usage) { argument
110 ParseUintOption(option, "--large-method-max", &large_method_threshold_, Usage);
113 void CompilerOptions::ParseSmallMethodMax(const StringPiece& option, UsageFn Usage) { argument
114 ParseUintOption(option, "--small-method-max", &small_method_threshold_, Usage);
117 void CompilerOptions::ParseTinyMethodMax(const StringPiece& option, UsageFn Usage) { argument
118 ParseUintOption(option, "--tiny-method-max", &tiny_method_threshold_, Usage);
121 void CompilerOptions::ParseNumDexMethods(const StringPiece& option, UsageFn Usage) { argument
122 ParseUintOption(option, "--num-dex-methods", &num_dex_methods_threshold_, Usage);
125 ParseInlineDepthLimit(const StringPiece& option, UsageFn Usage) argument
129 ParseInlineMaxCodeUnits(const StringPiece& option, UsageFn Usage) argument
147 ParseCompilerOption(const StringPiece& option, UsageFn Usage) argument
[all...]
/art/compiler/jit/
H A Djit_compiler.cc79 NO_RETURN static void Usage(const char* fmt, ...) { function in namespace:art::jit
115 compiler_options_->ParseCompilerOption(argument, Usage);
/art/runtime/
H A Dparsed_options.cc309 // TODO: Move Usage information into this DSL.
346 Usage("%s is not a valid instruction set.", isa_str);
362 Usage("vfprintf argument was nullptr");
375 Usage("exit argument was nullptr");
386 Usage("abort was nullptr\n");
453 Usage("%s\n", parse_result.GetMessage().c_str());
456 Usage("%s\n", parse_result.GetMessage().c_str());
468 Usage(nullptr);
478 Usage("-Xusejit:true and -Xint cannot be specified together");
569 Usage("Th
621 void ParsedOptions::Usage(const char* fmt, ...) { function in class:art::ParsedOptions
[all...]
H A Dutils.h353 UsageFn Usage,
360 Usage("Failed to parse %s '%s' as an integer", option_name.c_str(), value_string);
363 Usage("%s passed a negative value %d", option_name.c_str(), parsed_integer_value);
373 UsageFn Usage);
350 ParseUintOption(const StringPiece& option, const std::string& option_name, T* out, UsageFn Usage, bool is_long_option = true) argument
H A Dutils.cc1855 UsageFn Usage) {
1858 Usage("Missing char %c in option %s\n", c, s.c_str());
1869 UsageFn Usage) {
1871 ParseStringAfterChar(option, after_char, &substring, Usage);
1886 Usage("Invalid double value %s for option %s\n", substring.c_str(), option.c_str());
1852 ParseStringAfterChar(const std::string& s, char c, std::string* parsed_value, UsageFn Usage) argument
1864 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value, UsageFn Usage) argument
/art/profman/
H A Dprofman.cc72 NO_RETURN static void Usage(const char *fmt, ...) { function in namespace:art
79 UsageError("Usage: profman [options]...");
137 Usage("No arguments specified");
149 ParseUintOption(option, "--dump-output-to-fd", &dump_output_to_fd_, Usage);
157 ParseUintOption(option, "--reference-profile-file-fd", &reference_profile_file_fd_, Usage);
163 Usage("Unknown argument '%s'", option.data());
173 Usage("No profile files specified.");
176 Usage("Profile files should not be specified with both --profile-file-fd and --profile-file");
179 Usage("No reference profile file specified.");
182 Usage("Referenc
[all...]
/art/compiler/
H A Doat_test.cc45 NO_RETURN static void Usage(const char* fmt, ...) { function in namespace:art
99 compiler_options_->ParseCompilerOption(option, Usage);
/art/patchoat/
H A Dpatchoat.cc906 NO_RETURN static void Usage(const char *fmt, ...) { function in namespace:art
913 UsageError("Usage: patchoat [options]...");
997 Usage("Image patching requires --output-image-file");
1001 Usage("Must supply a desired new offset or delta.");
1005 Usage("Base offset/delta must be aligned to a pagesize (0x%08x) boundary.", kPageSize);
1046 Usage("Only one of --base-offset-delta or --patched-image-location may be used.");
1048 Usage("Must specify --base-offset-delta or --patched-image-location.");
1053 Usage("Both input and output oat must be supplied to patch an app odex.");
1058 Usage("Unable to find filename for input oat location %s", input_oat_location.c_str());
1077 Usage("Unabl
[all...]
/art/dex2oat/
H A Ddex2oat.cc175 NO_RETURN static void Usage(const char* fmt, ...) { function in namespace:art
183 UsageError("Usage: dex2oat [options]...");
577 ParseUintOption(option, "--zip-fd", &zip_fd_, Usage);
581 ParseUintOption(option, "--oat-fd", &oat_fd_, Usage);
588 ParseUintOption(option, arg_name, &fd, Usage);
593 ParseUintOption(option, "-j", &thread_count_, Usage, /* is_long_option */ false);
602 Usage("Failed to parse hexadecimal value for option %s", option.data());
627 Usage("%s", parser_options->error_msg.c_str());
639 Usage("Problem initializing default instruction set features variant: %s",
647 Usage("Erro
[all...]

Completed in 226 milliseconds