HomeSort by relevance Sort by last modified time
    Searched defs:SHUTDOWN (Results 1 - 5 of 5) sorted by null

  /external/chromium/base/
condition_variable.h 149 enum RunState { SHUTDOWN = 0, RUNNING = 64213 };
watchdog.h 67 enum State {ARMED, DISARMED, SHUTDOWN };
tracked_objects.h 475 // If shutdown has already started, and we don't yet have an instance, then
524 // Set internal status_ to either become ACTIVE, or later, to be SHUTDOWN,
536 // Start the teardown (shutdown) process in a multi-thread mode by disabling
553 // proceed towards SHUTDOWN, and never go backwards.
557 SHUTDOWN,
600 // Each registered thread is called to set status_ to SHUTDOWN.
614 // We set status_ to SHUTDOWN when we shut down the tracking service. This
662 // only allow the tracking system to be started up at most once, and shutdown
  /external/openssl/
e_os.h 493 # define SHUTDOWN(fd) close(fd)
520 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
521 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
525 # define SHUTDOWN(fd) close_s(fd)
534 # define SHUTDOWN(fd) MacSocket_close(fd)
555 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
556 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
620 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket((fd));
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 89 * take effect in a timely manner, and a shutdown pool may remain in a
237 * has no remaining threads will be {@code shutdown} automatically. If
239 * if users forget to call {@link #shutdown}, then you must arrange
318 * SHUTDOWN: Don't accept new tasks, but process queued tasks
330 * RUNNING -> SHUTDOWN
331 * On invocation of shutdown(), perhaps implicitly in finalize()
332 * (RUNNING or SHUTDOWN) -> STOP
334 * SHUTDOWN -> TIDYING
344 * Detecting the transition from SHUTDOWN to TIDYING is less
346 * empty after non-empty and vice versa during SHUTDOWN state, bu
1329 public void shutdown() { method in class:ThreadPoolExecutor
1424 shutdown(); method
    [all...]

Completed in 585 milliseconds