Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 25 of 30) sorted by relevance

12

/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/monitor/
DTraceMonitor.kt23 import java.nio.file.Path
30 @VisibleForTesting var outputPath: Path,
31 protected var sourceTraceFilePath: Path
35 abstract fun setResult(flickerRunResultBuilder: FlickerRunResult.Builder, traceFile: Path) in setResult()
53 private fun moveFile(src: Path, dst: Path) { in moveFile()
DTransitionMonitor.kt21 import java.nio.file.Path in <lambda>()
25 outputPath: Path, in <lambda>()
26 sourceTraceFilePath: Path in <lambda>()
30 outputDir: Path, in <lambda>()
34 protected abstract fun getTracePath(builder: FlickerRunResult.Builder): Path? in <lambda>()
DLayersTraceMonitor.kt24 import java.nio.file.Path
32 outputDir: Path,
36 constructor(outputDir: Path) : this(outputDir, TRACE_FLAGS)
60 override fun setResult(flickerRunResultBuilder: FlickerRunResult.Builder, traceFile: Path) { in setResult()
DExtensions.kt27 import java.nio.file.Path
39 outputDir: Path = getDefaultFlickerOutputDir().resolve("withWMTracing"), in withWMTracing()
58 outputDir: Path = getDefaultFlickerOutputDir().resolve("withSFTracing"), in withSFTracing()
75 outputDir: Path = getDefaultFlickerOutputDir(), in withTracing()
95 outputDir: Path = getDefaultFlickerOutputDir(), in recordTraces()
DWindowManagerTraceMonitor.kt24 import java.nio.file.Path
32 outputDir: Path
54 override fun setResult(flickerRunResultBuilder: FlickerRunResult.Builder, traceFile: Path) { in setResult()
DScreenRecorder.kt33 import java.nio.file.Path
37 outputPath: Path,
136 override fun setResult(flickerRunResultBuilder: FlickerRunResult.Builder, traceFile: Path) { in setResult()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/assertions/
DFlickerAssertionError.kt19 import java.nio.file.Path
25 val traceFiles: List<Path>
DFlickerAssertionErrorBuilder.kt24 import java.nio.file.Path in <lambda>()
28 private var traceFiles: List<Path> = emptyList() in <lambda>()
35 fun withTrace(traceFiles: List<Path>): FlickerAssertionErrorBuilder = apply { in <lambda>()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/service/
DFlickerService.kt29 import java.nio.file.Path
49 outputDir: Path, in process()
73 internal fun getFassFilePath(outputDir: Path, testTag: String, file: String): Path =
/platform_testing/libraries/flicker/test/src/com/android/server/wm/flicker/monitor/
DLayersTraceMonitorTest.kt26 import java.nio.file.Path
34 override fun getMonitor(outputDir: Path) = LayersTraceMonitor(outputDir) in getMonitor()
44 override fun getTraceFile(result: FlickerRunResult): Path? { in getTraceFile()
DWindowManagerTraceMonitorTest.kt26 import java.nio.file.Path
31 override fun getMonitor(outputDir: Path) = WindowManagerTraceMonitor(outputDir) in getMonitor()
40 override fun getTraceFile(result: FlickerRunResult): Path? { in getTraceFile()
DTraceMonitorTest.kt29 import java.nio.file.Path
33 lateinit var savedTrace: Path
34 abstract fun getMonitor(outputDir: Path): T in getMonitor()
36 abstract fun getTraceFile(result: FlickerRunResult): Path? in getMonitor()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/
DFlickerRunResult.kt36 import java.nio.file.Path in <lambda>()
49 @JvmField val traceFiles: List<Path>, in <lambda>()
78 private fun Path?.tryDelete() { in <lambda>() method
103 var wmTraceFile: Path? = null in <lambda>()
108 var layersTraceFile: Path? = null in <lambda>()
113 var screenRecording: Path? = null in <lambda>()
DFlicker.kt29 import java.nio.file.Path
56 @JvmField val outputDir: Path,
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/parser/errors/
DErrorTraceParserUtil.kt25 import java.nio.file.Path
44 source: Path? = null in parseFromTrace()
72 source: Path? = null in parseFromTrace()
DExtensions.kt31 import java.nio.file.Path
36 fun ErrorTrace.writeToFile(outputFile: Path) { in ErrorTrace()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/rules/
DWMFlickerServiceRule.kt34 import java.nio.file.Path in <lambda>()
40 private val outputDir: Path = getDefaultFlickerOutputDir() in <lambda>()
96 private fun getWindowManagerTrace(traceFilePath: Path): WindowManagerTrace { in <lambda>()
107 private fun getLayersTrace(traceFilePath: Path): LayersTrace { in <lambda>()
/platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/
DIncidentReportListener.java26 import java.nio.file.Path;
46 static final Path REPORT_DIRECTORY =
48 static final Path FINAL_REPORT_PATH = REPORT_DIRECTORY.resolve("final.pb");
DSimpleperfListener.java25 import java.nio.file.Path;
164 Path path = in onTestEnd()
190 Path path = in onTestRunEnd()
208 private void stopSimpleperf(Path path, DataRecord record) { in stopSimpleperf()
DPerfettoListener.java29 import java.nio.file.Path;
227 Path path = in onTestEnd()
267 Path path = in onTestRunEnd()
403 private void stopPerfettoTracing(Path path, DataRecord record) { in stopPerfettoTracing()
DScheduledRunCollectionListener.java30 import java.nio.file.Path;
95 private TimeSeriesCsvWriter(Path destination) { in TimeSeriesCsvWriter()
172 Path path = in onStart()
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/parser/tags/
DTagTraceParserUtil.kt26 import java.nio.file.Path
45 source: Path? = null in parseFromTrace()
73 source: Path? = null in parseFromTrace()
DExtensions.kt30 import java.nio.file.Path
32 fun TagTrace.writeToFile(outputFile: Path) { in writeToFile()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/dsl/
DFlickerBuilder.kt38 import java.nio.file.Path
48 private val outputDir: Path,
85 outputDir: Path = getDefaultFlickerOutputDir(),
157 fun withWindowManagerTracing(traceMonitor: (Path) -> WindowManagerTraceMonitor?) { in withWindowManagerTracing()
181 fun withLayerTracing(traceMonitor: (Path) -> LayersTraceMonitor?) { in withLayerTracing()
195 fun withScreenRecorder(screenRecorder: (Path) -> ScreenRecorder?) { in withScreenRecorder()
/platform_testing/libraries/collectors-helper/simpleperf/src/com/android/helpers/
DSimpleperfHelper.java27 import java.nio.file.Path;
184 Path path = Paths.get(destinationFile); in copyFileOutput()

12