Searched refs:shardIndex (Results 1 – 11 of 11) sorted by relevance
/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | VersionedTfLauncher.java | 56 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()
|
D | InstalledInstrumentationsTest.java | 255 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()
|
D | GTestBase.java | 218 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()
|
D | AndroidJUnitTest.java | 574 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/ |
D | StrictShardHelper.java | 47 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/ |
D | ShardMasterResultForwarder.java | 50 private int shardIndex = 0; field in ShardMasterResultForwarder 77 mOriginalContext.addSerialsFromShard(shardIndex, context.getSerials()); in invocationStarted() 79 shardIndex++; in invocationStarted()
|
D | TestInvocation.java | 701 Integer shardIndex = config.getCommandOptions().getShardIndex(); in invoke() local 706 if (shardCount != null && shardIndex != null) { in invoke()
|
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | CommandOptions.java | 415 public void setShardIndex(Integer shardIndex) { in setShardIndex() argument 416 mShardIndex = shardIndex; in setShardIndex()
|
D | ICommandOptions.java | 153 public void setShardIndex(Integer shardIndex); in setShardIndex() argument
|
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/shard/ |
D | StrictShardHelperTest.java | 235 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/ |
D | ITestSuiteIntegrationTest.java | 646 private void helperTestShardIndex(int shardCount, int shardIndex) throws Exception { in helperTestShardIndex() argument 665 config.getCommandOptions().setShardIndex(shardIndex); in helperTestShardIndex()
|