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

1 2 3

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ServiceTest.java 23 import static com.google.common.util.concurrent.Service.State.STOPPING;
40 assertLessThan(STARTING, STOPPING);
43 assertLessThan(RUNNING, STOPPING);
46 assertLessThan(STOPPING, FAILED);
47 assertLessThan(STOPPING, TERMINATED);
AbstractServiceTest.java 72 State.STOPPING,
110 State.STOPPING,
184 assertEquals(State.STOPPING, service.state());
195 State.STOPPING,
230 assertEquals(State.STOPPING, service.state());
235 assertEquals(State.STOPPING, service.state());
245 State.STOPPING,
252 * {@link State#STARTING} more than once, the {@link Listener#stopping(State)} callback would get
259 @Override public void stopping(State from) {
308 assertEquals(ImmutableList.of(State.STARTING, State.RUNNING, State.STOPPING, State.FAILED)
850 @Override public synchronized void stopping(State from) { method in class:AbstractServiceTest.RecordingListener
    [all...]
AbstractIdleServiceTest.java 139 .has().exactly(Service.State.STARTING, Service.State.STOPPING).inOrder();
163 .has().exactly(Service.State.STARTING, Service.State.STOPPING).inOrder();
208 assertEquals(State.STOPPING, state());
AbstractExecutionThreadServiceTest.java 71 enterRun.await(); // to avoid stopping the service until run() is invoked
84 enterRun.await(); // to avoid stopping the service until run() is invoked
121 private State expectedShutdownState = State.STOPPING;
371 assertEquals(Service.State.STOPPING, state());
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 26 import static com.google.common.util.concurrent.Service.State.STOPPING;
79 terminatedCallback(STOPPING);
90 return new Callback<Listener>("stopping({from = " + from + "})") {
92 listener.stopping(from);
199 stopping(STARTING);
202 snapshot = new StateSnapshot(STOPPING);
203 stopping(RUNNING);
206 case STOPPING:
312 snapshot = new StateSnapshot(STOPPING);
328 * the service to transition from {@link State#STOPPING} to {@link State#TERMINATED}
    [all...]
Service.java 35 * <li>{@linkplain State#STOPPING STOPPING} -&gt;
216 STOPPING {
270 * Called when the service transitions to the {@linkplain State#STOPPING STOPPING} state. The
276 public void stopping(State from) {} method in class:Service.Listener
286 * {@linkplain State#STOPPING STOPPING}.
ServiceManager.java 30 import static com.google.common.util.concurrent.Service.State.STOPPING;
75 * provides methods for {@linkplain #startAsync() starting}, {@linkplain #stopAsync() stopping} and
111 * // stopping timed out
445 || states.contains(STOPPING)
751 @Override public void stopping(State from) { method in class:ServiceManager.ServiceListener
754 state.transitionService(service, from, STOPPING);
AbstractScheduledService.java 220 if (state() != State.STOPPING) {
  /external/jetty/src/java/org/eclipse/jetty/util/component/
AbstractLifeCycle.java 38 public static final String STOPPING="STOPPING";
154 case __STOPPING: return STOPPING;
164 if (lc.isStopping()) return STOPPING;
187 LOG.debug("stopping {}",this);
  /external/ppp/pppd/
fsm.h 128 #define STOPPING 5 /* Terminating, but open */
fsm.c 147 case STOPPING:
192 f->state = STOPPING;
263 case STOPPING:
288 case STOPPING:
427 case STOPPING:
584 f->state = STOPPED; /* kludge for stopping CCP */
629 f->state = STOPPING;
654 case STOPPING:
718 case STOPPING:
731 terminate_layer(f, STOPPING);
    [all...]
  /frameworks/av/cmds/screenrecord/
Overlay.h 112 enum { UNINITIALIZED, INIT, RUNNING, STOPPING, STOPPED } mState;
Overlay.cpp 95 mState = STOPPING;
128 ALOGV("Overlay thread stopping");
  /packages/apps/Camera2/src/com/android/camera/burst/
BurstFacadeImpl.java 49 STOPPING
172 BurstModuleState.STOPPING)) {
  /frameworks/av/include/media/stagefright/
SimpleDecodingSource.h 83 STOPPING,
MediaCodec.h 200 STOPPING,
  /frameworks/base/core/java/android/os/
SystemService.java 38 STOPPING("stopping"),
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.h 73 STOPPING,
  /frameworks/base/media/jni/soundpool/
SoundPool.h 115 enum state { IDLE, RESUMING, STOPPING, PAUSED, PLAYING };
  /frameworks/av/services/audioflinger/
Effects.cpp 242 case STOPPING:
663 case STOPPING:
675 mState = STOPPING;
698 case STOPPING:
715 case STOPPING:
    [all...]
Effects.h 56 STOPPING,
  /frameworks/av/media/libstagefright/
SimpleDecodingSource.cpp 136 me->mState = STOPPING;
MediaCodec.cpp     [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStack.java 210 STOPPING,
    [all...]
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 

Completed in 4106 milliseconds

1 2 3