Searched defs:crit_sect_ (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dtiming.h98 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
100 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
101 uint32_t TargetDelayInternal() const EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
104 CriticalSectionWrapper* crit_sect_; member in class:webrtc::VCMTiming
106 bool master_ GUARDED_BY(crit_sect_);
107 TimestampExtrapolator* ts_extrapolator_ GUARDED_BY(crit_sect_);
108 VCMCodecTimer codec_timer_ GUARDED_BY(crit_sect_);
109 uint32_t render_delay_ms_ GUARDED_BY(crit_sect_);
110 uint32_t min_playout_delay_ms_ GUARDED_BY(crit_sect_);
111 uint32_t jitter_delay_ms_ GUARDED_BY(crit_sect_);
[all...]
H A Dmedia_optimization.h103 void UpdateIncomingFrameRate() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
105 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
106 void UpdateSentBitrate(int64_t now_ms) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
107 void UpdateSentFramerate() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
111 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
117 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
120 bool CheckStatusForQMchange() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
123 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
128 void CheckSuspendConditions() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
138 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
145 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::media_optimization::MediaOptimization
[all...]
H A Dreceiver.h94 CriticalSectionWrapper* crit_sect_; member in class:webrtc::VCMReceiver
H A Djitter_buffer.h277 CriticalSectionWrapper* crit_sect_; member in class:webrtc::VCMJitterBuffer
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dtrace_posix.h36 CriticalSectionWrapper& crit_sect_; member in class:webrtc::TracePosix
H A Dcritical_section_unittest.cc33 : crit_sect_(crit_sect),
38 CriticalSectionScoped cs(crit_sect_);
43 CriticalSectionScoped cs(crit_sect_);
48 CriticalSectionWrapper* crit_sect_; member in class:webrtc::__anon16156::ProtectedCount
H A Dcondition_variable_unittest.cc36 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
44 delete crit_sect_;
53 CriticalSectionScoped cs(crit_sect_);
64 CriticalSectionScoped cs(crit_sect_);
80 // These functions must be called with crit_sect_ held.
83 if (!cond_var_->SleepCS(*crit_sect_, timeout_ms)) {
103 // |crit_sect_| held.
107 not_timeout = cond_var_->SleepCS(*crit_sect_, timeout_ms);
126 CriticalSectionWrapper* crit_sect_; member in class:webrtc::__anon16155::Baton
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dneteq_impl.h212 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
223 int* num_channels) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
233 bool* play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
245 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
253 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
259 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
265 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
268 int DoExpand(bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
275 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
282 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
334 const scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::NetEqImpl
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dfec_receiver_impl.h39 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::FecReceiverImpl
H A Drtp_receiver_strategy.h102 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::RTPReceiverStrategy
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dvcm_payload_sink_factory.h57 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::rtpplayer::VcmPayloadSinkFactory
H A Drtp_player.cc75 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
98 CriticalSectionScoped cs(crit_sect_.get());
110 CriticalSectionScoped cs(crit_sect_.get());
127 CriticalSectionScoped cs(crit_sect_.get());
140 CriticalSectionScoped cs(crit_sect_.get());
153 CriticalSectionScoped cs(crit_sect_.get());
161 CriticalSectionScoped cs(crit_sect_.get());
178 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::rtpplayer::LostPackets
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_receiver.h318 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
329 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::acm2::AcmReceiver
331 int last_audio_decoder_ GUARDED_BY(crit_sect_);
332 AudioFrame::VADActivity previous_audio_activity_ GUARDED_BY(crit_sect_);
333 int current_sample_rate_hz_ GUARDED_BY(crit_sect_);
334 ACMResampler resampler_ GUARDED_BY(crit_sect_);
337 int16_t audio_buffer_[AudioFrame::kMaxDataSizeSamples] GUARDED_BY(crit_sect_);
338 scoped_ptr<Nack> nack_ GUARDED_BY(crit_sect_);
339 bool nack_enabled_ GUARDED_BY(crit_sect_);
340 CallStatistics call_stats_ GUARDED_BY(crit_sect_);
[all...]
H A Daudio_coding_module_unittest.cc83 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()) {}
92 CriticalSectionScoped lock(crit_sect_.get());
99 CriticalSectionScoped lock(crit_sect_.get());
104 CriticalSectionScoped lock(crit_sect_.get());
109 CriticalSectionScoped lock(crit_sect_.get());
114 int num_calls_ GUARDED_BY(crit_sect_);
115 std::vector<uint8_t> last_payload_vec_ GUARDED_BY(crit_sect_);
116 const scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::PacketizationCallbackStub
306 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
338 CriticalSectionScoped lock(crit_sect_
415 const scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::AudioCodingModuleMtTest
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/
H A Drtp_payload_registry.h104 CriticalSectionScoped cs(crit_sect_.get());
118 CriticalSectionScoped cs(crit_sect_.get());
122 CriticalSectionScoped cs(crit_sect_.get());
126 CriticalSectionScoped cs(crit_sect_.get());
130 CriticalSectionScoped cs(crit_sect_.get());
135 CriticalSectionScoped cs(crit_sect_.get());
150 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::RTPPayloadRegistry
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Ddata_log_impl.h144 static CritSectScopedPtr crit_sect_; member in class:webrtc::DataLogImpl
/external/webrtc/src/system_wrappers/interface/
H A Ddata_log_impl.h146 static CritSectScopedPtr crit_sect_; member in class:webrtc::DataLogImpl
/external/webrtc/src/system_wrappers/source/
H A Dcritical_section_unittest.cc46 : crit_sect_(crit_sect),
51 CriticalSectionScoped cs(crit_sect_);
57 CriticalSectionScoped cs(crit_sect_);
62 CriticalSectionWrapper* crit_sect_; member in class:webrtc::__anon33522::ProtectedCount
H A Dcondition_variable_unittest.cc40 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
48 delete crit_sect_;
59 CriticalSectionScoped cs(crit_sect_);
71 CriticalSectionScoped cs(crit_sect_);
87 // These functions must be called with crit_sect_ held.
91 if (!cond_var_->SleepCS(*crit_sect_, timeout_ms)) {
113 // |crit_sect_| held.
118 not_timeout = cond_var_->SleepCS(*crit_sect_, timeout_ms);
138 CriticalSectionWrapper* crit_sect_; member in class:webrtc::__anon33521::Baton
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.h215 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::testing::bwe::Logging
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dopensles_input.h152 // The function needs to be protected by |crit_sect_|.
185 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::OpenSlesInput
H A Dopensles_output.h170 // The function needs to be protected by |crit_sect_|.
202 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::OpenSlesOutput
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimator_single_stream.cc91 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::__anon15958::RemoteBitrateEstimatorSingleStream
103 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
116 CriticalSectionScoped cs(crit_sect_.get());
165 CriticalSectionScoped cs(crit_sect_.get());
209 CriticalSectionScoped cs(crit_sect_.get());
214 CriticalSectionScoped cs(crit_sect_.get());
222 CriticalSectionScoped cs(crit_sect_.get());
/external/chromium_org/third_party/webrtc/video/
H A Dbitrate_estimator_tests.cc67 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
73 CriticalSectionScoped lock(crit_sect_.get());
100 CriticalSectionScoped lock(crit_sect_.get());
106 const scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::__anon16178::TraceObserver::Callback
107 Strings received_log_lines_ GUARDED_BY(crit_sect_);
108 Strings expected_log_lines_ GUARDED_BY(crit_sect_);
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel_group.cc41 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
58 CriticalSectionScoped cs(crit_sect_.get());
64 CriticalSectionScoped cs(crit_sect_.get());
69 CriticalSectionScoped cs(crit_sect_.get());
74 CriticalSectionScoped cs(crit_sect_.get());
79 CriticalSectionScoped cs(crit_sect_.get());
85 CriticalSectionScoped cs(crit_sect_.get());
90 CriticalSectionScoped cs(crit_sect_.get());
95 CriticalSectionScoped cs(crit_sect_.get());
107 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_
144 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in class:webrtc::__anon16212::WrappingBitrateEstimator
[all...]

Completed in 1340 milliseconds

12