Home
last modified time | relevance | path

Searched refs:shardIndex (Results 1 – 11 of 11) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/testtype/
DVersionedTfLauncher.java56 private VersionedTfLauncher(int shardCount, int shardIndex) { in VersionedTfLauncher() argument
59 mShardIndex = shardIndex; in VersionedTfLauncher()
129 private IRemoteTest getTestShard(int shardCount, int shardIndex) { in getTestShard() argument
130 IRemoteTest shard = new VersionedTfLauncher(shardCount, shardIndex); in getTestShard()
DInstalledInstrumentationsTest.java255 void setShardIndex(int shardIndex) { in setShardIndex() argument
256 mShardIndex = shardIndex; in setShardIndex()
440 private IRemoteTest getTestShard(int shardCount, int shardIndex) { in getTestShard() argument
447 shard.mShardIndex = shardIndex; in getTestShard()
DGTestBase.java218 public void setShardIndex(int shardIndex) { in setShardIndex() argument
219 mShardIndex = shardIndex; in setShardIndex()
574 private IRemoteTest getTestShard(int shardCount, int shardIndex) { in getTestShard() argument
579 shard.mShardIndex = shardIndex; in getTestShard()
DAndroidJUnitTest.java574 private IRemoteTest getTestShard(int shardCount, int shardIndex) { in getTestShard() argument
587 shard.mShardIndex = shardIndex; in getTestShard()
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DStrictShardHelper.java47 Integer shardIndex = config.getCommandOptions().getShardIndex(); in shardConfig() local
49 if (shardIndex == null) { in shardConfig()
53 throw new RuntimeException("shard-count is null while shard-index is " + shardIndex); in shardConfig()
65 splitList = splitTests(listAllTests, shardCount).get(shardIndex); in shardConfig()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DShardMasterResultForwarder.java50 private int shardIndex = 0; field in ShardMasterResultForwarder
77 mOriginalContext.addSerialsFromShard(shardIndex, context.getSerials()); in invocationStarted()
79 shardIndex++; in invocationStarted()
DTestInvocation.java701 Integer shardIndex = config.getCommandOptions().getShardIndex(); in invoke() local
706 if (shardCount != null && shardIndex != null) { in invoke()
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandOptions.java415 public void setShardIndex(Integer shardIndex) { in setShardIndex() argument
416 mShardIndex = shardIndex; in setShardIndex()
DICommandOptions.java153 public void setShardIndex(Integer shardIndex); in setShardIndex() argument
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/shard/
DStrictShardHelperTest.java235 private List<IRemoteTest> testShard(int shardIndex) throws Exception { in testShard() argument
248 setter.setOptionValue("shard-index", Integer.toString(shardIndex)); in testShard()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DITestSuiteIntegrationTest.java646 private void helperTestShardIndex(int shardCount, int shardIndex) throws Exception { in helperTestShardIndex() argument
665 config.getCommandOptions().setShardIndex(shardIndex); in helperTestShardIndex()