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

1 2

  /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/libsampler/
v8-sampler.h 56 bool IsActive() const { return base::NoBarrier_Load(&active_); }
88 void SetActive(bool value) { base::NoBarrier_Store(&active_, value); }
94 base::Atomic32 active_; member in class:v8::sampler::Sampler
v8-sampler.cc 580 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_primary.cpp 173 if (!active_) {
230 if (!active_ || !hw_panel_info_.dynamic_fps) {
display_base.h 135 bool active_ = false; member in class:sdm::DisplayBase
display_base.cpp 200 if (!active_) {
269 if (!active_) {
341 if (!active_) {
465 active_ = active;
    [all...]
display_hdmi.cpp 148 if (!active_) {
  /hardware/qcom/display/msmcobalt/sdm/libs/core/
display_primary.cpp 168 if (!active_) {
225 if (!active_ || !hw_panel_info_.dynamic_fps) {
display_base.h 139 bool active_ = false; member in class:sdm::DisplayBase
display_base.cpp 211 if (!active_) {
275 if (!active_) {
347 if (!active_) {
471 active_ = active;
    [all...]
display_hdmi.cpp 141 if (!active_) {
  /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 252 active_(false),
328 if (!active_)
336 active_ = (composition->dpms_mode() == DRM_MODE_DPMS_ON);
    [all...]
  /external/v8/test/cctest/
cctest.h 201 active_(true) {}
211 bool active_; member in class:ApiTestFuzzer
  /external/v8/src/debug/
debug.js 149 this.active_ = true;
173 return this.active_;
191 this.active_ = true;
196 this.active_ = false;
256 this.active_ = true;
270 copy.active_ = this.active_;
332 return this.active_;
342 this.active_ = true;
347 this.active_ = false
    [all...]
  /external/v8/src/
bootstrapper.cc 315 BootstrapperActive active_; member in class:v8::internal::BASE_EMBEDDED
    [all...]

Completed in 3279 milliseconds

1 2