Searched refs:mReporter (Results 1 – 5 of 5) sorted by relevance
/external/angle/src/tests/test_utils/runner/android/java/src/com/android/angle/test/ |
D | AngleNativeTest.java | 32 private TestStatusReporter mReporter; field in AngleNativeTest 39 private TestStatusReporter mReporter; field in AngleNativeTest.ReportingUncaughtExceptionHandler 45 mReporter = reporter; in ReportingUncaughtExceptionHandler() 52 mReporter.uncaughtException(Process.myPid(), ex); in uncaughtException() 60 mReporter = new TestStatusReporter(activity); in postCreate() 61 mReporter.testRunStarted(Process.myPid()); in postCreate() 63 mReporter, Thread.getDefaultUncaughtExceptionHandler())); in postCreate() 162 mReporter.testRunFinished(Process.myPid()); in runTests()
|
/external/angle/src/tests/perf_tests/ |
D | EGLInitializePerf.cpp | 125 mReporter->RegisterImportantMetric(".LoadDLLs", "ms"); in SetUp() 126 mReporter->RegisterImportantMetric(".D3D11CreateDevice", "ms"); in SetUp() 127 mReporter->RegisterImportantMetric(".InitResources", "ms"); in SetUp() 148 mReporter->AddResult(".LoadDLLs", normalizedTime(mCaptures.loadDLLsMS)); in TearDown() 149 mReporter->AddResult(".D3D11CreateDevice", normalizedTime(mCaptures.createDeviceMS)); in TearDown() 150 mReporter->AddResult(".InitResources", normalizedTime(mCaptures.initResourcesMS)); in TearDown()
|
D | glmark2Benchmark.cpp | 112 mReporter = std::make_unique<perf_test::PerfResultReporter>("glmark2_" + mBackend, story); in GLMark2Benchmark() 113 mReporter->RegisterImportantMetric(".fps", "fps"); in GLMark2Benchmark() 114 mReporter->RegisterImportantMetric(".score", "score"); in GLMark2Benchmark() 255 mReporter->AddResult(".fps", fps); in parseOutput() 269 mReporter->AddResult(".score", score); in parseOutput() 274 std::unique_ptr<perf_test::PerfResultReporter> mReporter; member in __anon02abbac10111::GLMark2Benchmark
|
D | ANGLEPerfTest.cpp | 254 mReporter = std::make_unique<perf_test::PerfResultReporter>(mName + mBackend, mStory); in ANGLEPerfTest() 255 mReporter->RegisterImportantMetric(".wall_time", units); in ANGLEPerfTest() 256 mReporter->RegisterImportantMetric(".gpu_time", units); in ANGLEPerfTest() 257 mReporter->RegisterFyiMetric(".trial_steps", "count"); in ANGLEPerfTest() 258 mReporter->RegisterFyiMetric(".total_steps", "count"); in ANGLEPerfTest() 259 mReporter->RegisterFyiMetric(".steps_to_run", "count"); in ANGLEPerfTest() 403 if (!mReporter->GetMetricInfo(clockNames[i], &metricInfo)) in printResults() 407 mReporter->RegisterImportantMetric(clockNames[i], units); in printResults() 426 mReporter->AddResult(clockNames[i], retValue); in printResults() 438 mReporter->AddResult(".steps_to_run", static_cast<size_t>(mStepsToRun)); in printResults() [all …]
|
D | ANGLEPerfTest.h | 118 std::unique_ptr<perf_test::PerfResultReporter> mReporter; variable
|