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

1 2 3 4

  /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) {
  /packages/services/Car/evs/sampleDriver/
VideoCapture.h 72 STOPPING = 2,
VideoCapture.cpp 226 int prevRunMode = mRunMode.fetch_or(STOPPING);
230 } else if (prevRunMode & STOPPING) {
231 ALOGE("stopStream called while stream is already stopping. Reentrancy is not supported!");
  /packages/services/Car/evs/manager/
VirtualCamera.cpp 70 if (mStreamState != STOPPING) {
186 mStreamState = STOPPING;
HalCamera.h 73 STOPPING,
VirtualCamera.h 77 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;
  /packages/apps/Camera2/src/com/android/camera/burst/
BurstFacadeImpl.java 49 STOPPING
172 BurstModuleState.STOPPING)) {
  /frameworks/av/media/libstagefright/include/media/stagefright/
SimpleDecodingSource.h 87 STOPPING,
  /frameworks/base/core/java/android/os/
SystemService.java 38 STOPPING("stopping"),
  /hardware/interfaces/automotive/evs/1.0/default/
EvsCamera.h 96 STOPPING,
  /hardware/interfaces/wifi/1.2/default/
wifi.h 63 enum class RunState { STOPPED, STARTED, STOPPING };
wifi.cpp 100 } else if (run_state_ == RunState::STOPPING) {
102 "HAL is stopping");
131 } else if (run_state_ == RunState::STOPPING) {
133 "HAL is stopping");
194 run_state_ = RunState::STOPPING;
  /frameworks/base/services/core/java/com/android/server/connectivity/
Nat464Xlat.java 71 STOPPING; // stop() called, this Nat464Xlat is still registered as a network observer for
125 return mState == State.STOPPING;
165 Slog.e(TAG, "Error stopping clatd on " + mBaseIface, e);
168 mState = State.STOPPING;
217 Slog.i(TAG, "Stopping clatd on " + mBaseIface);
  /hardware/google/av/media/sfplugin/
CCodec.h 120 STOPPING, // RUNNING -> ALLOCATED
  /external/v4l2_codec2/include/
C2VDAComponent.h 130 STOPPING,

Completed in 1365 milliseconds

1 2 3 4