Home
last modified time | relevance | path

Searched refs:paused_ (Results 1 – 10 of 10) sorted by relevance

/external/libchrome/mojo/public/js/lib/
Dconnector.js17 this.paused_ = false;
31 if (this.paused_) {
34 this.paused_= true;
39 if (!this.paused_) {
42 this.paused_= false;
87 if (this.paused_) {
138 if (this.paused_) {
157 if (!this.paused_) {
/external/libchrome/mojo/public/cpp/bindings/lib/
Dconnector.cc247 if (paused_) in PauseIncomingMethodCallProcessing()
250 paused_ = true; in PauseIncomingMethodCallProcessing()
257 if (!paused_) in ResumeIncomingMethodCallProcessing()
260 paused_ = false; in ResumeIncomingMethodCallProcessing()
392 CHECK(!paused_); in WaitToReadMore()
424 CHECK(!paused_); in ReadSingleMessage()
489 if (!weak_self || paused_) in ReadAllAvailableMessages()
525 if (paused_) { in HandleError()
546 if (!paused_) in HandleError()
Dmultiplex_router.cc517 paused_ = true; in PauseIncomingMethodCallProcessing()
528 paused_ = false; in ResumeIncomingMethodCallProcessing()
581 DCHECK(!paused_); in Accept()
681 while (!tasks_.empty() && !paused_) { in ProcessTasks()
727 if (paused_) in ProcessFirstSyncMessageForEndpoint()
759 DCHECK(!paused_); in ProcessNotifyErrorTask()
796 DCHECK(!paused_); in ProcessIncomingMessage()
Dmultiplex_router.h275 bool paused_ = false; variable
/external/webrtc/webrtc/modules/pacing/
Dpaced_sender.cc254 paused_(false), in PacedSender()
271 paused_ = true; in Pause()
276 paused_ = false; in Resume()
363 if (!paused_ && elapsed_time_ms > 0) { in Process()
405 if (paused_ || !packets_->Empty()) in Process()
424 if (paused_ && packet.priority != kHighPriority) in SendPacket()
Dpaced_sender.h140 bool paused_ GUARDED_BY(critsect_);
/external/v8/src/heap/
Dincremental-marking.h46 : marking_(marking), paused_(false) { in PauseBlackAllocationScope()
48 paused_ = true; in PauseBlackAllocationScope()
54 if (paused_) { in ~PauseBlackAllocationScope()
61 bool paused_; variable
/external/libchrome/ipc/
Dipc_mojo_bootstrap.cc139 DCHECK(!paused_); in Pause()
140 paused_ = true; in Pause()
144 DCHECK(paused_); in Unpause()
145 paused_ = false; in Unpause()
655 if (!connector_ || paused_) { in SendMessage()
930 bool paused_ = false; member in IPC::__anon75e303610111::ChannelAssociatedGroupController
/external/libchrome/mojo/public/cpp/bindings/
Dconnector.h242 bool paused_ = false; variable
/external/v8/src/
Dlog.cc785 if (paused_) in Insert()
800 void Pause() { paused_ = true; } in Pause()
801 void Resume() { paused_ = false; } in Resume()
836 bool paused_; member in v8::internal::Profiler
894 paused_(false) { in Profiler()