Searched refs:tracePath (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/os/ |
D | Debug.java | 1146 public static void startMethodTracing(String tracePath) { in startMethodTracing() argument 1147 startMethodTracing(tracePath, 0, 0); in startMethodTracing() 1178 public static void startMethodTracing(String tracePath, int bufferSize) { in startMethodTracing() argument 1179 startMethodTracing(tracePath, bufferSize, 0); in startMethodTracing() 1212 public static void startMethodTracing(String tracePath, int bufferSize, int flags) { in startMethodTracing() argument 1213 VMDebug.startMethodTracing(fixTracePath(tracePath), bufferSize, flags, false, 0); in startMethodTracing() 1235 public static void startMethodTracingSampling(String tracePath, int bufferSize, in startMethodTracingSampling() argument 1237 VMDebug.startMethodTracing(fixTracePath(tracePath), bufferSize, 0, true, intervalUs); in startMethodTracingSampling() 1243 private static String fixTracePath(String tracePath) { in fixTracePath() argument 1244 if (tracePath == null || tracePath.charAt(0) != '/') { in fixTracePath() [all …]
|
/frameworks/base/tests/FlickerTests/lib/src/com/android/server/wm/flicker/ |
D | LayersTraceSubject.java | 108 String tracePath = ""; in test() local 110 tracePath = "\nLayers Trace can be found in: " in test() 113 fail(tracePath + failureLogs); in test()
|
D | WmTraceSubject.java | 109 String tracePath = ""; in test() local 111 tracePath = "\nWindowManager Trace can be found in: " in test() 114 fail(tracePath + failureLogs); in test()
|