Lines Matching refs:args_

3580     CHECK(args_ != nullptr);  in NeedsRuntime()
3583 bool absolute_addresses = (args_->oat_filename_ == nullptr); in NeedsRuntime()
3586 args_->dump_vmap_, in NeedsRuntime()
3587 args_->dump_code_info_stack_maps_, in NeedsRuntime()
3588 args_->disassemble_code_, in NeedsRuntime()
3590 args_->class_filter_, in NeedsRuntime()
3591 args_->method_filter_, in NeedsRuntime()
3592 args_->list_classes_, in NeedsRuntime()
3593 args_->list_methods_, in NeedsRuntime()
3594 args_->dump_header_only_, in NeedsRuntime()
3595 args_->export_dex_location_, in NeedsRuntime()
3596 args_->app_image_, in NeedsRuntime()
3597 args_->app_oat_, in NeedsRuntime()
3598 args_->addr2instr_)); in NeedsRuntime()
3600 return (args_->boot_image_location_ != nullptr || in NeedsRuntime()
3601 args_->image_location_ != nullptr || in NeedsRuntime()
3602 !args_->imt_dump_.empty()) && in NeedsRuntime()
3603 !args_->symbolize_; in NeedsRuntime()
3607 CHECK(args_ != nullptr); in ExecuteWithoutRuntime()
3608 CHECK(args_->oat_filename_ != nullptr); in ExecuteWithoutRuntime()
3612 if (args_->symbolize_) { in ExecuteWithoutRuntime()
3617 bool no_bits = args_->only_keep_debug_; in ExecuteWithoutRuntime()
3618 return SymbolizeOat(args_->oat_filename_, args_->dex_filename_, args_->output_name_, no_bits) in ExecuteWithoutRuntime()
3622 args_->oat_filename_, in ExecuteWithoutRuntime()
3623 args_->dex_filename_, in ExecuteWithoutRuntime()
3625 args_->os_) == EXIT_SUCCESS; in ExecuteWithoutRuntime()
3630 CHECK(args_ != nullptr); in ExecuteWithRuntime()
3632 if (!args_->imt_dump_.empty() || args_->imt_stat_dump_) { in ExecuteWithRuntime()
3634 args_->imt_dump_, in ExecuteWithRuntime()
3635 args_->imt_stat_dump_, in ExecuteWithRuntime()
3636 args_->oat_filename_, in ExecuteWithRuntime()
3637 args_->dex_filename_); in ExecuteWithRuntime()
3640 if (args_->oat_filename_ != nullptr) { in ExecuteWithRuntime()
3642 args_->oat_filename_, in ExecuteWithRuntime()
3643 args_->dex_filename_, in ExecuteWithRuntime()
3645 args_->os_) == EXIT_SUCCESS; in ExecuteWithRuntime()
3648 return DumpImages(runtime, oat_dumper_options_.get(), args_->os_) == EXIT_SUCCESS; in ExecuteWithRuntime()