Home
last modified time | relevance | path

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

/external/dagger2/java/dagger/hilt/android/internal/testing/
DTestApplicationComponentManager.java52 private final AtomicReference<DelayedComponentState> delayedComponentState =
53 new AtomicReference<>(DelayedComponentState.NOT_DELAYED);
66 private enum DelayedComponentState { enum in TestApplicationComponentManager
155 DelayedComponentState state = delayedComponentState.get(); in checkStateIsCleared()
175 delayedComponentState.set(DelayedComponentState.NOT_DELAYED); in clearState()
210 switch (delayedComponentState.getAndSet(DelayedComponentState.COMPONENT_DELAYED)) { in delayComponentReady()
224 switch (delayedComponentState.getAndSet(DelayedComponentState.COMPONENT_READY)) { in componentReady()
240 switch (delayedComponentState.getAndSet(DelayedComponentState.INJECTED)) { in inject()
256 delayedComponentState.get() != DelayedComponentState.COMPONENT_DELAYED, in verifyDelayedComponentWasMadeReady()
330 return delayedComponentState.get() != DelayedComponentState.COMPONENT_DELAYED; in delayedComponentReady()