Searched refs:delay_ms (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
H A Dnet_configs.py28 NetConfig = collections.namedtuple('NetConfig', ['down', 'up', 'delay_ms'])
33 'dialup': NetConfig(down= '49Kbit/s', up= '30Kbit/s', delay_ms= '120'),
34 '3g': NetConfig(down= '1638Kbit/s', up= '768Kbit/s', delay_ms= '150'),
35 'dsl': NetConfig(down= '1536Kbit/s', up= '384Kbit/s', delay_ms= '50'),
36 'cable': NetConfig(down= '5Mbit/s', up= '1Mbit/s', delay_ms= '28'),
37 'fios': NetConfig(down= '20Mbit/s', up= '5Mbit/s', delay_ms= '4'),
H A Dtrafficshaper_test.py188 """Verify that it takes |delay_ms| to establish a TCP connection."""
193 for delay_ms in (100, 175):
194 with self.TrafficShaper(delay_ms=delay_ms):
198 self.assertValuesAlmostEqual(delay_ms, connect_time, tolerance=0.12)
253 for delay_ms in (100, 170):
254 expected_ms = delay_ms / 2
256 with self.TrafficShaper(delay_ms=delay_ms):
H A Dtrafficshaper.py59 delay_ms='0',
71 delay_ms: Propagation delay in milliseconds. '0' means no delay.
81 self.delay_ms = delay_ms
104 self.delay_ms == '0' and self.packet_loss_rate == '0'):
111 half_delay_ms = int(self.delay_ms) / 2 # split over up/down links
H A Ddnsproxy.py157 def __init__(self, is_record_mode, delay_ms):
159 self.delay_ms = int(delay_ms)
163 time.sleep(self.delay_ms * 1000.0)
/external/webrtc/tools/network_emulator/
H A Dconfig.py16 def __init__(self, num, name, receive_bw_kbps, send_bw_kbps, delay_ms,
22 self.delay_ms = delay_ms
36 self.queue_slots, self.delay_ms, self.packet_loss_percent)
H A Dnetwork_emulator.py65 self._connection_config.delay_ms,
71 self._connection_config.delay_ms,
127 def _create_dummynet_pipe(self, bandwidth_kbps, delay_ms, packet_loss_percent,
133 delay_ms: Delay for a one-way trip of a packet.
142 'delay', '%sms' % delay_ms,
H A Demulate.py84 default=_DEFAULT_PRESET.delay_ms,
148 if options.delay is not _DEFAULT_PRESET.delay_ms:
149 connection_config.delay_ms = options.delay
180 connection_config.delay_ms,
/external/valgrind/drd/tests/
H A Dhold_lock.c14 static void delay_ms(const int ms) function
52 delay_ms(interval);
62 delay_ms(interval);
70 delay_ms(interval);
/external/autotest/client/cros/cellular/wardmodem/
H A Dtask_loop.py181 def post_repeated_task(self, callback, delay_ms=0):
198 @param delay_ms: The delay between repeated calls to |callback|. The
209 next_delay_ms = self._next_delay_ms(delay_ms)
216 delay_ms)
220 def post_task_after_delay(self, callback, delay_ms, *args, **kwargs):
222 Post the given callback once to be dispatched after |delay_ms|.
228 @param delay_ms: The delay before the call to |callback|. Default: 0
236 delay_ms = self._next_delay_ms(delay_ms)
237 self._posted_tasks[post_id] = glib.timeout_add(delay_ms, callbac
[all...]
/external/webrtc/webrtc/video/
H A Dstream_synchronization_unittest.cc331 int MaxAudioDelayIncrease(int current_audio_delay_ms, int delay_ms) { argument
332 return std::min((delay_ms - current_audio_delay_ms) / kSmoothingFilter,
336 int MaxAudioDelayDecrease(int current_audio_delay_ms, int delay_ms) { argument
337 return std::max((delay_ms - current_audio_delay_ms) / kSmoothingFilter,
364 int delay_ms = 200; local
368 EXPECT_TRUE(DelayedStreams(delay_ms, 0, current_audio_delay_ms,
372 EXPECT_EQ(delay_ms / kSmoothingFilter, total_video_delay_ms);
378 EXPECT_TRUE(DelayedStreams(delay_ms, 0, current_audio_delay_ms,
382 EXPECT_EQ(2 * delay_ms / kSmoothingFilter, total_video_delay_ms);
388 EXPECT_TRUE(DelayedStreams(delay_ms,
396 int delay_ms = 200; local
[all...]
/external/libbrillo/brillo/
H A Dbackoff_entry.cc130 // Note: if the failure count is too high, |delay_ms| will become infinity
134 double delay_ms = policy_->initial_delay_ms; local
135 delay_ms *= pow(policy_->multiply_factor, effective_failure_count - 1);
136 delay_ms -= base::RandDouble() * policy_->jitter_factor * delay_ms;
142 delay_ms + 0.5;
/external/libweave/src/
H A Dbackoff_entry.cc129 // Note: if the failure count is too high, |delay_ms| will become infinity
133 double delay_ms = policy_->initial_delay_ms; local
134 delay_ms *= pow(policy_->multiply_factor, effective_failure_count - 1);
135 delay_ms -= base::RandDouble() * policy_->jitter_factor * delay_ms;
141 delay_ms + 0.5;
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Ddelay_manager.cc387 bool DelayManager::SetMinimumDelay(int delay_ms) {
391 if ((maximum_delay_ms_ > 0 && delay_ms > maximum_delay_ms_) ||
393 delay_ms >
397 minimum_delay_ms_ = delay_ms;
401 bool DelayManager::SetMaximumDelay(int delay_ms) {
402 if (delay_ms == 0) {
406 } else if (delay_ms < minimum_delay_ms_ || delay_ms < packet_len_ms_) {
410 maximum_delay_ms_ = delay_ms;
H A Ddelay_manager.h98 virtual bool SetMinimumDelay(int delay_ms);
99 virtual bool SetMaximumDelay(int delay_ms);
/external/webrtc/webrtc/base/
H A Dasyncinvoker.h83 // Call |functor| asynchronously on |thread| with |delay_ms|, with no callback
88 uint32_t delay_ms,
92 DoInvokeDelayed(thread, closure, delay_ms, id);
139 uint32_t delay_ms,
174 // Call |functor| asynchronously with |delay_ms|, with no callback upon
178 uint32_t delay_ms,
183 invoker_.AsyncInvokeDelayed<ReturnT, FunctorT>(thread_, functor, delay_ms,
86 AsyncInvokeDelayed(Thread* thread, const FunctorT& functor, uint32_t delay_ms, uint32_t id = 0) argument
177 AsyncInvokeDelayed(const FunctorT& functor, uint32_t delay_ms, uint32_t id = 0) argument
H A Dasyncinvoker.cc70 uint32_t delay_ms,
76 thread->PostDelayed(delay_ms, this, id,
68 DoInvokeDelayed(Thread* thread, const scoped_refptr<AsyncClosure>& closure, uint32_t delay_ms, uint32_t id) argument
/external/webrtc/webrtc/modules/audio_coding/test/
H A Dtarget_delay_unittest.cc178 int SetMinimumDelay(int delay_ms) { argument
179 return acm_->SetMinimumPlayoutDelay(delay_ms);
182 int SetMaximumDelay(int delay_ms) { argument
183 return acm_->SetMaximumPlayoutDelay(delay_ms);
/external/webrtc/webrtc/voice_engine/include/
H A Dvoe_video_sync.h63 // jitter buffer delay is max of |delay_ms| and the latency that NetEq
65 virtual int SetMinimumPlayoutDelay(int channel, int delay_ms) = 0;
/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Dacm_receiver.h129 // - delay_ms : minimum delay in milliseconds.
134 int SetMinimumDelay(int delay_ms);
141 // - delay_ms : maximum delay in milliseconds.
146 int SetMaximumDelay(int delay_ms);
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dmetric_recorder.cc166 void MetricRecorder::UpdateDelayMs(int64_t delay_ms) { argument
167 PushDelayMs(delay_ms, now_ms_);
168 plot_information_[kDelay].Update(now_ms_, delay_ms);
195 void MetricRecorder::PushDelayMs(int64_t delay_ms, int64_t arrival_time_ms) { argument
197 sum_delays_ms_ += delay_ms;
198 sum_delays_square_ms2_ += delay_ms * delay_ms;
199 if (delay_histogram_ms_.find(delay_ms) == delay_histogram_ms_.end()) {
200 delay_histogram_ms_[delay_ms] = 0;
202 ++delay_histogram_ms_[delay_ms];
[all...]
/external/webrtc/talk/app/webrtc/test/
H A Dfakeaudiocapturemodule_unittest.cc168 uint16_t delay_ms = 10; local
169 EXPECT_EQ(0, fake_audio_capture_module_->PlayoutDelay(&delay_ms));
170 EXPECT_EQ(0, delay_ms);
/external/webrtc/webrtc/modules/audio_device/android/
H A Daudio_device_template.h388 int32_t PlayoutDelay(uint16_t& delay_ms) const override {
390 delay_ms = audio_manager_->GetDelayEstimateInMilliseconds() / 2;
391 RTC_DCHECK_GT(delay_ms, 0);
395 int32_t RecordingDelay(uint16_t& delay_ms) const override {
397 delay_ms = audio_manager_->GetDelayEstimateInMilliseconds() / 2;
398 RTC_DCHECK_GT(delay_ms, 0);
/external/libchrome/base/message_loop/
H A Dmessage_pump_glib_unittest.cc69 // delay_ms is relative to the last event if any, or to Now() otherwise.
70 void AddEvent(int delay_ms, const Closure& callback) { argument
71 AddEventHelper(delay_ms, callback, Closure());
74 void AddDummyEvent(int delay_ms) { argument
75 AddEventHelper(delay_ms, Closure(), Closure());
78 void AddEventAsTask(int delay_ms, const Closure& task) { argument
79 AddEventHelper(delay_ms, Closure(), task);
101 int delay_ms, const Closure& callback, const Closure& task) {
108 Time future = last_time + TimeDelta::FromMilliseconds(delay_ms);
100 AddEventHelper( int delay_ms, const Closure& callback, const Closure& task) argument
/external/webrtc/webrtc/test/
H A Dfake_audio_device.cc72 int32_t FakeAudioDevice::PlayoutDelay(uint16_t* delay_ms) const {
73 *delay_ms = 0;
/external/v8/src/heap/
H A Dmemory-reducer.h122 void ScheduleTimer(double time_ms, double delay_ms);

Completed in 515 milliseconds

123