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

1 2 3

  /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 39 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 26 DCHECK(keep_running_) << "Quit must have been called outside of Run!";
71 void MessagePumpDefault::Quit() {
message_pump_libevent.h 127 void Quit() override;
message_loop_task_runner_unittest.cc 252 Quit();
255 void Quit() const {
284 test->Quit();
296 test_->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 127 void Quit() {
128 run_loop_.Quit();
209 Quit();
221 Quit();
236 Quit();
249 Quit();
262 Quit();
275 Quit();
288 Quit();
302 Quit();
    [all...]
  /external/libchrome/base/
run_loop.h 30 // calling MessageLoop::Run/Quit directly. RunLoop::Run can only be called once
31 // per RunLoop lifetime. Create a RunLoop on the stack and call Run/Quit to run
41 // Run the current MessageLoop. This blocks until Quit is called. Before
54 // Quit an earlier call to Run(). There can be other nested RunLoops servicing
56 // the others. Quit can be called before, during or after Run. If called
57 // before Run, Run will return immediately when called. Calling Quit after the
60 // WARNING: You must NEVER assume that a call to Quit will terminate the
64 void Quit();
66 // Convenience method to get a closure that safely calls Quit (has no effect
110 // that we should quit Run once it becomes idle
    [all...]
run_loop.cc 67 void RunLoop::Quit() {
70 // This is the inner-most RunLoop, so quit now.
76 return base::Bind(&RunLoop::Quit, weak_factory_.GetWeakPtr());
83 // Allow Quit to be called before Run.
  /system/tpm/tpm_manager/server/
tpm_manager_service_test.cc 68 Quit();
75 void Quit() {
76 run_loop_.Quit();
134 Quit();
170 Quit();
189 Quit();
209 Quit();
221 Quit();
233 Quit();
244 Quit();
    [all...]
  /system/connectivity/shill/
shill_daemon.cc 51 if (!DaemonTask::Quit(base::Bind(&DaemonTask::BreakTerminationLoop,
daemon_task.h 83 virtual bool Quit(const base::Closure& completion_callback);
daemon_task_unittest.cc 71 bool Quit(const base::Closure& completion_callback) override {
72 quit_result_ = DaemonTask::Quit(completion_callback);
193 // Run Daemon::Quit() after the daemon starts running.
195 Bind(IgnoreResult(&DaemonTask::Quit), Unretained(&daemon_),
204 EXPECT_TRUE(daemon_.Quit(
  /system/core/crash_reporter/
list_proxies.cc 144 // If the browser times out, quit the run loop.
147 Quit();
152 // the timeout task quit the run loop.
160 Quit();
174 Quit();
187 Quit();
  /external/webrtc/webrtc/base/
signalthread.cc 61 // OnWorkStop() must follow Quit(), so that when the thread wakes up due to
63 worker_.Quit();
win32socketserver.h 150 virtual void Quit() {
  /external/webrtc/webrtc/examples/peerconnection/client/linux/
main.cc 42 thread_->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")
  /external/webrtc/talk/media/devices/
yuvframescapturer.cc 57 // Stop() is called externally or Quit() is called by OnMessage().
76 Quit();
  /external/webrtc/webrtc/p2p/stunprober/
main.cc 89 thread->Quit();
  /system/bt/service/example/heart_rate/
server_main.cpp 44 base::RunLoop().Quit();
  /build/kati/
main.cc 54 static void Quit() {
258 Quit();

Completed in 1432 milliseconds

1 2 3