HomeSort by relevance Sort by last modified time
    Searched full:shutdown (Results 1 - 25 of 1609) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
shutdown.S 5 ENTRY(shutdown) function
14 END(shutdown)
  /bionic/libc/arch-x86/syscalls/
shutdown.S 5 .type shutdown, @function
6 .globl shutdown
9 shutdown: label
  /external/chromium/chrome/browser/profiles/
profile_keyed_service.h 11 // Many services that hang off Profile have a two-pass shutdown. Many
12 // subsystems need a first pass shutdown phase where they drop references. Not
18 // The first pass is to call Shutdown on a ProfileKeyedService.
19 virtual void Shutdown() {}
  /external/chromium/chrome/browser/
browser_shutdown.h 13 // Should Shutdown() delete the ResourceBundle? This is normally true, but set
30 // Called when the browser starts shutting down so that we can measure shutdown
34 // Get the current shutdown type.
43 void Shutdown();
45 // Called at startup to create a histogram from our previous shutdown time.
51 // should not shutdown when the last browser window closes if there are any
53 // When the user explicitly chooses to shutdown the app (via the "Exit" or
55 // initiate a shutdown when the last window closes.
locale_tests_uitest.cc 69 // Just making sure we can start/shutdown cleanly.
73 // Just making sure we can start/shutdown cleanly.
77 // Just making sure we can start/shutdown cleanly.
browser_shutdown.cc 93 // delays to shutdown time.
98 // shutdown path for the ones that didn't exit here.
115 void Shutdown() {
120 // During shutdown we will end up some blocking operations. But the
123 // shutdown.
126 // Shutdown all IPC channels to service processes.
127 ServiceProcessControlManager::GetInstance()->Shutdown();
135 // WARNING: During logoff/shutdown (WM_ENDSESSION) we may not have enough
154 // Record the shutdown info so that we can put it into a histogram at next
244 // Measure total shutdown time as late in the process as possibl
    [all...]
  /external/dbus/cmake/test/name-test/
CMakeLists.txt 23 add_executable(test-shutdown ${NAMEtest-DIR}/test-shutdown.c)
24 target_link_libraries(test-shutdown ${DBUS_INTERNAL_LIBRARIES} dbus_testutils)
25 ADD_TEST(test-shutdown ${EXECUTABLE_OUTPUT_PATH}/test-shutdown)
  /frameworks/base/services/java/com/android/server/pm/
ShutdownThread.java 55 // maximum time we wait for the shutdown broadcast before going on.
71 // Provides shutdown assurance in case the system_server is killed
72 public static final String SHUTDOWN_ACTION_PROPERTY = "sys.shutdown.requested";
92 * Request a clean shutdown, waiting for subsystems to clean up their
96 * @param context Context used to display the shutdown progress dialog.
99 public static void shutdown(final Context context, boolean confirm) { method in class:ShutdownThread
110 Log.d(TAG, "Request to shutdown already running, returning.");
123 Log.d(TAG, "Notifying thread to start shutdown longPressBehavior=" + longPressBehavior);
170 * Request a clean shutdown, waiting for subsystems to clean up their
174 * @param context Context used to display the shutdown progress dialog
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
shutdown_button.h 18 // Initializes shutdown button.
21 // Layout the shutdown button at the right bottom corner of
  /external/chromium/net/ocsp/
nss_ocsp.h 21 // on shutdown.
24 // This should be called once on shutdown to stop issuing URLRequests for OCSP.
  /external/dbus/test/name-test/
test-shutdown.c 10 fprintf (stderr, "*** test-shutdown: %s", message);
65 _dbus_verbose ("*** Test shutdown exiting\n");
  /external/webrtc/test/
test_suite.cc 28 Shutdown();
36 void TestSuite::Shutdown() {
  /external/chromium/base/test/
perf_test_suite.h 18 virtual void Shutdown();
perf_test_suite.cc 41 void PerfTestSuite::Shutdown() {
42 TestSuite::Shutdown();
  /external/chromium/chrome/browser/ui/
browser_list_mac.mm 12 // Last browser is closed, so call back to controller to shutdown the app.
  /external/chromium/chrome/browser/resources/
login.html 31 <a id="shutdown-system" onclick="callShutdownSystem();">
32 Shutdown System
66 document.getElementById('shutdown-system').disabled = on;
  /external/chromium/chrome/browser/service/
service_process_control_manager.cc 38 void ServiceProcessControlManager::Shutdown() {
39 // When we shutdown the manager we just clear the list and don't actually
40 // shutdown the service process.
service_process_control_browsertest.cc 25 ServiceProcessControlManager::GetInstance()->Shutdown();
70 ServiceProcessControlManager::GetInstance()->Shutdown();
118 // And then shutdown the service process.
119 EXPECT_TRUE(process()->Shutdown());
143 // And then shutdown the service process.
144 EXPECT_TRUE(process()->Shutdown());
176 // And then shutdown the service process.
177 EXPECT_TRUE(process->Shutdown());
200 // And then shutdown the service process.
201 EXPECT_TRUE(process->Shutdown());
    [all...]
  /external/guava/guava-tests/test/com/google/common/testing/
GcFinalizationTest.java 83 final AtomicBoolean shutdown; field in class:GcFinalizationTest.Interruptenator
88 final AtomicBoolean shutdown) {
91 while (!shutdown.get()) {
95 this.shutdown = shutdown;
98 void shutdown() { method in class:GcFinalizationTest.Interruptenator
99 shutdown.set(true);
122 interruptenator.shutdown();
138 interruptenator.shutdown();
154 interruptenator.shutdown();
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 55 * adding a shutdown hook to wait for their completion.
85 * does so by using daemon threads and adding a shutdown hook to wait for
116 * Add a shutdown hook to wait for thread completion in the given
119 * shutdown, instead giving these daemon threads a chance to terminate
136 // is undefined in shutdown hooks.
137 // This is because the logging code installs a shutdown hook of its
139 service.shutdown();
151 * adding a shutdown hook to wait for their completion.
172 * and adding a shutdown hook to wait for their completion.
197 * executor has been shutdown)
247 private boolean shutdown = false; field in class:MoreExecutors.SameThreadExecutorService
270 public void shutdown() { method in class:MoreExecutors.SameThreadExecutorService
282 shutdown(); method
429 public void shutdown() { method in class:MoreExecutors.ListeningDecorator
    [all...]
AbstractService.java 45 private final Transition shutdown = new Transition(); field in class:AbstractService
54 * If true, the user requested a shutdown while the service was still starting
73 * This method should be used to initiate service shutdown. The invocation
75 * during this method's run, or after it has returned. If shutdown fails, the
80 * shutdown, even when {@link #stop} is called multiple times.
109 shutdown.set(State.TERMINATED);
124 return shutdown;
185 shutdown.set(State.TERMINATED);
204 shutdown.setException(new Exception(
207 shutdown.setException(cause)
    [all...]
  /development/ndk/platforms/android-3/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/chromium/base/threading/
thread_restrictions.cc 57 << "on shutdown, leading to a potential shutdown crash.";
worker_pool.h 20 // for the worker pool threads to finish on shutdown, so the tasks running
22 // (MessageLoops, Singletons, etc). During shutdown these object may no longer
  /external/chromium/chrome/browser/extensions/
extension_tab_id_map.h 17 // for Init and Shutdown.
25 void Shutdown();

Completed in 296 milliseconds

1 2 3 4 5 6 7 8 91011>>