Home
last modified time | relevance | path

Searched refs:outputDir (Results 1 – 17 of 17) sorted by relevance

/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/monitor/
DExtensions.kt39 outputDir: Path = getDefaultFlickerOutputDir().resolve("withWMTracing"), in withWMTracing()
43 WindowManagerTraceMonitor(outputDir).withTracing(predicate)) in withWMTracing()
58 outputDir: Path = getDefaultFlickerOutputDir().resolve("withSFTracing"), in withSFTracing()
62 LayersTraceMonitor(outputDir, traceFlags).withTracing(predicate)) in withSFTracing()
75 outputDir: Path = getDefaultFlickerOutputDir(), in withTracing()
78 val traces = recordTraces(outputDir, predicate) in withTracing()
95 outputDir: Path = getDefaultFlickerOutputDir(), in recordTraces()
99 val layersOutputDir = outputDir.resolve("withSFTracing") in recordTraces()
101 val wmOutputDir = outputDir.resolve("withWMTracing") in recordTraces()
DLayersTraceMonitor.kt32 outputDir: Path,
34 ) : TransitionMonitor(outputDir, "layers_trace$WINSCOPE_EXT") {
36 constructor(outputDir: Path) : this(outputDir, TRACE_FLAGS)
DTransitionMonitor.kt30 outputDir: Path, in <lambda>()
32 ) : this(outputDir, TRACE_DIR.resolve(traceFileName)) in <lambda>()
DWindowManagerTraceMonitor.kt32 outputDir: Path
33 ) : TransitionMonitor(outputDir, "wm_trace$WINSCOPE_EXT") {
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/rules/
DWMFlickerServiceRule.kt40 private val outputDir: Path = getDefaultFlickerOutputDir() in <lambda>() constant in com.android.server.wm.flicker.rules.WMFlickerServiceRule
62 Files.createDirectories(outputDir) in <lambda>()
63 wmTrace = getWindowManagerTrace(getFassFilePath(outputDir, testTag, "wm_trace")) in <lambda>()
64 layersTrace = getLayersTrace(getFassFilePath(outputDir, testTag, "layers_trace")) in <lambda>()
67 flickerService.process(wmTrace, layersTrace, outputDir, testTag) in <lambda>()
71 traceMonitors.add(WindowManagerTraceMonitor(outputDir)) in <lambda>()
72 traceMonitors.add(LayersTraceMonitor(outputDir)) in <lambda>()
74 outputDir, in <lambda>()
83 Files.list(outputDir).forEach { file -> in <lambda>()
DWMFlickerServiceRuleForTestSpec.kt58 val outputDir = run.traceFiles in <lambda>() constant
65 errors.add(flickerService.process(wmTrace, layersTrace, outputDir, category)) in <lambda>()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/dsl/
DFlickerBuilder.kt48 private val outputDir: Path, constant in com.android.server.wm.flicker.dsl.FlickerBuilder
85 outputDir: Path = getDefaultFlickerOutputDir(),
94 outputDir,
104 it.add(WindowManagerTraceMonitor(outputDir)) in <lambda>()
105 it.add(LayersTraceMonitor(outputDir)) in <lambda>()
106 it.add(ScreenRecorder(outputDir, instrumentation.targetContext)) in <lambda>()
118 otherBuilder.outputDir.toAbsolutePath(),
159 val newMonitor = traceMonitor(outputDir) in withWindowManagerTracing()
183 val newMonitor = traceMonitor(outputDir) in withLayerTracing()
197 val newMonitor = screenRecorder(outputDir) in withScreenRecorder()
[all …]
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/service/
DFlickerService.kt49 outputDir: Path, in process()
54 val tagTraceFile = getFassFilePath(outputDir, testTag, "tag_trace") in process()
59 val errorTraceFile = getFassFilePath(outputDir, testTag, "error_trace") in process()
73 internal fun getFassFilePath(outputDir: Path, testTag: String, file: String): Path =
74 outputDir.resolve("${testTag}_$file$WINSCOPE_EXT")
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DFilesystemUtil.java100 File outputDir = new File(Environment.getExternalStorageDirectory(), "meminfo"); in dumpMeminfo() local
101 Log.i(TAG, outputDir.toString()); in dumpMeminfo()
102 if (!outputDir.exists()) { in dumpMeminfo()
103 boolean yes = outputDir.mkdirs(); in dumpMeminfo()
106 File outputFile = new File(outputDir, String.format("%d.txt", epochSeconds)); in dumpMeminfo()
/platform_testing/libraries/flicker/test/src/com/android/server/wm/flicker/monitor/
DLayersTraceMonitorTest.kt34 override fun getMonitor(outputDir: Path) = LayersTraceMonitor(outputDir) in getMonitor()
DWindowManagerTraceMonitorTest.kt31 override fun getMonitor(outputDir: Path) = WindowManagerTraceMonitor(outputDir) in getMonitor()
DTraceMonitorTest.kt34 abstract fun getMonitor(outputDir: Path): T in getMonitor()
41 val outputDir = getDefaultFlickerOutputDir() in getMonitor() constant
42 getMonitor(outputDir) in getMonitor()
DScreenRecorderTest.kt42 val outputDir = getDefaultFlickerOutputDir() in <lambda>() constant
43 mScreenRecorder = ScreenRecorder(outputDir, instrumentation.targetContext) in <lambda>()
/platform_testing/libraries/health/rules/src/android/platform/test/rule/
DDropCachesRule.java55 File outputDir = in executeDropCachesImpl() local
57 File outputFile = File.createTempFile("drop_cache_script", ".sh", outputDir); in executeDropCachesImpl()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/
DTransitionRunner.kt173 val wmTraceFile = flicker.outputDir.resolve( in getTaggedFilePath()
177 val layersTraceFile = flicker.outputDir.resolve( in getTaggedFilePath()
DFlicker.kt56 @JvmField val outputDir: Path, constant in com.android.server.wm.flicker.Flicker
/platform_testing/libraries/collectors-helper/memory/src/com/android/helpers/
DFreeMemHelper.java225 File outputDir = InstrumentationRegistry.getInstrumentation(). in executeDropCachesImpl() local
227 File outputFile = File.createTempFile("drop_cache_script", ".sh", outputDir); in executeDropCachesImpl()