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

1 2 3 4

  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 32 * <li>{@link State#STOPPING} -&gt;</li>
36 * If the service fails while starting, running or stopping, its state will be
59 * State#RUNNING}, {@link State#STOPPING} or {@link State#TERMINATED}. If
101 * it has already finished stopping, {@link ListenableFuture#get} returns
108 * finished stopping. If this is {@link State#STARTING}, startup will be
145 STOPPING,
AbstractService.java 112 startup.set(State.STOPPING);
114 state = State.STOPPING;
169 * State#STOPPING} to {@link State#TERMINATED}.
172 * State#STOPPING} nor {@link State#RUNNING}.
177 if (state != State.STOPPING && state != State.RUNNING) {
206 } else if (state == State.STOPPING) {
229 return State.STOPPING;
AbstractIdleService.java 54 executor(State.STOPPING).execute(new Runnable() {
83 * {@link Service.State#STOPPING}, used by the default implementation for
  /external/oprofile/libop/
op_interface.h 43 STOPPING = 1,
  /external/chromium_org/components/sync_driver/
data_type_manager.h 34 STOPPING // Data types are being stopped.
data_type_controller.h 48 STOPPING, // The controller is in the process of stopping
non_ui_data_type_controller.cc 120 state_ = STOPPING;
124 state_ = STOPPING;
139 state_ = STOPPING;
209 if (new_state != RUNNING && state() != NOT_RUNNING && state() != STOPPING) {
data_type_manager_impl.cc 148 if (state_ == STOPPING) {
149 // You can not set a configuration while stopping.
150 LOG(ERROR) << "Configuration set while stopping.";
489 DCHECK(state_ == STOPPING || state_ == CONFIGURING);
491 if (state_ == STOPPING)
545 state_ = STOPPING;
551 // callback will do nothing because state is set to STOPPING above.
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractIdleServiceTest.java 97 State expectedShutdownState = State.STOPPING;
118 case STOPPING:
AbstractServiceTest.java 149 assertEquals(Service.State.STOPPING, service.state());
167 assertEquals(Service.State.STOPPING, service.state());
172 assertEquals(Service.State.STOPPING, service.state());
312 assertEquals(State.STOPPING, state());
315 assertEquals(State.STOPPING, state());
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_smooth_scroll_gesture.h 42 STOPPING,
synthetic_smooth_scroll_gesture.cc 90 state_ = STOPPING;
97 case STOPPING:
154 case STOPPING:
156 << "State STOPPING invalid for synthetic scroll using touch input.";
  /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;
  /frameworks/base/core/java/android/os/
SystemService.java 38 STOPPING("stopping"),
  /external/chromium_org/content/browser/service_worker/
embedded_worker_instance.cc 167 status_ = STOPPING;
283 if (status_ == STOPPING)
304 if (status_ == STOPPING)
embedded_worker_instance.h 45 STOPPING,
83 // This returns false if stopping a worker fails immediately, e.g. when
embedded_worker_instance_unittest.cc 90 EXPECT_EQ(EmbeddedWorkerInstance::STOPPING, worker->status());
service_worker_version.h 58 STOPPING = EmbeddedWorkerInstance::STOPPING,
  /external/chromium_org/chrome/browser/media/
webrtc_logging_handler_host.h 89 // should be stopped. |callback| will be called when stopping the dump is
106 // StopLogging(): STARTED -> STOPPING.
107 // Stop done: STOPPING -> STOPPED.
115 STOPPING, // Stop logging is in progress.
191 // Only accessed on the IO thread, except when in STARTING, STOPPING or
webrtc_logging_handler_host.cc 172 logging_state_ = STOPPING;
364 if (logging_state_ == STARTED || logging_state_ == STOPPING) {
373 if (logging_state_ != STOPPING) {
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_data_type_controller.cc 113 if (state() != NOT_RUNNING && state() != STOPPING) {
frontend_data_type_controller.cc 102 state_ = STOPPING;
  /external/chromium_org/chrome/browser/sync/sessions/
session_data_type_controller.cc 121 if (state() != NOT_RUNNING && state() != STOPPING) {

Completed in 896 milliseconds

1 2 3 4