/art/dexoptanalyzer/ |
D | dexoptanalyzer.cc | 71 NO_RETURN static void Usage(const char *fmt, ...) { in Usage() function 159 Usage("No arguments specified"); in ParseArgs() 172 Usage("Invalid --profile-analysis-result= %d", parse_result); in ParseArgs() 180 Usage("Invalid compiler filter '%s'", raw_option); in ParseArgs() 186 Usage("Invalid isa '%s'", raw_option); in ParseArgs() 192 Usage("Missing argument for --runtime-arg\n"); in ParseArgs() 206 Usage("Invalid --oat-fd %d", oat_fd_); in ParseArgs() 211 Usage("Invalid --vdex-fd %d", vdex_fd_); in ParseArgs() 216 Usage("Invalid --zip-fd %d", zip_fd_); in ParseArgs() 227 Usage("Invalid --class-loader-context-fds %s", str_context_fds_arg.c_str()); in ParseArgs() [all …]
|
/art/test/generate-boot-image/ |
D | generate-boot-image.cc | 100 [[noreturn]] void Usage(const std::string& message) { in Usage() function 194 Usage(ART_FORMAT("Unrecognized --use-profile value: '{}'", arg)); in Main() 209 Usage(ART_FORMAT("Unrecognized --core-only value: '{}'", arg)); in Main() 217 Usage(ART_FORMAT("Unrecognized argument: '{}'", argv[i])); in Main() 222 Usage("--output-dir must be specified"); in Main() 229 Usage("--dex2oat-bin must be specified when running on host"); in Main() 235 Usage("--android-root must be specified when running on host"); in Main() 243 Usage("--profile-file must be specified when running on host and --use-profile is true"); in Main() 251 Usage("--instruction-set must be specified when running on host"); in Main()
|
/art/libarttools/ |
D | art_exec.cc | 88 [[noreturn]] void Usage(const std::string& error_msg) { in Usage() function 104 Usage("Empty task profile list"); in ParseOptions() 110 Usage("Unknown priority " + std::string(arg)); in ParseOptions() 118 Usage("Invalid fd " + fd_str); in ParseOptions() 125 Usage("Malformed environment variable. Must contain '='"); in ParseOptions() 135 Usage("Missing command after '--'"); in ParseOptions() 140 Usage("Unknown option " + std::string(arg)); in ParseOptions() 143 Usage("Missing '--'"); in ParseOptions()
|
/art/tools/dexanalyze/ |
D | dexanalyze.cc | 51 static int Usage(char** argv) { in Usage() function in art::dexanalyze::DexAnalyze 77 return Usage(argv); in Parse() 83 return Usage(argv); in Parse() 91 return Usage(argv); in Parse() 107 return Usage(argv); in Parse() 114 return Usage(argv); in Parse()
|
/art/dex2oat/ |
D | dex2oat.cc | 233 NO_RETURN static void Usage(const char* fmt, ...) { in Usage() function 266 Usage("Invalid cpu \"d\" specified in --cpu-set argument (nprocessors = %d)", in SetCpuAffinity() 602 Usage("Failed to parse hexadecimal value for option %s", option.data()); in ParseBase() 619 Usage("%s", parser_options->error_msg.c_str()); in ParseInstructionSetVariant() 628 Usage("Problem initializing default instruction set features variant: %s", in ParseInstructionSetFeatures() 636 Usage("Error parsing '%s': %s", option.c_str(), parser_options->error_msg.c_str()); in ParseInstructionSetFeatures() 650 Usage("--android-root unspecified and ANDROID_ROOT not set"); in ProcessOptions() 669 Usage("Can't have both (--image or --image-fd) and (--app-image-fd or --app-image-file)"); in ProcessOptions() 675 Usage("Can't have both --image and --image-fd"); in ProcessOptions() 679 Usage("Output must be supplied with either --oat-file or --oat-fd"); in ProcessOptions() [all …]
|
/art/profman/ |
D | profman.cc | 100 NO_RETURN static void Usage(const char *fmt, ...) { in Usage() function 241 Usage("Failed to parse %s '%s' as an integer", option_name.c_str(), value.c_str()); in ParseUintValue() 244 Usage("%s passed a negative value %" PRId64, option_name.c_str(), parsed_integer_value); in ParseUintValue() 248 Usage("%s passed a value %" PRIu64 " above max (%" PRIu64 ")", in ParseUintValue() 280 Usage("Failed to parse %s '%s' as an integer", option_name.c_str(), value_string); in ParseBoolOption() 306 Usage("Failed to parse %s '%s' as (app|boot|bprof)", option_name.c_str(), value_string); in ParseOutputProfileType() 345 Usage("No arguments specified"); in ParseArgs() 408 Usage("--special-package needs to be specified as pkg_name:threshold"); in ParseArgs() 481 Usage("Unknown argument '%s'", raw_option); in ParseArgs() 487 Usage("Profile files should not be specified with both --profile-file-fd and --profile-file"); in ParseArgs() [all …]
|
/art/runtime/ |
D | parsed_options.cc | 560 Usage("%s is not a valid instruction set.", isa_str); in ProcessSpecialOptions() 576 Usage("vfprintf argument was nullptr"); in ProcessSpecialOptions() 589 Usage("exit argument was nullptr"); in ProcessSpecialOptions() 600 Usage("abort was nullptr\n"); in ProcessSpecialOptions() 669 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse() 672 Usage("%s\n", parse_result.GetMessage().c_str()); in DoParse() 685 Usage(nullptr); in DoParse() 700 Usage("-Xusejit:true and -Xint cannot be specified together\n"); in DoParse() 760 Usage("The number of boot class path files does not match" in DoParse() 774 Usage("-Ximage and -Xforcejitzygote cannot be specified together\n"); in DoParse() [all …]
|
D | parsed_options.h | 71 void Usage(const char* fmt, ...);
|
/art/tools/hiddenapi/ |
D | find_api_violations.pl | 18 use Pod::Usage;
|
D | hiddenapi.cc | 71 NO_RETURN static void Usage(const char* fmt, ...) { in Usage() function 821 Usage("Unknown argument '%s'", raw_option); in ParseArgs() 859 Usage("Unknown argument '%s'", raw_option); in ParseArgs() 864 Usage("Unknown command '%s'", raw_command); in ParseArgs() 867 Usage("No command specified"); in ParseArgs() 873 Usage("No input DEX files specified"); in EncodeAccessFlags() 875 Usage("Number of input DEX files does not match number of output DEX files"); in EncodeAccessFlags() 990 Usage("No boot DEX files specified"); in ListApi() 992 Usage("No stub DEX files specified"); in ListApi() 994 Usage("No output path specified"); in ListApi()
|
/art/tools/build/ |
D | var_cache.sh | 164 echo "Usage: $0 [--debug] [--show-commands] [--dump-cache] [--var <name>] [--var <name2>...]"
|
/art/tools/ |
D | run-gtests.sh | 21 Usage: $0 [<gtest>...] [--] [<gtest-option>...]
|
D | host_bcp.sh | 19 Usage
|
/art/test/939-hello-transformation-bcp/ |
D | convert-to-base64.sh | 39 Usage: $0 -d8 $ANDROID_HOME/build-tools/*/d8 \\
|
/art/test/dexdump/ |
D | run-all-tests | 69 Usage:
|
/art/tools/jvmti-agents/wrapagentproperties/ |
D | README.md | 6 # Usage chapter
|
/art/cmdline/ |
D | cmdline_parse_result.h | 34 static CmdlineParseResult Usage(const std::string& message) { in Usage() function
|
/art/tools/jvmti-agents/dump-jvmti-state/ |
D | README.md | 7 # Usage chapter
|
/art/tools/jvmti-agents/chain-agents/ |
D | README.md | 12 # Usage chapter
|
/art/tools/jvmti-agents/jit-load/ |
D | README.md | 6 # Usage chapter
|
/art/tools/jvmti-agents/simple-force-redefine/ |
D | README.md | 8 # Usage chapter
|
/art/tools/jvmti-agents/enable-vlog/ |
D | README.md | 6 # Usage chapter
|
/art/build/apex/ |
D | runtests.sh | 90 Usage: $0 [OPTION] [apexes...]
|
/art/tools/jvmti-agents/field-null-percent/ |
D | README.md | 8 # Usage chapter
|
/art/tools/golem/ |
D | build-target.sh | 29 Usage: $(basename "${BASH_SOURCE[0]}") [--golem=<target>] --machine-type=MACHINE_TYPE
|