Home
last modified time | relevance | path

Searched refs:run_loop_ (Results 1 – 7 of 7) sorted by relevance

/external/libchrome/base/
Drun_loop.cc69 if (running_ && loop_->run_loop_ == this) { in Quit()
88 previous_run_loop_ = loop_->run_loop_; in BeforeRun()
90 loop_->run_loop_ = this; in BeforeRun()
100 loop_->run_loop_ = previous_run_loop_; in AfterRun()
/external/libchrome/base/message_loop/
Dmessage_loop.cc144 DCHECK(!run_loop_); in ~MessageLoop()
303 if (run_loop_) { in QuitWhenIdle()
304 run_loop_->quit_when_idle_received_ = true; in QuitWhenIdle()
312 if (run_loop_) { in QuitNow()
346 return run_loop_->run_depth_ > 1; in IsNested()
361 return run_loop_ != NULL; in is_running()
394 run_loop_(NULL), in MessageLoop()
442 if (run_loop_->dispatcher_ && type() == TYPE_UI) { in RunHandler()
444 RunWithDispatcher(this, run_loop_->dispatcher_); in RunHandler()
453 if (run_loop_->run_depth_ != 1) in ProcessNextDelayedNonNestableTask()
[all …]
Dmessage_pump_mac.mm132 run_loop_ = CFRunLoopGetCurrent();
133 CFRetain(run_loop_);
147 CFRunLoopAddTimerToAllModes(run_loop_, delayed_work_timer_);
155 CFRunLoopAddSourceToAllModes(run_loop_, work_source_);
161 CFRunLoopAddSourceToAllModes(run_loop_, idle_work_source_);
167 CFRunLoopAddSourceToAllModes(run_loop_, nesting_deferred_work_source_);
177 CFRunLoopAddObserverToAllModes(run_loop_, pre_wait_observer_);
185 CFRunLoopAddObserverToAllModes(run_loop_, pre_source_observer_);
194 CFRunLoopAddObserverToAllModes(run_loop_, enter_exit_observer_);
201 CFRunLoopRemoveObserverFromAllModes(run_loop_, enter_exit_observer_);
[all …]
Dmessage_pump_mac.h101 CFRunLoopRef run_loop() const { return run_loop_; } in run_loop()
174 CFRunLoopRef run_loop_; variable
276 RunLoop* run_loop_;
Dmessage_loop.h524 RunLoop* run_loop_; variable
/external/webrtc/webrtc/base/
Dmacsocketserver.cc142 : run_loop_(CFRunLoopGetCurrent()), in MacCFSocketServer()
151 CFRunLoopAddSource(run_loop_, wake_up_, kCFRunLoopCommonModes); in MacCFSocketServer()
163 ASSERT(CFRunLoopGetCurrent() == run_loop_); in Wait()
207 CFRunLoopWakeUp(run_loop_); in WakeUp()
212 ASSERT(run_loop_ == CFRunLoopGetCurrent()); in OnWakeUpCallback()
213 CFRunLoopStop(run_loop_); in OnWakeUpCallback()
Dmacsocketserver.h76 CFRunLoopRef run_loop_;