Lines Matching refs:raw_option
3422 ParseStatus ParseCustom(const char* raw_option, in ParseCustom()
3425 DCHECK_EQ(strlen(raw_option), raw_option_length); in ParseCustom()
3427 ParseStatus base_parse = Base::ParseCustom(raw_option, raw_option_length, error_msg); in ParseCustom()
3433 std::string_view option(raw_option, raw_option_length); in ParseCustom()
3435 oat_filename_ = raw_option + strlen("--oat-file="); in ParseCustom()
3437 dex_filename_ = raw_option + strlen("--dex-file="); in ParseCustom()
3439 image_location_ = raw_option + strlen("--image="); in ParseCustom()
3449 oat_filename_ = raw_option + strlen("--symbolize="); in ParseCustom()
3454 class_filter_ = raw_option + strlen("--class-filter="); in ParseCustom()
3456 method_filter_ = raw_option + strlen("--method-filter="); in ParseCustom()
3462 export_dex_location_ = raw_option + strlen("--export-dex-to="); in ParseCustom()
3464 if (!android::base::ParseUint(raw_option + strlen("--addr2instr="), &addr2instr_)) { in ParseCustom()
3469 app_image_ = raw_option + strlen("--app-image="); in ParseCustom()
3471 app_oat_ = raw_option + strlen("--app-oat="); in ParseCustom()