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

1 2 3

  /external/libmojo/mojo/edk/js/
threading.cc 18 void Quit() {
35 .SetMethod("quit", Quit)
  /external/libchrome/base/message_loop/
message_pump.h 96 // to see if it should quit. The Quit method is responsible for setting this
97 // flag. No further work is done once the quit flag is set.
110 // Quit immediately from the most recently entered run loop. This method may
112 virtual void Quit() = 0;
message_pump_default.h 23 void Quit() override;
message_pump_glib.h 41 void Quit() override;
message_pump_mac.h 14 // own DoRun and Quit implementations.
227 void Quit() override;
232 // True if Quit is called to stop the innermost MessagePump
246 void Quit() override;
250 // attached to the run loop. This source will be signalled when Quit
254 // False after Quit is called.
263 // directly, so calling Run() or Quit() are errors.
269 void Quit() override;
289 void Quit() override;
292 // False after Quit is called
    [all...]
message_pump_default.cc 28 DCHECK(keep_running_) << "Quit must have been called outside of Run!";
97 void MessagePumpDefault::Quit() {
message_pump_libevent.h 108 void Quit() override;
message_loop_task_runner_unittest.cc 259 Quit();
262 void Quit() const {
292 test->Quit();
304 test_->Quit();
  /external/libmojo/base/message_loop/
message_pump_android.h 29 void Quit() override;
message_pump_android.cc 103 // return true (it only returns false if the RunLoop has been Quit already).
117 void MessagePumpForUI::Quit() {
  /external/libbrillo/brillo/daemons/
daemon.cc 33 // base::RunLoop::QuitClosure() causes the message loop to quit
43 void Daemon::Quit() { QuitWithExitCode(EX_OK); }
81 Quit();
88 Quit();
daemon.h 45 void Quit();
48 // quits. See the warning for Quit() above regarding the allowed scope for
81 // quit (and subsequently relaunched by an upstart job, if one is configured).
87 // Returns a delegate to Quit() method in the base::RunLoop instance.
  /system/tpm/attestation/server/
attestation_service_test.cc 122 void Quit() { run_loop_.Quit(); }
202 Quit();
214 Quit();
229 Quit();
242 Quit();
255 Quit();
268 Quit();
281 Quit();
295 Quit();
    [all...]
  /external/libchrome/base/
run_loop.h 26 // calling MessageLoop::Run/Quit directly. RunLoop::Run can only be called once
27 // per RunLoop lifetime. Create a RunLoop on the stack and call Run/Quit to run
34 // Run the current MessageLoop. This blocks until Quit is called. Before
47 // Quit() quits an earlier call to Run() immediately. QuitWhenIdle() quits an
51 // (MessageLoop); Quitting one RunLoop has no bearing on the others. Quit()
53 // before Run(), Run() will return immediately when called. Calling Quit() or
57 // WARNING: You must NEVER assume that a call to Quit() or QuitWhenIdle() will
61 void Quit();
64 // Convenience methods to get a closure that safely calls Quit() or
105 // that we should quit Run once it becomes idle
    [all...]
run_loop.cc 46 void RunLoop::Quit() {
49 // This is the inner-most RunLoop, so quit now.
59 return base::Bind(&RunLoop::Quit, weak_factory_.GetWeakPtr());
70 // Allow Quit to be called before Run.
  /system/tpm/tpm_manager/server/
tpm_manager_service_test.cc 67 test->Quit();
75 void Quit() { run_loop_.Quit(); }
128 test->Quit();
164 test->Quit();
182 test->Quit();
202 test->Quit();
214 test->Quit();
226 test->Quit();
237 test->Quit();
    [all...]
  /external/libmojo/mojo/edk/test/
scoped_ipc_support.cc 42 run_loop_.Quit();
  /external/libmojo/mojo/android/system/
base_run_loop.cc 39 static void Quit(JNIEnv* env,
  /external/libmojo/mojo/message_pump/
message_pump_mojo.h 70 void Quit() override;
  /external/libmojo/mojo/public/cpp/bindings/tests/
bind_task_runner_unittest.cc 54 // Only quits when Quit() is called.
78 void Quit() {
232 connection_binding_task_runner_->Quit();
250 task_runner->Quit();
271 task_runner->Quit();
sync_method_unittest.cc 286 run_loop.Quit();
482 run_loop1.Quit();
493 run_loop2.Quit();
545 run_loop.Quit();
589 run_loop1.Quit();
606 run_loop2.Quit();
  /external/webrtc/webrtc/base/
signalthread.cc 61 // OnWorkStop() must follow Quit(), so that when the thread wakes up due to
63 worker_.Quit();
  /external/webrtc/webrtc/examples/peerconnection/client/linux/
main.cc 42 thread_->Quit();
  /external/libmojo/mojo/edk/js/tests/
js_to_cpp_tests.cc 204 // override the appropriate Provider functions. When test is done quit the
267 run_loop()->Quit();
306 run_loop()->Quit();
337 run_loop()->Quit();
364 run_loop()->Quit();
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/
UserInteractor.py 63 top-level menus, it is advised to pass "Quit" as argument.
72 # Lastly, append an option to go to the previous menu/quit
100 UserInteractor.getMenu(optionsMenu, "Quit")

Completed in 352 milliseconds

1 2 3