HomeSort by relevance Sort by last modified time
    Searched defs:Shutdown (Results 1 - 25 of 42) sorted by null

1 2

  /external/libbrillo/brillo/glib/
abstract_dbus_service.cc 30 bool AbstractDbusService::Shutdown() {
  /art/runtime/
atomic.cc 39 void QuasiAtomic::Shutdown() {
fault_handler.cc 45 // 1. shutdown the fault manager so that we are talking to the real signal management
139 void FaultManager::Shutdown() {
mem_map.cc 744 void MemMap::Shutdown() {
    [all...]
profiler.cc 264 LOG(INFO) << "Profiler shutdown";
377 CHECK_PTHREAD_CALL(pthread_join, (profiler_pthread, nullptr), "profiler thread shutdown");
387 void BackgroundMethodSamplingProfiler::Shutdown() {
trace.cc 405 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
462 void Trace::Shutdown() {
491 CHECK_PTHREAD_CALL(pthread_join, (sampling_pthread, nullptr), "sampling thread shutdown");
    [all...]
  /external/libvorbis/examples/
frameview.pl 192 my $panel_quit=$panel_shell->Button(-class=>"Exit",-text=>"quit",-command=>[sub{Shutdown()}])->
584 sub Shutdown{
  /external/webrtc/webrtc/test/
test_suite.cc 48 Shutdown();
58 void TestSuite::Shutdown() {
  /external/libbrillo/brillo/daemons/
daemon.cc 64 signal, base::Bind(&Daemon::Shutdown, base::Unretained(this)));
80 bool Daemon::Shutdown(const signalfd_siginfo& /* info */) {
  /external/libchrome/base/mac/
libdispatch_task_runner.cc 58 void LibDispatchTaskRunner::Shutdown() {
  /system/connectivity/apmanager/dbus/
dbus_control.cc 72 void DBusControl::Shutdown() {
  /external/webrtc/webrtc/base/
win32window.cc 70 void Win32Window::Shutdown() {
winfirewall.cc 35 Shutdown();
60 void WinFirewall::Shutdown() {
  /external/libchrome/base/threading/
sequenced_worker_pool.h 34 // allows you to specify what should happen to your tasks on shutdown.
64 // This class may be leaked on shutdown to facilitate fast shutdown. The
65 // expected usage, however, is to call Shutdown(), which correctly accounts
70 // not enforce shutdown semantics or allow us to specify how many worker
82 // shutdown.
84 // Tasks posted with this mode which have not run at shutdown will be
86 // shutdown will be ignored (the worker thread will not be joined).
89 // shutdown. For example, you might be doing a slow DNS lookup and if it's
90 // blocked on the OS, you may not want to stop shutdown, since the resul
    [all...]
  /external/llvm/tools/dsymutil/
dsymutil.cpp 239 llvm::llvm_shutdown_obj Shutdown;
  /frameworks/rs/driver/
rsdCore.cpp 50 static void Shutdown(Context *rsc);
62 fnPtr[0] = (void *)Shutdown; break;
356 void Shutdown(Context *rsc) {
  /libcore/ojluni/src/main/java/java/lang/
Shutdown.java 32 * governing the virtual-machine shutdown sequence.
39 public class Shutdown {
41 /* Shutdown state */
50 // The system shutdown hooks are registered with a predefined slot.
51 // The list of shutdown hooks is as follows:
58 // the index of the currently running shutdown hook to the hooks array
77 * Add a new shutdown hook. Checks the shutdown state and the hook itself,
82 * be added to the delete on exit list by the application shutdown
85 * @param slot the slot in the shutdown hook array, whose elemen
225 static void shutdown() { method in class:Shutdown
    [all...]
  /art/runtime/jdwp/
jdwp_socket.cc 58 virtual void Shutdown();
160 netState->Shutdown();
174 void JdwpSocketState::Shutdown() {
181 /* "shutdown" dislodges blocking read() and accept() calls */
183 shutdown(local_listenSock, SHUT_RDWR);
187 shutdown(local_clientSock, SHUT_RDWR);
229 // When we call shutdown() on the socket, accept() returns with
jdwp_adb.cc 68 shutdown(clientSock, SHUT_RDWR);
72 shutdown(control_sock_, SHUT_RDWR);
83 virtual void Shutdown() {
93 shutdown(local_clientSock, SHUT_RDWR);
97 shutdown(control_sock, SHUT_RDWR);
229 if (shutdown(control_sock_, SHUT_RDWR)) {
  /external/chromium-libpac/test/
proxy_resolver_v8_unittest.cc 68 virtual void Shutdown() {}
  /external/libchrome/base/
sync_socket_posix.cc 216 bool CancelableSyncSocket::Shutdown() {
218 return HANDLE_EINTR(shutdown(handle_, SHUT_RDWR)) >= 0;
  /external/v8/tools/testrunner/server/
main.py 118 self.Shutdown()
121 self.Shutdown()
124 def Shutdown(self):
127 self.presence_daemon.shutdown()
129 self.local_handler.shutdown()
131 self.work_handler.shutdown()
133 self.status_handler.shutdown()
  /external/libchrome/dbus/
dbus_statistics.cc 146 void Shutdown() {
  /external/webrtc/webrtc/p2p/base/
pseudotcp.h 192 enum Shutdown { SD_NONE, SD_GRACEFUL, SD_FORCEFUL } m_shutdown;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msp.h 199 virtual HRESULT WINAPI Shutdown(void) = 0;
212 HRESULT (WINAPI *Shutdown)(ITMSPAddress *This);
227 #define ITMSPAddress_Shutdown(This) (This)->lpVtbl->Shutdown(This)

Completed in 1747 milliseconds

1 2