Lines Matching refs:raw_option
3056 ParseStatus ParseCustom(const char* raw_option, in ParseCustom()
3059 DCHECK_EQ(strlen(raw_option), raw_option_length); in ParseCustom()
3061 ParseStatus base_parse = Base::ParseCustom(raw_option, raw_option_length, error_msg); 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()
3096 export_dex_location_ = raw_option + strlen("--export-dex-to="); in ParseCustom()
3098 if (!android::base::ParseUint(raw_option + strlen("--addr2instr="), &addr2instr_)) { in ParseCustom()
3103 app_image_ = raw_option + strlen("--app-image="); in ParseCustom()
3105 app_oat_ = raw_option + strlen("--app-oat="); in ParseCustom()