HomeSort by relevance Sort by last modified time
    Searched refs:run_loop_ (Results 1 - 15 of 15) sorted by null

  /external/libmojo/base/message_loop/
message_pump_android.cc 89 : run_loop_(NULL) {
101 run_loop_ = new RunLoop();
104 if (!run_loop_->BeforeRun())
127 if (run_loop_) {
128 run_loop_->AfterRun();
129 delete run_loop_;
130 run_loop_ = NULL;
message_pump_android.h 38 RunLoop* run_loop_; member in class:base::MessagePumpForUI
  /external/libchrome/base/
run_loop.cc 48 if (running_ && loop_->run_loop_ == this) {
75 previous_run_loop_ = loop_->run_loop_;
77 loop_->run_loop_ = this;
90 loop_->run_loop_ = previous_run_loop_;
  /external/libmojo/mojo/edk/test/
scoped_ipc_support.cc 31 run_loop_.Run();
42 run_loop_.Quit();
scoped_ipc_support.h 36 base::RunLoop run_loop_; member in class:mojo::edk::test::internal::ScopedIPCSupportHelper
  /external/libchrome/base/message_loop/
message_pump_mac.h 101 CFRunLoopRef run_loop() const { return run_loop_; }
174 CFRunLoopRef run_loop_; member in class:base::MessagePumpCFRunLoopBase
276 RunLoop* run_loop_; member in class:base::MessagePumpUIApplication
message_loop.cc 149 DCHECK(!run_loop_);
306 if (run_loop_) {
307 run_loop_->QuitWhenIdle();
315 if (run_loop_) {
349 return run_loop_->run_depth_ > 1;
364 return run_loop_ != NULL;
395 run_loop_(NULL),
461 if (run_loop_->run_depth_ != 1)
502 if (pending_task.nestable || run_loop_->run_depth_ == 1) {
673 if (run_loop_->quit_when_idle_received_
    [all...]
message_loop.h 530 RunLoop* run_loop_; member in class:base::MessageLoop
  /external/webrtc/webrtc/base/
macsocketserver.cc 142 : run_loop_(CFRunLoopGetCurrent()),
151 CFRunLoopAddSource(run_loop_, wake_up_, kCFRunLoopCommonModes);
163 ASSERT(CFRunLoopGetCurrent() == run_loop_);
207 CFRunLoopWakeUp(run_loop_);
212 ASSERT(run_loop_ == CFRunLoopGetCurrent());
213 CFRunLoopStop(run_loop_);
macsocketserver.h 76 CFRunLoopRef run_loop_; member in class:rtc::MacCFSocketServer
  /external/libmojo/mojo/edk/js/tests/
js_to_cpp_tests.cc 209 : run_loop_(nullptr),
215 void set_run_loop(base::RunLoop* run_loop) { run_loop_ = run_loop; }
216 base::RunLoop* run_loop() { return run_loop_; }
247 base::RunLoop* run_loop_; member in class:mojo::edk::js::__anon23478::CppSideConnection
383 cpp_side->set_run_loop(&run_loop_);
408 run_loop_.Run();
414 base::RunLoop run_loop_; member in class:mojo::edk::js::JsToCppTest
  /external/libmojo/mojo/message_pump/
handle_watcher_unittest.cc 72 run_loop_(NULL),
83 ASSERT_TRUE(run_loop_ == NULL);
85 base::AutoReset<base::RunLoop*> reseter(&run_loop_, &run_loop);
107 if (run_loop_)
108 run_loop_->Quit();
115 base::RunLoop* run_loop_; member in class:mojo::common::test::CallbackHelper
  /system/bt/hci/src/
hci_layer.cc 96 static base::RunLoop* run_loop_ = nullptr; variable
169 run_loop_ = new base::RunLoop();
174 run_loop_->Run();
180 delete run_loop_;
181 run_loop_ = nullptr;
265 message_loop_->task_runner()->PostTask(FROM_HERE, run_loop_->QuitClosure());
  /system/tpm/tpm_manager/server/
tpm_manager_service_test.cc 61 void Run() { run_loop_.Run(); }
75 void Quit() { run_loop_.Quit(); }
87 base::RunLoop run_loop_; member in class:tpm_manager::TpmManagerServiceTest
  /system/tpm/attestation/server/
attestation_service_test.cc 118 void Run() { run_loop_.Run(); }
120 void RunUntilIdle() { run_loop_.RunUntilIdle(); }
122 void Quit() { run_loop_.Quit(); }
193 base::RunLoop run_loop_; member in class:attestation::AttestationServiceTest
    [all...]

Completed in 441 milliseconds