/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";
|
message_loop.h | 142 // tasks are called after at least approximately 'delay_ms' have elapsed. 158 const tracked_objects::Location& from_here, Task* task, int64 delay_ms); 164 const tracked_objects::Location& from_here, Task* task, int64 delay_ms); 431 int64 delay_ms, bool nestable);
|
message_pump_glib_unittest.cc | 64 // delay_ms is relative to the last event if any, or to Now() otherwise. 65 void AddEvent(int delay_ms, Task* task) { 72 base::Time future = last_time + base::TimeDelta::FromMilliseconds(delay_ms);
|
/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/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/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/chrome/browser/metrics/ |
thread_watcher.h | 302 int64 delay_ms); 313 int64 delay_ms);
|
thread_watcher.cc | 380 int64 delay_ms) { 381 return PostTaskHelper(from_here, task, delay_ms); 388 int64 delay_ms) { 395 message_loop->PostDelayedTask(from_here, task, delay_ms);
|
/external/chromium/chrome/browser/translate/ |
translate_manager.h | 76 void set_translate_script_expiration_delay(int delay_ms) { 77 translate_script_expiration_delay_ = delay_ms;
|
/external/chromium/chrome/browser/ |
plugin_updater.h | 46 void UpdatePreferences(Profile* profile, int delay_ms);
|
plugin_updater.cc | 240 void PluginUpdater::UpdatePreferences(Profile* profile, int delay_ms) { 245 &PluginUpdater::GetPreferencesDataOnFileThread, profile), delay_ms);
|
/hardware/ril/mock-ril/src/cpp/ |
worker.cpp | 166 int64_t delay_ms = r->time - now; local 168 " p=%p time=%lldms delay_ms=%lldms", 169 r->p, r->time, delay_ms); 171 ts.tv_sec = tv.tv_sec + (delay_ms / 1000); 173 ((delay_ms % 1000) * 1000)) * 1000;
|
worker_v8.cpp | 162 int32_t delay_ms = v8DelayMs->Int32Value(); local 163 workerV8->handler_->AddDelayed(ai, delay_ms);
|
/hardware/libhardware/include/hardware/ |
audio_policy.h | 300 int delay_ms); 312 int delay_ms); 337 int delay_ms);
|
/external/qemu/android/ |
hw-sensors.c | 179 int32_t delay_ms; member in struct:HwSensorClient 229 cl->delay_ms = 800; 287 int64_t delay = cl->delay_ms; 391 cl->delay_ms = atoi((const char*)msg+10); 446 qemu_put_be32(f, sc->delay_ms); 457 sc->delay_ms = qemu_get_be32(f);
|
/external/webrtc/src/modules/audio_processing/main/test/process_test/ |
process_test.cc | 383 int delay_ms = 0; local 510 delay_ms = 0; 516 // TODO(ajm): sizeof(delay_ms) for current files? 518 fread(&delay_ms, 2, 1, delay_file)); 533 apm->set_stream_delay_ms(delay_ms));
|
/external/chromium/chrome/browser/extensions/ |
extension_updater.cc | 875 double delay_ms = target_delay.InMillisecondsF(); local 877 delay_ms += delay_ms * jitter_factor; 879 static_cast<int64>(delay_ms)); [all...] |
/frameworks/base/services/audioflinger/ |
AudioPolicyService.cpp | [all...] |
/external/chromium/net/socket/ |
transport_client_socket_pool_unittest.cc | 162 // |delay_ms| is the delay, in milliseconds, before simulating a connect. 167 int delay_ms) 171 delay_ms_(delay_ms), 330 void set_delay_ms(int delay_ms) { delay_ms_ = delay_ms; } [all...] |
/external/qemu-pc-bios/bochs/bios/ |
rombios32.c | 414 void delay_ms(int n) function 663 delay_ms(10); [all...] |