Searched refs:raw_option (Results 1 – 7 of 7) sorted by relevance
/aosp12/art/tools/art_verifier/ |
H A D | art_verifier.cc | 95 ParseStatus ParseCustom(const char* raw_option, in ParseCustom() 98 DCHECK_EQ(strlen(raw_option), raw_option_length); in ParseCustom() 100 ParseStatus base_parse = Base::ParseCustom(raw_option, raw_option_length, error_msg); in ParseCustom() 106 std::string_view option(raw_option, raw_option_length); in ParseCustom() 108 dex_filename_ = raw_option + strlen("--dex-file="); in ParseCustom() 117 repetitions_ = strtoul(raw_option + strlen("--repetitions="), &end, 10); in ParseCustom() 120 api_level_ = strtoul(raw_option + strlen("--api-level="), &end, 10); in ParseCustom()
|
/aosp12/art/profman/ |
H A D | profman.cc | 258 DCHECK(StartsWith(raw_option, option_prefix)) << raw_option << " " << option_prefix; in ParseUintOption() 269 DCHECK(StartsWith(raw_option, option_prefix)) << raw_option << " " << option_prefix; in ParseBoolOption() 290 DCHECK(StartsWith(raw_option, option_prefix)) << raw_option << " " << option_prefix; in ParseOutputProfileType() 362 ParseUintOption(raw_option, in ParseArgs() 368 ParseUintOption(raw_option, in ParseArgs() 374 ParseUintOption(raw_option, in ParseArgs() 380 ParseUintOption(raw_option, in ParseArgs() 395 ParseBoolOption(raw_option, in ParseArgs() 408 ParseBoolOption(raw_option, in ParseArgs() 433 ParseUintOption(raw_option, in ParseArgs() [all …]
|
/aosp12/art/dexoptanalyzer/ |
H A D | dexoptanalyzer.cc | 170 const char* raw_option = argv[i]; in ParseArgs() local 171 const std::string_view option(raw_option); in ParseArgs() 185 const char* filter_str = raw_option + strlen("--compiler-filter="); in ParseArgs() 187 Usage("Invalid compiler filter '%s'", raw_option); in ParseArgs() 190 const char* isa_str = raw_option + strlen("--isa="); in ParseArgs() 193 Usage("Invalid isa '%s'", raw_option); in ParseArgs() 206 const char* new_android_data = raw_option + strlen("--android-data="); in ParseArgs() 242 Usage("Unknown argument '%s'", raw_option); in ParseArgs()
|
/aosp12/art/cmdline/ |
H A D | cmdline.h | 155 const char* const raw_option = argv[i]; in Parse() local 156 const std::string_view option(raw_option); in Parse() 158 boot_image_location_ = raw_option + strlen("--boot-image="); in Parse() 160 const char* const instruction_set_str = raw_option + strlen("--instruction-set="); in Parse() 186 ParseStatus parse_status = ParseCustom(raw_option, option.length(), &error_msg); in Parse() 324 virtual ParseStatus ParseCustom(const char* raw_option ATTRIBUTE_UNUSED, in ParseCustom()
|
/aosp12/art/tools/hiddenapi/ |
H A D | hiddenapi.cc | 914 const char* raw_option = argv[i]; in ParseArgs() local 915 const std::string_view option(raw_option); in ParseArgs() 927 Usage("Unknown argument '%s'", raw_option); in ParseArgs() 933 const char* raw_option = argv[i]; in ParseArgs() local 934 const std::string_view option(raw_option); in ParseArgs() 965 Usage("Unknown argument '%s'", raw_option); in ParseArgs()
|
/aosp12/art/oatdump/ |
H A D | oatdump.cc | 3056 ParseStatus ParseCustom(const char* raw_option, in ParseCustom() 3059 DCHECK_EQ(strlen(raw_option), raw_option_length); in ParseCustom() 3067 std::string_view option(raw_option, raw_option_length); in ParseCustom() 3069 oat_filename_ = raw_option + strlen("--oat-file="); in ParseCustom() 3071 dex_filename_ = raw_option + strlen("--dex-file="); in ParseCustom() 3073 image_location_ = raw_option + strlen("--image="); in ParseCustom() 3083 oat_filename_ = raw_option + strlen("--symbolize="); in ParseCustom() 3088 class_filter_ = raw_option + strlen("--class-filter="); in ParseCustom() 3090 method_filter_ = raw_option + strlen("--method-filter="); in ParseCustom() 3103 app_image_ = raw_option + strlen("--app-image="); in ParseCustom() [all …]
|
/aosp12/art/imgdiag/ |
H A D | imgdiag.cc | 1861 ParseStatus ParseCustom(const char* raw_option, in ParseCustom() 1864 DCHECK_EQ(strlen(raw_option), raw_option_length); in ParseCustom() 1866 ParseStatus base_parse = Base::ParseCustom(raw_option, raw_option_length, error_msg); in ParseCustom() 1872 std::string_view option(raw_option, raw_option_length); in ParseCustom() 1874 const char* image_diff_pid = raw_option + strlen("--image-diff-pid="); in ParseCustom() 1881 const char* zygote_diff_pid = raw_option + strlen("--zygote-diff-pid="); in ParseCustom()
|