Home
last modified time | relevance | path

Searched refs:backend (Results 1 – 10 of 10) 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.cc68 void ArtMetrics::ReportAllMetrics(MetricsBackend* backend) const { in ReportAllMetrics()
69 backend->BeginReport(MilliTime() - beginning_timestamp_); in ReportAllMetrics()
71 #define ART_METRIC(name, Kind, ...) name()->Report(backend); in ReportAllMetrics()
75 backend->EndReport(); in ReportAllMetrics()
79 StringBackend backend; in DumpForSigQuit() local
80 ReportAllMetrics(&backend); in DumpForSigQuit()
81 os << backend.GetAndResetBuffer(); in DumpForSigQuit()
Dmetrics.h267 void Report(MetricsBackend* backend) const { backend->ReportCounter(counter_type, Value()); } in Report() argument
310 void Report(MetricsBackend* backend) const { in Report() argument
312 backend->ReportCounter(datum_id, in Report()
354 void Report(MetricsBackend* backend) const { in Report() argument
355 backend->ReportHistogram(histogram_type_, minimum_value_, maximum_value_, GetBuckets()); in Report()
418 void Report(MetricsBackend* backend) const { in Report() argument
419 backend->ReportCounter(datum_id, static_cast<uint64_t>(Value())); in Report()
565 void ReportAllMetrics(MetricsBackend* backend) const;
Dmetrics_test.cc232 } backend; in TEST_F() local
234 metrics.ReportAllMetrics(&backend); in TEST_F()
251 StringBackend backend; in TEST_F() local
253 metrics.ReportAllMetrics(&backend); in TEST_F()
256 const std::string result = backend.GetAndResetBuffer(); in TEST_F()
/art/runtime/metrics/
Dreporter.cc135 auto backend = CreateStatsdBackend(); in BackgroundThreadRun() local
136 if (backend != nullptr) { in BackgroundThreadRun()
137 backends_.emplace_back(std::move(backend)); in BackgroundThreadRun()
200 for (auto& backend : backends_) { in ReportMetrics() local
201 backend->BeginOrUpdateSession(session_data_); in ReportMetrics()
206 for (auto& backend : backends_) { in ReportMetrics() local
207 metrics->ReportAllMetrics(backend.get()); in ReportMetrics()
213 for (auto& backend : backends_) { in UpdateSessionInBackends() local
214 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/test/common/
Druntime_state.cc136 const char* backend = strstr(cmd_line, kCompilerBackend); in Java_Main_compiledWithOptimizing() local
137 if (backend != nullptr) { in Java_Main_compiledWithOptimizing()
139 backend += strlen(kCompilerBackend); in Java_Main_compiledWithOptimizing()
140 if (strncmp(backend, "Optimizing", strlen("Optimizing")) != 0) { in Java_Main_compiledWithOptimizing()