Searched refs:tracePath (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/os/ |
D | Debug.java | 993 public static void startMethodTracing(String tracePath) { in startMethodTracing() argument 994 startMethodTracing(tracePath, 0, 0); in startMethodTracing() 1025 public static void startMethodTracing(String tracePath, int bufferSize) { in startMethodTracing() argument 1026 startMethodTracing(tracePath, bufferSize, 0); in startMethodTracing() 1059 public static void startMethodTracing(String tracePath, int bufferSize, int flags) { in startMethodTracing() argument 1060 VMDebug.startMethodTracing(fixTracePath(tracePath), bufferSize, flags, false, 0); in startMethodTracing() 1082 public static void startMethodTracingSampling(String tracePath, int bufferSize, in startMethodTracingSampling() argument 1084 VMDebug.startMethodTracing(fixTracePath(tracePath), bufferSize, 0, true, intervalUs); in startMethodTracingSampling() 1090 private static String fixTracePath(String tracePath) { in fixTracePath() argument 1091 if (tracePath == null || tracePath.charAt(0) != '/') { in fixTracePath() [all …]
|