Home
last modified time | relevance | path

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

/art/oatdump/
Doatdump.cc332 options_(options), in OatDumper()
336 new DisassemblerOptions(options_.absolute_addresses_, in OatDumper()
340 CHECK(options_.class_loader_ != nullptr); in OatDumper()
341 CHECK(options_.class_filter_ != nullptr); in OatDumper()
342 CHECK(options_.method_filter_ != nullptr); in OatDumper()
384 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \ in Dump()
430 if (options_.absolute_addresses_) { in Dump()
444 if (options_.addr2instr_ != 0) { in Dump()
445 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); in Dump()
450 if (!options_.dump_header_only_) { in Dump()
[all …]
/art/runtime/
Dprofiler.cc182 uint64_t delay_secs = profiler->options_.GetPeriodS() * backoff; in RunProfilerThread()
188 if (profiler->options_.GetStartImmediately() && startup_delay > 0) { in RunProfilerThread()
200 backoff = std::min(backoff * profiler->options_.GetBackoffCoefficient(), kMaxBackoffSecs); in RunProfilerThread()
209 uint64_t end_us = start_us + profiler->options_.GetDurationS() * UINT64_C(1000000); in RunProfilerThread()
223 usleep(profiler->options_.GetIntervalUs()); // Non-interruptible sleep. in RunProfilerThread()
290 profile_table_.ReadPrevious(fd, options_.GetProfileType()); in WriteProfile()
394 options_(options), in BackgroundMethodSamplingProfiler()
467 return profile_table_.Write(os, options_.GetProfileType()); in DumpProfile()
Dprofiler.h184 const ProfilerOptions& GetProfilerOptions() const { return options_; } in GetProfilerOptions()
219 const ProfilerOptions& options_; variable
/art/runtime/jdwp/
Djdwp_main.cc212 : options_(options), in JdwpState()
475 if (options_->server) { in Run()
490 if (!netState->Establish(options_)) { in Run()
556 if (!options_->server) { in Run()
Djdwp.h353 const JdwpOptions* options_;
Djdwp_event.cc765 JdwpSuspendPolicy suspend_policy = (options_->suspend) ? SP_ALL : SP_NONE; in PostVMStart()