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

1 2

  /external/chromium/base/
message_pump.h 90 // to see if it should quit. The Quit method is responsible for setting this
91 // flag. No further work is done once the quit flag is set.
104 // Quit immediately from the most recently entered run loop. This method may
106 virtual void Quit() = 0;
message_pump_default.h 21 virtual void Quit();
message_pump_mac.h 14 // own DoRun and Quit implementations.
206 virtual void Quit();
211 // True if Quit is called to stop the innermost MessagePump
225 virtual void Quit();
229 // attached to the run loop. This source will be signalled when Quit
233 // False after Quit is called.
244 virtual void Quit();
251 // False after Quit is called.
message_pump_default.cc 18 DCHECK(keep_running_) << "Quit must have been called outside of Run!";
60 void MessagePumpDefault::Quit() {
message_pump_libevent.h 89 virtual void Quit();
message_pump_glib_unittest.cc 142 MessageLoop::current()->Quit();
193 // Checks that Quit works and that the basic infrastructure is working.
195 // Quit from a task
201 // Quit from an event
244 // quit.
260 // quit.
285 // And then quit (relies on the condition tested by TestEventTaskInterleave).
295 // It will quit the main loop once enough tasks and events have been processed,
310 MessageLoop::current()->Quit();
322 MessageLoop::current()->Quit();
    [all...]
message_pump_glib.h 43 // The nested loop is exited by either posting a quit, or returning false
60 virtual void Quit();
message_pump_win.h 49 // The nested loop is exited by either posting a quit, or returning false
79 virtual void Quit();
thread.cc 19 MessageLoop::current()->Quit();
55 // MessageLoop::Quit() is called directly, which is unexpected when using a
160 // Assert that MessageLoop::Quit was called by ThreadQuitTask.
timer_unittest.cc 28 MessageLoop::current()->Quit();
49 MessageLoop::current()->Quit();
69 MessageLoop::current()->Quit();
object_watcher_unittest.cc 16 MessageLoop::current()->Quit();
waitable_event_watcher_unittest.cc 19 MessageLoop::current()->Quit();
message_loop.h 154 // Use QuitTask if you need to Quit another thread's MessageLoop, but note
159 void Quit();
161 // Invokes Quit on the current MessageLoop when run. Useful to schedule an
162 // arbitrary MessageLoop to Quit.
166 MessageLoop::current()->Quit();
268 // Used to record that Quit() was called, or that we should quit the pump
observer_list_unittest.cc 143 void Quit() {
271 threaded_observer[index]->Quit();
message_loop_unittest.cc 81 MessageLoop::current()->Quit();
110 scoped_refptr<QuitMsgLoop> quit = new QuitMsgLoop(); local
112 quit.get(), &QuitMsgLoop::QuitNow));
141 scoped_refptr<QuitMsgLoop> quit = new QuitMsgLoop(); local
143 quit.get(), &QuitMsgLoop::QuitNow));
163 MessageLoop::current()->Quit();
355 MessageLoop::current()->Quit();
467 MessageLoop::current()->Quit();
512 MessageLoop::current()->Quit();
774 MessageLoop::current()->Quit();
    [all...]
message_loop.cc 227 void MessageLoop::Quit() {
232 NOTREACHED() << "Must be inside Run to call Quit";
470 pump_->Quit();
message_pump_glib.cc 188 // callbacks. This is so we only quit our own loops, and we don't quit
294 void MessagePumpForUI::Quit() {
298 NOTREACHED() << "Quit called outside Run!";
message_pump_libevent.cc 231 DCHECK(keep_running_) << "Quit must have been called outside of Run!";
285 void MessagePumpLibevent::Quit() {
  /external/chromium/net/base/
test_completion_callback.h 54 MessageLoop::current()->Quit();
directory_lister_unittest.cc 27 MessageLoop::current()->Quit();
host_resolver_impl_unittest.cc 196 MessageLoop::current()->Quit();
410 MessageLoop::current()->Quit();
447 // |verifier| will send quit message once all the requests have finished.
465 MessageLoop::current()->Quit();
504 // |verifier| will send quit message once all the requests have finished.
538 MessageLoop::current()->Quit();
587 // |verifier| will send quit message once all the requests have finished.
607 // Quit after returning from OnCompleted (to give it a chance at
642 // |verifier| will send quit message once all the requests have finished.
662 MessageLoop::current()->Quit();
    [all...]
  /external/chromium/net/disk_cache/
disk_cache_test_util.cc 153 MessageLoop::current()->Quit();
161 MessageLoop::current()->Quit();
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_BWin.h 215 the application should respond to the quit request,
222 virtual void Quit() {
225 BDirectWindow::Quit();
  /external/v8/samples/
shell.cc 43 v8::Handle<v8::Value> Quit(const v8::Arguments& args);
60 // Bind the 'quit' function
61 global->Set(v8::String::New("quit"), v8::FunctionTemplate::New(Quit));
182 // The callback that is invoked by v8 whenever the JavaScript 'quit'
184 v8::Handle<v8::Value> Quit(const v8::Arguments& args) {
  /external/chromium/net/tools/fetch/
fetch_client.cc 40 MessageLoop::current()->Quit();

Completed in 225 milliseconds

1 2