/external/v8/tools/oprofile/ |
shutdown | 6 sudo_opcontrol --shutdown "$@"
|
/bionic/libc/arch-arm/syscalls/ |
shutdown.S | 5 .type shutdown, #function 6 .globl shutdown 10 shutdown: label
|
/bionic/libc/arch-x86/syscalls/ |
shutdown.S | 5 .type shutdown, @function 6 .globl shutdown 9 shutdown: label
|
/frameworks/base/core/java/android/os/storage/ |
IMountShutdownObserver.aidl | 21 * to shutdown. 27 * This method is called when the shutdown 30 * of the shutdown.
|
/frameworks/base/core/java/com/android/internal/app/ |
ShutdownThread.java | 49 // maximum time we wait for the shutdown broadcast before going on. 77 * Request a clean shutdown, waiting for subsystems to clean up their 81 * @param context Context used to display the shutdown progress dialog. 84 public static void shutdown(final Context context, boolean confirm) { method in class:ShutdownThread 89 Log.d(TAG, "Request to shutdown already running, returning."); 94 Log.d(TAG, "Notifying thread to start radio shutdown"); 120 * Request a clean shutdown, waiting for subsystems to clean up their 124 * @param context Context used to display the shutdown progress dialog. 131 shutdown(context, confirm); method 154 // start the thread that initiates shutdown [all...] |
/frameworks/base/awt/org/apache/harmony/awt/wtk/ |
ShutdownThread.java | 31 setName("AWT-Shutdown"); //$NON-NLS-1$ 49 notifyAll(); // synchronize the shutdown 63 // awt.26=Shutdown thread was interrupted while starting 70 public void shutdown() { method in class:ShutdownThread 77 // awt.27=Shutdown thread was interrupted while stopping
|
ShutdownWatchdog.java | 24 * Shutdown Watchdog 53 shutdown(); method 62 shutdown(); method 80 private void shutdown() { method in class:ShutdownWatchdog 82 thread.shutdown();
|
/external/guava/src/com/google/common/util/concurrent/ |
Executors.java | 48 * adding a shutdown hook to wait for their completion. 75 * does so by using daemon threads and adding a shutdown hook to wait for 102 * Add a shutdown hook to wait for thread completion in the given 105 * shutdown, instead giving these daemon threads a chance to terminate 120 // is undefined in shutdown hooks. 121 // This is because the logging code installs a shutdown hook of its 123 service.shutdown(); 135 * adding a shutdown hook to wait for their completion. 155 * and adding a shutdown hook to wait for their completion. 203 * executor has been shutdown) 250 private boolean shutdown = false; field in class:Executors.SameThreadExecutorService 273 public void shutdown() { method in class:Executors.SameThreadExecutorService 285 shutdown(); method [all...] |
AbstractService.java | 47 private final Transition shutdown = new Transition(); field in class:AbstractService 56 * If true, the user requested a shutdown while the service was still starting 75 * This method should be used to initiate service shutdown. The invocation 77 * during this method's run, or after it has returned. If shutdown fails, the 82 * shutdown, even when {@link #stop} is called multiple times. 109 shutdown.transitionSucceeded(State.TERMINATED); 124 return shutdown; 197 shutdown.transitionSucceeded(State.TERMINATED); 216 shutdown.transitionFailed(new Exception( 219 shutdown.transitionFailed(cause) [all...] |
/frameworks/base/libs/rs/ |
rsThreadIO.cpp | 34 void ThreadIO::shutdown() function in class:ThreadIO 36 mToCore.shutdown(); 51 // exception occured, probably shutdown.
|
/external/opencore/oscl/oscl/osclio/src/ |
oscl_socket_shutdown.h | 26 Internal implementation of Shutdown 37 TPVSocketEvent Shutdown(TPVSocketShutdown aHow, 64 void Shutdown(TPVSocketShutdown aHow);
|
oscl_socket_shutdown.cpp | 63 TPVSocketEvent OsclShutdownMethod::Shutdown(TPVSocketShutdown aHow, 69 ShutdownRequest()->Shutdown(aHow); 76 void OsclShutdownRequest::Shutdown(TPVSocketShutdown aHow) 87 SocketI()->Shutdown(*Param(), *this);
|
/packages/apps/IM/src/com/android/im/imps/ |
CirChannel.java | 51 * Tells if the CIR has been shutdown or not. 56 * Shutdown the CIR channel, stops to listen to CIR requests from the server. 59 public abstract void shutdown(); method in class:CirChannel
|
/bionic/libc/kernel/common/linux/ |
sysdev.h | 23 int (*shutdown)(struct sys_device *); member in struct:sysdev_class 41 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
|
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/nls/ |
messages.properties | 19 nio.02=Socket output is shutdown 20 nio.03=Socket input is shutdown
|
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/ |
sysdev.h | 23 int (*shutdown)(struct sys_device *); member in struct:sysdev_class 41 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
|
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/ |
sysdev.h | 23 int (*shutdown)(struct sys_device *); member in struct:sysdev_class 41 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
|
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/ |
sysdev.h | 23 int (*shutdown)(struct sys_device *); member in struct:sysdev_class 41 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
|
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/ |
sysdev.h | 23 int (*shutdown)(struct sys_device *); member in struct:sysdev_class 41 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
|
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
sysdev.h | 23 int (*shutdown)(struct sys_device *); member in struct:sysdev_class 41 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
|
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
sysdev.h | 23 int (*shutdown)(struct sys_device *); member in struct:sysdev_class 41 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
|
/external/apache-http/src/org/apache/http/impl/conn/ |
SingleClientConnManager.java | 134 shutdown(); method 222 boolean shutdown = false; 229 shutdown = (tracker == null || // can happen if method is aborted 240 if (shutdown) { 243 uniquePoolEntry.shutdown(); 292 // we might have gotten here because of a shutdown trigger 293 // shutdown of the adapter also clears the tracked route 294 sca.shutdown(); 344 public void shutdown() { 353 uniquePoolEntry.shutdown(); [all...] |
DefaultClientConnection.java | 82 /** True if this connection was shutdown. */ 83 private volatile boolean shutdown; field in class:DefaultClientConnection 113 // Check for shutdown after assigning socket, so that 114 if (this.shutdown) { 117 throw new IOException("Connection already shutdown"); 146 public void shutdown() throws IOException { method in class:DefaultClientConnection 148 shutdown = true; 150 super.shutdown(); 155 } // shutdown
|
/external/guava/src/com/google/common/base/internal/ |
Finalizer.java | 130 } catch (ShutDown shutDown) { /* ignore */ } 136 private void cleanUp(Reference<?> reference) throws ShutDown { 150 throw new ShutDown(); 169 private Method getFinalizeReferentMethod() throws ShutDown { 181 throw new ShutDown(); 206 private static class ShutDown extends Exception { }
|
/external/webkit/WebKit/chromium/public/ |
WebKit.h | 42 // and must remain valid until the current thread calls shutdown. 45 // Once shutdown, the WebKitClient passed to initialize will no longer be 49 WEBKIT_API void shutdown();
|