Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DSimplePerfUtilTest.java21 import com.android.tradefed.util.SimplePerfUtil.SimplePerfType;
38 private SimplePerfUtil spu = null;
48 spu = SimplePerfUtil.newInstance(mockDevice, SimplePerfType.STAT); in testCommandStringPreparerWithoutParams()
56 spu = SimplePerfUtil.newInstance(mockDevice, SimplePerfType.RECORD); in testCommandStringPreparerWithParams()
71 spu = SimplePerfUtil.newInstance(mockDevice, SimplePerfType.LIST); in testCommandStringPreparerWithNullCommand()
79 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()