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

1 2 3 4 5 6

  /external/chromium_org/ash/autoclick/
autoclick_controller.h 27 virtual void SetAutoclickDelay(int delay_ms) = 0;
  /external/chromium_org/third_party/webrtc/voice_engine/include/
voe_video_sync.h 64 // jitter buffer delay is max of |delay_ms| and the latency that NetEq
66 virtual int SetMinimumPlayoutDelay(int channel, int delay_ms) = 0;
69 // audio is delayed by |delay_ms| in milliseconds. Thereafter, the delay is
73 virtual int SetInitialPlayoutDelay(int channel, int delay_ms) = 0;
  /external/chromium_org/ppapi/thunk/
ppb_message_loop_api.h 31 int64_t delay_ms) = 0;
  /external/valgrind/main/drd/tests/
hold_lock.c 14 static void delay_ms(const int ms) function
52 delay_ms(interval);
62 delay_ms(interval);
70 delay_ms(interval);
  /external/chromium_org/components/translate/core/browser/
translate_script.h 37 void set_expiration_delay(int delay_ms) {
38 expiration_delay_ = base::TimeDelta::FromMilliseconds(delay_ms);
  /external/chromium_org/ppapi/api/
ppb_message_loop.idl 211 * @param delay_ms The number of milliseconds to delay execution of the given
246 [in] int64_t delay_ms);
  /external/chromium_org/third_party/webrtc/video_engine/
stream_synchronization_unittest.cc 330 int MaxAudioDelayIncrease(int current_audio_delay_ms, int delay_ms) {
331 return std::min((delay_ms - current_audio_delay_ms) / kSmoothingFilter,
335 int MaxAudioDelayDecrease(int current_audio_delay_ms, int delay_ms) {
336 return std::max((delay_ms - current_audio_delay_ms) / kSmoothingFilter,
363 int delay_ms = 200; local
367 EXPECT_TRUE(DelayedStreams(delay_ms, 0, current_audio_delay_ms,
371 EXPECT_EQ(delay_ms / kSmoothingFilter, total_video_delay_ms);
377 EXPECT_TRUE(DelayedStreams(delay_ms, 0, current_audio_delay_ms,
381 EXPECT_EQ(2 * delay_ms / kSmoothingFilter, total_video_delay_ms);
387 EXPECT_TRUE(DelayedStreams(delay_ms, 0, current_audio_delay_ms
395 int delay_ms = 200; local
    [all...]
  /external/chromium_org/jingle/glue/
thread_wrapper.h 62 virtual void PostDelayed(int delay_ms,
81 int delay_ms,
84 int delay_ms) OVERRIDE;
102 int delay_ms, rtc::MessageHandler* handler,
  /external/chromium_org/ppapi/c/
ppb_message_loop.h 224 * @param delay_ms The number of milliseconds to delay execution of the given
259 int64_t delay_ms);
  /external/chromium_org/ppapi/cpp/
message_loop.h 208 /// @param delay_ms The number of milliseconds to delay execution of the given
241 int64_t delay_ms = 0);
  /external/chromium_org/ppapi/shared_impl/
ppb_message_loop_shared.h 49 int64 delay_ms) = 0;
  /external/chromium_org/ppapi/proxy/
ppb_message_loop_proxy.h 38 int64_t delay_ms) OVERRIDE;
59 int64 delay_ms; member in struct:ppapi::proxy::MessageLoopResource::TaskInfo
74 int64 delay_ms) OVERRIDE;
ppb_message_loop_proxy.cc 97 PostClosure(info.from_here, info.closure, info.delay_ms);
124 int64_t delay_ms) {
132 delay_ms);
181 int64 delay_ms) {
184 from_here, closure, base::TimeDelta::FromMilliseconds(delay_ms));
189 info.delay_ms = delay_ms;
247 int64_t delay_ms) {
250 return enter.object()->PostWork(callback, delay_ms);
  /external/chromium_org/net/base/
backoff_entry.cc 137 // Note: if the failure count is too high, |delay_ms| will become infinity
141 double delay_ms = policy_->initial_delay_ms; local
142 delay_ms *= pow(policy_->multiply_factor, effective_failure_count - 1);
143 delay_ms -= base::RandDouble() * policy_->jitter_factor * delay_ms;
149 delay_ms + 0.5;
  /external/srec/audio/test/AudioHardwareRecordLoop/src/
AudioHardwareRecordLoop.c 54 const unsigned short delay_ms = 2000; //1800 //340; local
56 printf("For debugging, this is configured to sleep for %u milliseconds before AudioSetInputFormat(%u)\n\n", delay_ms, SAMPLING_RATE);
77 sleep_time_struct.tv_usec = delay_ms*1000; // microseconds
  /external/chromium_org/chrome/browser/web_resource/
promo_resource_service.cc 143 void PromoResourceService::PostNotification(int64 delay_ms) {
148 // TODO(achuith): This crashes if we post delay_ms = 0 to the message loop.
150 if (delay_ms > 0) {
155 base::TimeDelta::FromMilliseconds(delay_ms));
156 } else if (delay_ms == 0) {
promo_resource_service.h 50 // If delay_ms is positive, schedule notification with the delay.
51 // If delay_ms is 0, notify immediately by calling WebResourceStateChange().
52 // If delay_ms is negative, do nothing.
53 void PostNotification(int64 delay_ms);
  /external/chromium_org/gin/modules/
timer.cc 26 Handle<Timer> Timer::Create(TimerType type, v8::Isolate* isolate, int delay_ms,
29 delay_ms, function));
42 Timer::Timer(v8::Isolate* isolate, bool repeating, int delay_ms,
50 timer_.Start(FROM_HERE, base::TimeDelta::FromMilliseconds(delay_ms),
timer.h 30 int delay_ms, v8::Handle<v8::Function> function);
36 Timer(v8::Isolate* isolate, bool repeating, int delay_ms,
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_manager.cc 386 bool DelayManager::SetMinimumDelay(int delay_ms) {
390 if ((maximum_delay_ms_ > 0 && delay_ms > maximum_delay_ms_) ||
392 delay_ms > 3 * max_packets_in_buffer_ * packet_len_ms_ / 4)) {
395 minimum_delay_ms_ = delay_ms;
399 bool DelayManager::SetMaximumDelay(int delay_ms) {
400 if (delay_ms == 0) {
404 } else if (delay_ms < minimum_delay_ms_ || delay_ms < packet_len_ms_) {
408 maximum_delay_ms_ = delay_ms;
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_video_sync_impl.h 27 virtual int SetInitialPlayoutDelay(int channel, int delay_ms);
  /external/chromium_org/ash/frame/caption_buttons/
frame_size_button.h 46 void set_delay_to_set_buttons_to_snap_mode(int delay_ms) {
47 set_buttons_to_snap_mode_delay_ms_ = delay_ms;
  /external/chromium_org/chrome/browser/metrics/
plugin_metrics_provider_unittest.cc 126 int delay_ms = 10; local
127 EXPECT_TRUE(provider.RecordCurrentStateWithDelay(delay_ms));
128 EXPECT_FALSE(provider.RecordCurrentStateWithDelay(delay_ms));
130 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(delay_ms));
133 EXPECT_TRUE(provider.RecordCurrentStateWithDelay(delay_ms));
146 int delay_ms = 100000; local
147 EXPECT_TRUE(provider.RecordCurrentStateWithDelay(delay_ms));
152 EXPECT_TRUE(provider.RecordCurrentStateWithDelay(delay_ms));
  /external/chromium_org/content/child/
webthread_impl.h 43 virtual void postDelayedTask(Task* task, long long delay_ms);
64 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE;
  /external/chromium_org/mojo/services/html_viewer/
webthread_impl.h 42 virtual void postDelayedTask(Task* task, long long delay_ms);
63 virtual void postDelayedTask(Task* task, long long delay_ms);

Completed in 380 milliseconds

1 2 3 4 5 6