Package org.robolectric.shadows
Class ShadowDebug
- java.lang.Object
-
- org.robolectric.shadows.ShadowDebug
-
@Implements(android.os.Debug.class) public class ShadowDebug extends Object
-
-
Constructor Summary
Constructors Constructor Description ShadowDebug()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description protected static void
__staticInitializer__()
protected static String
fixTracePath(String tracePath)
protected static long
getNativeHeapAllocatedSize()
protected static Map<String,String>
getRuntimeStats()
static void
reset()
protected static void
startMethodTracing()
protected static void
startMethodTracing(String tracePath)
protected static void
startMethodTracing(String tracePath, int bufferSize)
protected static void
startMethodTracing(String tracePath, int bufferSize, int flags)
protected static void
startMethodTracingSampling(String tracePath, int bufferSize, int intervalUs)
protected static void
stopMethodTracing()
-
-
-
Method Detail
-
__staticInitializer__
@Implementation protected static void __staticInitializer__()
-
getNativeHeapAllocatedSize
@Implementation protected static long getNativeHeapAllocatedSize()
-
getRuntimeStats
@Implementation(minSdk=23) protected static Map<String,String> getRuntimeStats()
-
startMethodTracing
@Implementation protected static void startMethodTracing()
-
startMethodTracing
@Implementation protected static void startMethodTracing(String tracePath, int bufferSize, int flags)
-
startMethodTracing
@Implementation protected static void startMethodTracing(String tracePath)
-
startMethodTracing
@Implementation protected static void startMethodTracing(String tracePath, int bufferSize)
-
startMethodTracingSampling
@Implementation(minSdk=21) protected static void startMethodTracingSampling(String tracePath, int bufferSize, int intervalUs)
-
stopMethodTracing
@Implementation protected static void stopMethodTracing()
-
reset
@Resetter public static void reset()
-
fixTracePath
@Implementation(minSdk=24) protected static String fixTracePath(String tracePath)
-
-