Lines Matching refs:args_

3612     CHECK(args_ != nullptr);  in NeedsRuntime()
3615 bool absolute_addresses = (args_->oat_filename_ == nullptr); in NeedsRuntime()
3618 args_->dump_vmap_, in NeedsRuntime()
3619 args_->dump_code_info_stack_maps_, in NeedsRuntime()
3620 args_->disassemble_code_, in NeedsRuntime()
3622 args_->class_filter_, in NeedsRuntime()
3623 args_->method_filter_, in NeedsRuntime()
3624 args_->list_classes_, in NeedsRuntime()
3625 args_->list_methods_, in NeedsRuntime()
3626 args_->dump_header_only_, in NeedsRuntime()
3627 args_->export_dex_location_, in NeedsRuntime()
3628 args_->app_image_, in NeedsRuntime()
3629 args_->app_oat_, in NeedsRuntime()
3630 args_->addr2instr_)); in NeedsRuntime()
3632 return (args_->boot_image_location_ != nullptr || in NeedsRuntime()
3633 args_->image_location_ != nullptr || in NeedsRuntime()
3634 !args_->imt_dump_.empty()) && in NeedsRuntime()
3635 !args_->symbolize_; in NeedsRuntime()
3639 CHECK(args_ != nullptr); in ExecuteWithoutRuntime()
3640 CHECK(args_->oat_filename_ != nullptr); in ExecuteWithoutRuntime()
3644 if (args_->symbolize_) { in ExecuteWithoutRuntime()
3649 bool no_bits = args_->only_keep_debug_; in ExecuteWithoutRuntime()
3650 return SymbolizeOat(args_->oat_filename_, args_->dex_filename_, args_->output_name_, no_bits) in ExecuteWithoutRuntime()
3654 args_->oat_filename_, in ExecuteWithoutRuntime()
3655 args_->dex_filename_, in ExecuteWithoutRuntime()
3657 args_->os_) == EXIT_SUCCESS; in ExecuteWithoutRuntime()
3662 CHECK(args_ != nullptr); in ExecuteWithRuntime()
3664 if (!args_->imt_dump_.empty() || args_->imt_stat_dump_) { in ExecuteWithRuntime()
3666 args_->imt_dump_, in ExecuteWithRuntime()
3667 args_->imt_stat_dump_, in ExecuteWithRuntime()
3668 args_->oat_filename_, in ExecuteWithRuntime()
3669 args_->dex_filename_); in ExecuteWithRuntime()
3672 if (args_->oat_filename_ != nullptr) { in ExecuteWithRuntime()
3674 args_->oat_filename_, in ExecuteWithRuntime()
3675 args_->dex_filename_, in ExecuteWithRuntime()
3677 args_->os_) == EXIT_SUCCESS; in ExecuteWithRuntime()
3680 return DumpImages(runtime, oat_dumper_options_.get(), args_->os_) == EXIT_SUCCESS; in ExecuteWithRuntime()