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

1 2

  /bootable/recovery/
device.h 71 REBOOT_BOOTLOADER, SHUTDOWN, READ_RECOVERY_LASTLOG };
default_device.cpp 72 case 5: return SHUTDOWN;
recovery.cpp 822 // Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
823 // means to take the default, which is to reboot or shutdown depending
857 case Device::SHUTDOWN:
    [all...]
  /external/chromium_org/base/threading/
watchdog.h 40 // Notify watchdog thread to finish up. Sets the state_ to SHUTDOWN.
75 enum State {ARMED, DISARMED, SHUTDOWN, JOINABLE };
watchdog.cc 72 state_ = SHUTDOWN;
127 if (SHUTDOWN == watchdog_->state_) {
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 233 * has no remaining threads will be {@code shutdown} automatically. If
235 * if users forget to call {@link #shutdown}, then you must arrange
314 * SHUTDOWN: Don't accept new tasks, but process queued tasks
326 * RUNNING -> SHUTDOWN
327 * On invocation of shutdown(), perhaps implicitly in finalize()
328 * (RUNNING or SHUTDOWN) -> STOP
330 * SHUTDOWN -> TIDYING
340 * Detecting the transition from SHUTDOWN to TIDYING is less
342 * empty after non-empty and vice versa during SHUTDOWN state, but
353 private static final int SHUTDOWN = 0 << COUNT_BITS
1351 public void shutdown() { method in class:ThreadPoolExecutor
1443 shutdown(); method
    [all...]
ForkJoinPool.java 248 * shutdown bit (similarly for per-queue "qlocks"), mainly
250 * enable shutdown. When used as a lock, it is normally only very
286 * resource-revocation-based shutdown schemes. It also helps
349 * Shutdown and Termination. A call to shutdownNow atomically sets
353 * commence after a non-abrupt shutdown() call requires more work
356 * indication but non-abrupt shutdown still requires a rechecking
579 * upon pool shutdown, all shared-queues will stop being used
    [all...]
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_classifier_delegate.h 75 SHUTDOWN,
phishing_classifier_delegate.cc 115 CancelPendingClassification(SHUTDOWN);
  /external/openssl/
e_os.h 503 # define SHUTDOWN(fd) close(fd)
530 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
531 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
535 # define SHUTDOWN(fd) close_s(fd)
544 # define SHUTDOWN(fd) MacSocket_close(fd)
565 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
566 # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
630 # define SHUTDOWN(fd) { shutdown((fd),0); closesocket((fd));
    [all...]
  /external/chromium_org/media/filters/
chunk_demuxer.h 37 void Shutdown();
108 SHUTDOWN,
269 void Shutdown();
289 SHUTDOWN,
346 // Shuts down all DemuxerStreams by calling Shutdown() on
chunk_demuxer.cc 163 void Shutdown();
275 Shutdown();
495 void SourceState::Shutdown() {
497 audio_->Shutdown();
500 video_->Shutdown();
504 itr->second->Shutdown();
799 void ChunkDemuxerStream::Shutdown() {
800 DVLOG(1) << "ChunkDemuxerStream::Shutdown()";
802 ChangeState_Locked(SHUTDOWN);
837 DCHECK_NE(state_, SHUTDOWN);
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc 187 SHUTDOWN,
328 if (ev->type == Event::SHUTDOWN) {
367 Event event(Event::SHUTDOWN);
  /external/chromium_org/base/synchronization/
condition_variable_win.cc 182 enum RunState { SHUTDOWN = 0, RUNNING = 64213 };
217 run_state_ = SHUTDOWN; // Prevent any more waiting.
220 if (recycling_list_size_ != allocation_counter_) { // Rare shutdown problem.
  /external/openssl/apps/
s_socket.c 307 SHUTDOWN(accept_socket);
373 SHUTDOWN(s);
s_client.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/
G722EncTest.c     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 115 private static final int SHUTDOWN = 4;
174 mBluetoothMnsObexClient.shutdown();
179 mMasInstances.valueAt(i).shutdown();
281 /* Shutdown the MNS client - currently must happen before MAS close */
283 mBluetoothMnsObexClient.shutdown();
358 case SHUTDOWN:
625 masInst.shutdown();
732 mAppObserver.shutdown();
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/tests/
AmrEncTest.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
WBAmrDecTest.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/tests/
WbAmrEncTest.c     [all...]
  /external/oprofile/events/x86-64/family11h/
unit_masks 202 0x04 SHUTDOWN
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 152 public = ['shutdown', 'create', 'accept_connection', 'get_methods',
341 def shutdown(self, c): member in class:Server
343 Shutdown this process
347 util.debug('manager received shutdown message')
451 SHUTDOWN = 2
533 self.shutdown = util.Finalize(
602 self.shutdown()
607 Shutdown the manager process; will be registered as a finalizer
610 util.info('sending shutdown message to manager')
614 dispatch(conn, None, 'shutdown')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 152 public = ['shutdown', 'create', 'accept_connection', 'get_methods',
341 def shutdown(self, c): member in class:Server
343 Shutdown this process
347 util.debug('manager received shutdown message')
451 SHUTDOWN = 2
533 self.shutdown = util.Finalize(
602 self.shutdown()
607 Shutdown the manager process; will be registered as a finalizer
610 util.info('sending shutdown message to manager')
614 dispatch(conn, None, 'shutdown')
    [all...]

Completed in 994 milliseconds

1 2