Searched refs:tracePath (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/os/ |
D | Debug.java | 1147 public static void startMethodTracing(String tracePath) { in startMethodTracing() argument 1148 startMethodTracing(tracePath, 0, 0); in startMethodTracing() 1179 public static void startMethodTracing(String tracePath, int bufferSize) { in startMethodTracing() argument 1180 startMethodTracing(tracePath, bufferSize, 0); in startMethodTracing() 1213 public static void startMethodTracing(String tracePath, int bufferSize, int flags) { in startMethodTracing() argument 1214 VMDebug.startMethodTracing(fixTracePath(tracePath), bufferSize, flags, false, 0); in startMethodTracing() 1236 public static void startMethodTracingSampling(String tracePath, int bufferSize, in startMethodTracingSampling() argument 1238 VMDebug.startMethodTracing(fixTracePath(tracePath), bufferSize, 0, true, intervalUs); in startMethodTracingSampling() 1244 private static String fixTracePath(String tracePath) { in fixTracePath() argument 1245 if (tracePath == null || tracePath.charAt(0) != '/') { in fixTracePath() [all …]
|