Home
last modified time | relevance | path

Searched refs:options_ (Results 1 – 8 of 8) sorted by relevance

/art/compiler/dex/
Dpass_manager.cc24 PassManager::PassManager(const PassManagerOptions& options) : options_(options) { in PassManager()
35 if (options_.GetDisablePassList().find(pass->GetName()) != std::string::npos) { in CreateDefaultPassList()
Dpass_manager.h134 return options_; in GetOptions()
145 PassManagerOptions options_; variable
/art/oatdump/
Doatdump.cc349 options_(options), in OatDumper()
353 new DisassemblerOptions(options_.absolute_addresses_, in OatDumper()
356 CHECK(options_.class_loader_ != nullptr); in OatDumper()
357 CHECK(options_.class_filter_ != nullptr); in OatDumper()
358 CHECK(options_.method_filter_ != nullptr); in OatDumper()
397 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \ in Dump()
443 if (options_.absolute_addresses_) { in Dump()
457 if (options_.addr2instr_ != 0) { in Dump()
458 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); in Dump()
468 if (options_.export_dex_location_) { in Dump()
[all …]
/art/runtime/jdwp/
Djdwp_main.cc209 : options_(options), in JdwpState()
472 if (options_->server) { in Run()
487 if (!netState->Establish(options_)) { in Run()
554 if (!options_->server) { in Run()
Djdwp.h358 const JdwpOptions* options_;
Djdwp_event.cc766 JdwpSuspendPolicy suspend_policy = (options_->suspend) ? SP_ALL : SP_NONE; in PostVMStart()
/art/runtime/
Dprofiler.cc180 uint64_t delay_secs = profiler->options_.GetPeriodS() * backoff; in RunProfilerThread()
186 if (profiler->options_.GetStartImmediately() && startup_delay > 0) { in RunProfilerThread()
198 backoff = std::min(backoff * profiler->options_.GetBackoffCoefficient(), kMaxBackoffSecs); in RunProfilerThread()
207 uint64_t end_us = start_us + profiler->options_.GetDurationS() * UINT64_C(1000000); in RunProfilerThread()
221 usleep(profiler->options_.GetIntervalUs()); // Non-interruptible sleep. in RunProfilerThread()
288 profile_table_.ReadPrevious(fd, options_.GetProfileType()); in WriteProfile()
390 options_(options), in BackgroundMethodSamplingProfiler()
463 return profile_table_.Write(os, options_.GetProfileType()); in DumpProfile()
Dprofiler.h182 const ProfilerOptions& GetProfilerOptions() const { return options_; } in GetProfilerOptions()
215 const ProfilerOptions& options_; variable