Home
last modified time | relevance | path

Searched refs:backend (Results 1 – 12 of 12) sorted by relevance

/art/libartbase/base/metrics/
Dmetrics_test.h60 } backend{&counter_value}; in CounterValue()
61 counter.Report({&backend}); in CounterValue()
77 } backend{&buckets}; in GetBuckets()
78 histogram.Report({&backend}); in GetBuckets()
Dmetrics_common.cc73 for (auto& backend : backends) { in ReportAllMetricsAndResetValueMetrics() local
74 backend->BeginReport(current_timestamp_ - beginning_timestamp_); in ReportAllMetricsAndResetValueMetrics()
88 for (auto& backend : backends) { in ReportAllMetricsAndResetValueMetrics() local
89 backend->EndReport(); in ReportAllMetricsAndResetValueMetrics()
97 StringBackend backend(std::make_unique<TextFormatter>()); in DumpForSigQuit() local
98 ReportAllMetricsAndResetValueMetrics({&backend}); in DumpForSigQuit()
99 os << backend.GetAndResetBuffer(); in DumpForSigQuit()
Dmetrics.h327 for (MetricsBackend* backend : backends) { in Report()
328 backend->ReportCounter(counter_type, Value()); in Report()
377 for (MetricsBackend* backend : backends) { in Report()
378 backend->ReportCounter(datum_id, average_value); in Report()
419 for (MetricsBackend* backend : backends) { in ReportAndReset()
420 backend->ReportCounter(datum_id, value); in ReportAndReset()
462 for (MetricsBackend* backend : backends) { in Report()
463 backend->ReportHistogram(histogram_type_, minimum_value_, maximum_value_, GetBuckets()); in Report()
532 void Report(MetricsBackend* backend) const { in Report() argument
533 backend->ReportCounter(datum_id, static_cast<uint64_t>(Value())); in Report()
Dmetrics_test.cc240 } backend; in TEST_F() local
242 metrics.ReportAllMetricsAndResetValueMetrics({&backend}); in TEST_F()
259 StringBackend backend(std::make_unique<TextFormatter>()); in TEST_F() local
261 metrics.ReportAllMetricsAndResetValueMetrics({&backend}); in TEST_F()
264 const std::string result = backend.GetAndResetBuffer(); in TEST_F()
/art/runtime/metrics/
Dreporter.cc143 auto backend = CreateStatsdBackend(); in BackgroundThreadRun() local
144 if (backend != nullptr) { in BackgroundThreadRun()
145 backends_.emplace_back(std::move(backend)); in BackgroundThreadRun()
206 for (auto& backend : backends_) { in ReportMetrics() local
207 backend->BeginOrUpdateSession(session_data_); in ReportMetrics()
217 for (auto& backend : backends_) { in UpdateSessionInBackends() local
218 backend->BeginOrUpdateSession(session_data_); in UpdateSessionInBackends()
/art/test/657-branches/
Dinfo.txt1 Regression test for the ARM backend, which used to have a bug
/art/test/642-fp-callees/
Dinfo.txt1 Regression test for vixl32 backend, which used to incorrectly
/art/test/434-shifter-operand/
Dinfo.txt1 Regression test for the arm backend of the optimizing
/art/tools/dexfuzz/
DREADME44 --dump-output <combination of ISA(s) and and backend(s)>
57 --allarm. Also in this case only one backend is needed, if i.e., you wanted to test
104 Divergence - mutated files that executed and some backend disagreed about the
106 single backend, to check if they diverge from themselves, and these are
/art/dexopt_chroot_setup/binder/
DAndroid.bp31 backend: {
/art/artd/binder/
DAndroid.bp31 backend: {
/art/test/common/
Druntime_state.cc141 const char* backend = strstr(cmd_line, kCompilerBackend); in Java_Main_compiledWithOptimizing() local
142 if (backend != nullptr) { in Java_Main_compiledWithOptimizing()
144 backend += strlen(kCompilerBackend); in Java_Main_compiledWithOptimizing()
145 if (strncmp(backend, "Optimizing", strlen("Optimizing")) != 0) { in Java_Main_compiledWithOptimizing()