Home
last modified time | relevance | path

Searched refs:SimplePerfUtil (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DSimplePerfUtilTest.java20 import com.android.tradefed.util.SimplePerfUtil.SimplePerfType;
35 private SimplePerfUtil spu = null;
45 spu = SimplePerfUtil.newInstance(mockDevice, SimplePerfType.STAT); in testCommandStringPreparerWithoutParams()
52 spu = SimplePerfUtil.newInstance(mockDevice, SimplePerfType.RECORD); in testCommandStringPreparerWithParams()
66 spu = SimplePerfUtil.newInstance(mockDevice, SimplePerfType.LIST); in testCommandStringPreparerWithNullCommand()
73 spu = SimplePerfUtil.newInstance(null, SimplePerfType.STAT); in testConstructorWithNullParameter()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSimplePerfUtil.java32 public class SimplePerfUtil { class
41 private SimplePerfUtil(ITestDevice device, SimplePerfType type) { in SimplePerfUtil() method in SimplePerfUtil
56 public static SimplePerfUtil newInstance(ITestDevice device, SimplePerfType type) in newInstance()
61 return new SimplePerfUtil(device, type); in newInstance()
/tools/tradefederation/contrib/src/com/android/performance/tests/
DEmmcPerformanceTest.java30 import com.android.tradefed.util.SimplePerfUtil;
31 import com.android.tradefed.util.SimplePerfUtil.SimplePerfType;
115 SimplePerfUtil mSpUtil = null;
378 mSpUtil = SimplePerfUtil.newInstance(mTestDevice, SimplePerfType.STAT); in setUp()