Home
last modified time | relevance | path

Searched refs:InvocationScope (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/guice/
DInvocationScopeModule.java28 private InvocationScope mScope;
31 this(InvocationScope.getDefault()); in InvocationScopeModule()
34 public InvocationScopeModule(InvocationScope scope) { in InvocationScopeModule()
44 bind(InvocationScope.class).toInstance(mScope); in configure()
48 .toProvider(InvocationScope.<IConfiguration>seededKeyProvider()) in configure()
DInvocationScope.java49 public class InvocationScope implements Scope { class
51 public InvocationScope() {} in InvocationScope() method in InvocationScope
65 private static InvocationScope sDefaultInstance = null;
67 public static InvocationScope getDefault() { in getDefault()
69 sDefaultInstance = new InvocationScope(); in getDefault()
/tools/tradefederation/core/tests/src/com/android/tradefed/guice/
DInvocationScopeTest.java76 InvocationScope scope = new InvocationScope(); in testInjection()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationMultiTest.java29 import com.android.tradefed.guice.InvocationScope;
100 InvocationScope getInvocationScope() { in setUp()
102 return new InvocationScope(); in setUp()
DTestInvocationTest.java53 import com.android.tradefed.guice.InvocationScope;
252 InvocationScope getInvocationScope() { in setUp()
254 return new InvocationScope(); in setUp()
875 InvocationScope getInvocationScope() { in testInvoke_strictShardableTest_withShardIndex()
877 return new InvocationScope(); in testInvoke_strictShardableTest_withShardIndex()
965 InvocationScope getInvocationScope() { in testInvoke_nonStrictShardableTest_withShardIndexNonZero()
967 return new InvocationScope(); in testInvoke_nonStrictShardableTest_withShardIndexNonZero()
1637 InvocationScope getInvocationScope() { in testInvoke_deviceInfoBuild_noEnv()
1639 return new InvocationScope(); in testInvoke_deviceInfoBuild_noEnv()
1707 InvocationScope getInvocationScope() { in testInvoke_deviceInfoBuild_withEnv()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DTestInvocation.java31 import com.android.tradefed.guice.InvocationScope;
613 InvocationScope scope = getInvocationScope(); in invoke()
687 InvocationScope getInvocationScope() { in getInvocationScope()
688 return InvocationScope.getDefault(); in getInvocationScope()