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

1 2

  /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/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 113 enum { UNINITIALIZED, INIT, RUNNING, STOPPING, STOPPED } mState;
Overlay.cpp 94 mState = STOPPING;
127 ALOGV("Overlay thread stopping");
  /frameworks/av/media/libstagefright/include/media/stagefright/
SimpleDecodingSource.h 87 STOPPING,
MediaCodec.h 221 STOPPING,
  /frameworks/av/media/codec2/sfplugin/
CCodec.h 134 STOPPING, // RUNNING -> ALLOCATED
CCodec.cpp     [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
Utils.java 184 STOPPING
WaltDevice.java 386 state = Utils.ListenerState.STOPPING;
407 // that is stuck in the STOPPING state.
411 logger.log("Stopping Listener");
416 logger.log("Error while stopping Listener: " + e.getMessage());
  /external/v4l2_codec2/include/
C2VDAComponent.h 165 STOPPING,
  /frameworks/av/services/audioflinger/
Effects.cpp 328 case STOPPING:
    [all...]
Effects.h 58 STOPPING,
  /external/perfetto/src/tracing/core/
tracing_service_impl.h 324 STOPPING,
tracing_service_impl.cc 756 // This is to allow the consumer to freeze the buffers (by stopping the trace)
811 instance.state = DataSourceInstance::STOPPING;
    [all...]
  /frameworks/av/media/libstagefright/
SimpleDecodingSource.cpp 167 me->mState = STOPPING;
MediaCodec.cpp     [all...]

Completed in 602 milliseconds

1 2