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

  /bionic/libc/private/
ScopeGuard.h 26 ScopeGuard(F f) : f_(f), active_(true) {}
28 ScopeGuard(ScopeGuard&& that) : f_(that.f_), active_(that.active_) {
29 that.active_ = false;
33 if (active_) {
39 active_ = false;
43 bool active_; member in class:ScopeGuard
  /external/webrtc/webrtc/video/
payload_router.cc 22 active_(false) {}
43 active_ = active;
48 return active_ && !rtp_modules_.empty();
60 if (!active_ || rtp_modules_.empty())
payload_router.h 76 bool active_ GUARDED_BY(crit_.get());
  /external/v8/src/profiler/
sampler.h 91 bool IsActive() const { return base::NoBarrier_Load(&active_); }
118 void SetActive(bool value) { base::NoBarrier_Store(&active_, value); }
124 base::Atomic32 active_; member in class:v8::internal::Sampler
sampler.cc 752 active_(false),
  /external/webrtc/webrtc/base/
socketpool.cc 31 for (ConnectedList::iterator it = active_.begin(); it != active_.end();
48 // Move from cached_ to active_
49 active_.push_front(*it);
54 return active_.front().second;
59 active_.push_front(ConnectedStream(remote, stream));
61 return active_.front().second;
67 for (ConnectedList::iterator it = active_.begin(); it != active_.end();
81 active_.erase(it)
    [all...]
socketpool.h 65 ConnectedList active_; member in class:rtc::StreamCache
network.h 352 bool active() const { return active_; }
353 void set_active(bool active) { active_ = active; }
370 bool active_ = true; member in class:rtc::Network
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.cc 83 active_(true),
136 if (active_) {
140 if (active_) {
191 if (active_) {
378 return active_;
intelligibility_enhancer.h 151 const bool active_; // Whether render gains are being updated. member in class:webrtc::IntelligibilityEnhancer
152 // TODO(ekm): Add logic for updating |active_|.
  /hardware/qcom/display/msm8996/sdm/libs/core/
display_base.h 95 bool active_ = false; member in class:sdm::DisplayBase
display_base.cpp 178 if (!active_) {
243 if (!active_) {
305 if (!active_) {
427 active_ = active;
display_primary.cpp 220 if (!active_) {
295 if (!active_ || !hw_panel_info_.dynamic_fps) {
  /art/compiler/optimizing/
register_allocator.cc 50 active_(allocator->Adapter(kArenaAllocRegisterAllocator)),
208 active_.clear();
588 for (LiveInterval* active_interval : active_) {
624 // active_ below shouldn't need to be re-checked.
631 active_.begin(),
632 active_.end(),
644 active_.erase(active_kept_end, active_.end());
658 active_.push_back(interval);
671 std::max(maximum_number_of_live_core_registers_, active_.size())
    [all...]
register_allocator.h 183 ArenaVector<LiveInterval*> active_; member in class:art::RegisterAllocator
  /external/drm_hwcomposer/
drmdisplaycompositor.h 168 bool active_; member in class:android::DrmDisplayCompositor
drmdisplaycompositor.cpp 242 active_(false),
318 if (!active_)
326 active_ = (composition->dpms_mode() == DRM_MODE_DPMS_ON);
    [all...]
  /external/v8/test/cctest/
cctest.h 217 active_(true) {}
227 bool active_; member in class:ApiTestFuzzer
test-api.cc     [all...]
  /external/v8/src/debug/
debug.js 151 this.active_ = true;
181 return this.active_;
204 this.active_ = true;
209 this.active_ = false;
287 this.active_ = true;
303 copy.active_ = this.active_;
371 return this.active_;
386 this.active_ = true;
391 this.active_ = false
    [all...]
  /external/v8/src/
bootstrapper.cc 311 BootstrapperActive active_; member in class:v8::internal::BASE_EMBEDDED
    [all...]

Completed in 2288 milliseconds