HomeSort by relevance Sort by last modified time
    Searched refs:InvocationScope (Results 1 - 7 of 7) sorted by null

  /tools/tradefederation/core/src/com/android/tradefed/guice/
InvocationScopeModule.java 28 private InvocationScope mScope;
31 this(InvocationScope.getDefault());
34 public InvocationScopeModule(InvocationScope scope) {
44 bind(InvocationScope.class).toInstance(mScope);
48 .toProvider(InvocationScope.<IConfiguration>seededKeyProvider())
InvocationScope.java 49 public class InvocationScope implements Scope {
51 public InvocationScope() {}
65 private static InvocationScope sDefaultInstance = null;
67 public static InvocationScope getDefault() {
69 sDefaultInstance = new InvocationScope();
  /tools/tradefederation/core/tests/src/com/android/tradefed/guice/
InvocationScopeTest.java 37 /** Unit tests for {@link InvocationScope}. */
76 InvocationScope scope = new InvocationScope();
  /tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
SandboxedInvocationExecutionTest.java 28 import com.android.tradefed.guice.InvocationScope;
81 InvocationScope getInvocationScope() {
83 return new InvocationScope();
TestInvocationMultiTest.java 29 import com.android.tradefed.guice.InvocationScope;
100 InvocationScope getInvocationScope() {
102 return new InvocationScope();
TestInvocationTest.java 53 import com.android.tradefed.guice.InvocationScope;
252 InvocationScope getInvocationScope() {
254 return new InvocationScope();
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/invoker/
TestInvocation.java 31 import com.android.tradefed.guice.InvocationScope;
613 InvocationScope scope = getInvocationScope();
685 /** Returns the current {@link InvocationScope}. */
687 InvocationScope getInvocationScope() {
688 return InvocationScope.getDefault();

Completed in 371 milliseconds