HomeSort by relevance Sort by last modified time
    Searched refs:STARTING (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ServiceTest.java 22 import static com.google.common.util.concurrent.Service.State.STARTING;
36 assertLessThan(NEW, STARTING);
39 assertLessThan(STARTING, RUNNING);
40 assertLessThan(STARTING, STOPPING);
41 assertLessThan(STARTING, FAILED);
AbstractIdleServiceTest.java 96 ASSERT.that(service.transitionStates).has().exactly(Service.State.STARTING).inOrder();
116 ASSERT.that(service.transitionStates).has().exactly(Service.State.STARTING).inOrder();
138 .has().exactly(Service.State.STARTING, Service.State.STOPPING).inOrder();
162 .has().exactly(Service.State.STARTING, Service.State.STOPPING).inOrder();
187 ASSERT.that(e.getMessage()).contains(Service.State.STARTING.toString());
200 assertEquals(State.STARTING, state());
AbstractServiceTest.java 69 State.STARTING,
107 State.STARTING,
174 assertEquals(State.STARTING, service.state());
192 State.STARTING,
213 State.STARTING,
224 assertEquals(State.STARTING, service.state());
243 State.STARTING,
251 * {@link State#STARTING} more than once, the {@link Listener#stopping(State)} callback would get
287 assertEquals(ImmutableList.of(State.STARTING, State.FAILED), listener.getStateHistory());
296 assertEquals(ImmutableList.of(State.STARTING, State.RUNNING, State.FAILED)
836 @Override public synchronized void starting() { method in class:AbstractServiceTest.RecordingListener
    [all...]
AbstractExecutionThreadServiceTest.java 128 assertEquals(State.STARTING, state());
291 assertTrue(e.getMessage().contains(Service.State.STARTING.toString()));
AbstractScheduledServiceTest.java 268 assertEquals(State.STARTING, state());
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 25 import static com.google.common.util.concurrent.Service.State.STARTING;
59 new Callback<Listener>("starting()") {
61 listener.starting();
71 stoppingCallback(STARTING);
158 if (from == STARTING) {
172 case STARTING:
221 snapshot = new StateSnapshot(STARTING);
222 starting();
242 snapshot = new StateSnapshot(STARTING);
243 starting();
    [all...]
Service.java 33 * <li>{@linkplain State#STARTING STARTING} -&gt;
66 * starting, and returns one of {@link State#RUNNING}, {@link State#STOPPING} or
69 * {@link State#FAILED}. If it has already finished starting, {@link ListenableFuture#get}
77 * Initiates service startup (if necessary), returning once the service has finished starting.
112 * If the service is {@linkplain State#STARTING starting} or {@linkplain State#RUNNING running},
134 * this is {@link State#STARTING}, startup will be cancelled. If this is {@link State#NEW}, it is
148 * If the service is {@linkplain State#STARTING starting} or {@linkplain State#RUNNING running}
331 public void starting() {} method in class:Service.Listener
    [all...]
ServiceManager.java 28 import static com.google.common.util.concurrent.Service.State.STARTING;
74 * provides methods for {@linkplain #startAsync() starting}, {@linkplain #stopAsync() stopping} and
318 * @throws TimeoutException if not all of the services have finished starting within the deadline
388 * have finished starting.
541 + Multimaps.filterKeys(servicesByState, in(ImmutableSet.of(NEW, STARTING))));
588 states.size() - states.count(NEW) + states.count(STARTING));
648 // N.B. if we miss the STARTING event then we will never record a startup time.
707 throw new IllegalStateException("Expected to be healthy after starting. "
730 @Override public void starting() { method in class:ServiceManager.ServiceListener
733 state.transitionService(service, NEW, STARTING);
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/component/
AbstractLifeCycle.java 36 public static final String STARTING="STARTING";
152 case __STARTING: return STARTING;
162 if (lc.isStarting()) return STARTING;
179 LOG.debug("starting {}",this);
  /external/ppp/pppd/
fsm.h 106 void (*starting) /* Called when we want the lower layer */ member in struct:fsm_callbacks
124 #define STARTING 1 /* Down, been opened */
fsm.c 106 case STARTING:
137 f->state = STARTING;
138 if( f->callbacks->starting )
139 (*f->callbacks->starting)(f);
151 f->state = STARTING;
158 f->state = STARTING;
176 f->state = STARTING;
177 if( f->callbacks->starting )
178 (*f->callbacks->starting)(f);
257 case STARTING
    [all...]
  /ndk/build/core/
definitions-tests.mk 90 $(info ================= STARTING NDK-BUILD UNIT TESTS =================)\
  /frameworks/av/include/media/stagefright/
MediaCodec.h 189 STARTING,
  /frameworks/av/services/audioflinger/
Effects.h 54 STARTING,
Effects.cpp 227 case STARTING:
600 mState = STARTING;
613 case STARTING:
636 case STARTING:
661 case STARTING:
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 1031 case STARTING:
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.app_1.3.100.v20130327-1442.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.app_1.3.100.v20130327-1442.jar 
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.4.0/
lint-api-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.4.2/
lint-api-22.4.2.jar 

Completed in 767 milliseconds

1 2 3 4