Home
last modified time | relevance | path

Searched refs:config_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/metrics/
Dreporter.cc44 : config_{config}, in MetricsReporter()
54 config_ = config; in ReloadConfig()
58 return session_data.session_id % config_.reporting_num_mods < config_.reporting_mods; in IsMetricsReportingEnabled()
129 if (config_.dump_to_logcat) { in BackgroundThreadRun()
132 if (config_.dump_to_file.has_value()) { in BackgroundThreadRun()
134 if (config_.metrics_format == "xml") { in BackgroundThreadRun()
140 backends_.emplace_back(new FileBackend(std::move(formatter), config_.dump_to_file.value())); in BackgroundThreadRun()
142 if (config_.dump_to_statsd) { in BackgroundThreadRun()
225 config_.period_spec.has_value() && in ShouldReportAtStartup()
226 config_.period_spec->report_startup_first; in ShouldReportAtStartup()
[all …]
Dreporter.h171 ReportingConfig config_; variable
/art/odrefresh/
Dodrefresh_test.cc143 OdRefreshTest() : config_("odrefresh") {} in OdRefreshTest()
216 config_.SetApexInfoListFile(apex_info_filename); in SetUp()
218 config_.SetArtBinDir(temp_dir_path + "/bin"); in SetUp()
219 config_.SetBootClasspath(core_oj_jar_ + ":" + framework_jar_ + ":" + conscrypt_jar_ + ":" + in SetUp()
221 config_.SetDex2oatBootclasspath(core_oj_jar_ + ":" + framework_jar_); in SetUp()
222 config_.SetSystemServerClasspath(location_provider_jar_ + ":" + services_jar_); in SetUp()
223 config_.SetStandaloneSystemServerJars(services_foo_jar_ + ":" + services_bar_jar_); in SetUp()
224 config_.SetIsa(InstructionSet::kX86_64); in SetUp()
225 config_.SetZygoteKind(ZygoteKind::kZygote64_32); in SetUp()
226 config_.SetSystemServerCompilerFilter(""); in SetUp()
[all …]
Dodrefresh.cc699 : config_(config), in OnDeviceRefresh()
707 dex2oat_boot_classpath_jars_ = Split(config_.GetDex2oatBootClasspath(), ":"); in OnDeviceRefresh()
709 all_systemserver_jars_ = Split(config_.GetSystemServerClasspath(), ":"); in OnDeviceRefresh()
711 boot_classpath_jars_ = Split(config_.GetBootClasspath(), ":"); in OnDeviceRefresh()
712 std::string standalone_system_server_jars_str = config_.GetStandaloneSystemServerJars(); in OnDeviceRefresh()
757 apex::readApexInfoList(config_.GetApexInfoListFile().c_str()); in GetApexInfoList()
815 for (const auto& [key, value] : config_.GetSystemProperties()) { in WriteCacheInfo()
853 config_.GetCompilationOsMode() ? std::make_optional(true) : std::nullopt)); in WriteCacheInfo()
934 return config_.GetArtifactDirectory() + "/" + basename; in GetPrimaryBootImage()
967 return ART_FORMAT("{}/{}", config_.GetArtifactDirectory(), basename); in GetBootImageMainlineExtension()
[all …]
Dodrefresh.h184 const OdrConfig& Config() const { return config_; } in Config()
365 const OdrConfig& config_; variable