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

1 2 3 4

  /external/chromium/base/
message_loop_proxy_impl.cc 27 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
28 return PostTaskHelper(from_here, task, delay_ms, true);
39 int64 delay_ms) {
40 return PostTaskHelper(from_here, task, delay_ms, false);
85 const tracked_objects::Location& from_here, Task* task, int64 delay_ms,
92 target_message_loop_->PostDelayedTask(from_here, task, delay_ms);
95 delay_ms);
message_loop_proxy_impl.h 28 Task* task, int64 delay_ms);
34 int64 delay_ms);
48 Task* task, int64 delay_ms, bool nestable);
message_loop_proxy.h 37 Task* task, int64 delay_ms) = 0;
43 int64 delay_ms) = 0;
message_loop.cc 230 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
231 PostTask_Helper(from_here, task, delay_ms, true);
240 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
241 PostTask_Helper(from_here, task, delay_ms, false);
473 const tracked_objects::Location& from_here, Task* task, int64 delay_ms,
479 if (delay_ms > 0) {
481 TimeTicks::Now() + TimeDelta::FromMilliseconds(delay_ms);
491 delay_ms < (2 * base::Time::kMinLowResolutionThresholdMs);
500 DCHECK_EQ(delay_ms, 0) << "delay should not be negative";
  /external/chromium_org/ppapi/shared_impl/
ppb_message_loop_shared.h 45 int64 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/chrome/browser/translate/
translate_script.h 32 void set_expiration_delay(int delay_ms) {
33 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/webkit/child/
webthread_impl.h 41 virtual void postDelayedTask(Task* task, long long delay_ms);
60 virtual void postDelayedTask(Task* task, long long delay_ms);
webthread_impl.cc 69 Task* task, long long delay_ms) {
73 base::TimeDelta::FromMilliseconds(delay_ms));
107 Task* task, long long delay_ms) {
111 base::TimeDelta::FromMilliseconds(delay_ms));
  /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, talk_base::MessageHandler* handler,
thread_wrapper.cc 85 int delay_ms, talk_base::MessageHandler* handler,
87 PostTaskInternal(delay_ms, handler, message_id, data);
203 int delay_ms, talk_base::MessageHandler* handler,
216 if (delay_ms <= 0) {
224 base::TimeDelta::FromMilliseconds(delay_ms));
  /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);
message_loop.cc 71 int64_t delay_ms) {
77 delay_ms);
  /external/chromium_org/ppapi/proxy/
ppb_message_loop_proxy.h 38 int64_t delay_ms) OVERRIDE;
51 int64 delay_ms; member in struct:ppapi::proxy::MessageLoopResource::TaskInfo
64 int64 delay_ms) OVERRIDE;
ppb_message_loop_proxy.cc 95 PostClosure(info.from_here, info.closure, info.delay_ms);
122 int64_t delay_ms) {
130 delay_ms);
179 int64 delay_ms) {
182 from_here, closure, base::TimeDelta::FromMilliseconds(delay_ms));
187 info.delay_ms = delay_ms;
237 int64_t delay_ms) {
240 return enter.object()->PostWork(callback, delay_ms);
  /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 144 void PromoResourceService::PostNotification(int64 delay_ms) {
149 // TODO(achuith): This crashes if we post delay_ms = 0 to the message loop.
151 if (delay_ms > 0) {
156 base::TimeDelta::FromMilliseconds(delay_ms));
157 } 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);
web_resource_service.h 67 // Schedules a fetch after |delay_ms| milliseconds.
68 void ScheduleFetch(int64 delay_ms);
  /external/chromium/chrome/browser/web_resource/
web_resource_service.h 47 // If delay_ms is positive, schedule notification with the delay.
48 // If delay_ms is 0, notify immediately by calling WebResourceStateChange().
49 // If delay_ms is negative, do nothing.
50 void PostNotification(int64 delay_ms);
web_resource_service.cc 39 void StartAfterDelay(int64 delay_ms) {
42 delay_ms);
228 void WebResourceService::PostNotification(int64 delay_ms) {
231 if (delay_ms > 0) {
235 &WebResourceService::WebResourceStateChange), delay_ms);
236 } else if (delay_ms == 0) {
  /external/chromium_org/chrome/browser/chromeos/
swap_metrics.h 50 // Posts a task to record metrics for |sample_index| after |delay_ms|.
53 int delay_ms);

Completed in 575 milliseconds

1 2 3 4