/external/iptables/include/linux/netfilter/ |
xt_LED.h | 9 __u32 delay; /* Delay until LED is switched off after trigger */ member in struct:xt_led_info
|
/bionic/libc/kernel/arch-sh/asm/ |
sh_keysc.h | 20 int delay; member in struct:sh_keysc_info
|
/external/chromium/base/ |
message_pump_default.cc | 44 TimeDelta delay = delayed_work_time_ - TimeTicks::Now(); local 45 if (delay > TimeDelta()) { 46 event_.TimedWait(delay);
|
event_recorder.cc | 123 // Each time the event is requested, we must calculate the new delay. 125 // re-compute the delay. I mention this only because I saw two examples 205 int delay = 0; local 240 // time this is called, we recalculate the delay relative to our current 242 delay = (playback_msg_.time - playback_first_msg_time_) - 244 if (delay < 0) 245 delay = 0; 246 return delay;
|
/external/valgrind/main/drd/tests/ |
rwlock_race.c | 22 struct timespec delay = { ms / 1000, (ms % 1000) * 1000 * 1000 }; local 23 nanosleep(&delay, 0);
|
pth_detached.c | 86 struct timespec delay = { 0, 1 * 1000 * 1000 }; local 87 nanosleep(&delay, 0);
|
/system/extras/tests/cpueater/ |
daemonize.c | 34 unsigned int delay = 0; local 40 printf("Usage: %s [-f logfile] [-a] [-d delay] <program>\n", argv[0]); 59 delay = atoi(*argv); 61 delay = atoi(*++argv); 99 if(delay) { 108 if(delay) { 109 sleep(delay); 116 if(delay) {
|
/external/chromium/net/base/ |
backoff_entry.cc | 51 // release time, further requests will then need to wait the delay caused 108 // The delay is calculated with this formula: 109 // delay = initial_backoff * multiply_factor^( 111 double delay = policy_->initial_backoff_ms; local 112 delay *= pow(policy_->multiply_factor, effective_failure_count - 1); 113 delay -= base::RandDouble() * policy_->jitter_factor * delay; 115 // Ensure that we do not exceed maximum delay. 116 int64 delay_int = static_cast<int64>(delay + 0.5);
|
/external/skia/src/animator/ |
SkDisplayPost.h | 50 SkMSec delay; member in class:SkPost
|
/external/tcpdump/ |
print-igrp.c | 47 register u_int delay, bandwidth; local 60 delay = EXTRACT_24BITS(igr->igr_dly); 62 metric = bandwidth + delay; 68 10 * delay, bandwidth == 0 ? 0 : 10000000 / bandwidth,
|
/external/webkit/Source/WebCore/bindings/js/ |
JSWorkerContextCustom.cpp | 129 int delay = exec->argument(1).toInt32(exec); local 130 return jsNumber(impl()->setTimeout(action.release(), delay)); 139 int delay = exec->argument(1).toInt32(exec); local 140 return jsNumber(impl()->setInterval(action.release(), delay));
|
/external/webkit/Source/WebCore/page/ |
WebKitAnimation.cpp | 62 double WebKitAnimation::delay() const function in class:WebCore::WebKitAnimation 64 return m_keyframeAnimation->animation()->delay();
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
s_lt_pred_status.h | 159 Int delay[MAX_SHORT_WINDOWS]; member in struct:__anon15029
|
ps_allocate_decoder.cpp | 249 int delay; local 253 delay = 2; 255 ptr4 += delay; 258 ptr5 += delay; 265 delay = SHORT_DELAY; 269 delay = LONG_DELAY; 273 ptr1 += delay; 276 ptr1 += delay;
|
/frameworks/base/media/libstagefright/timedtext/ |
TextDescriptions.cpp | 194 // 'dlay' box specifies a delay after a scroll in and/or 200 uint32_t delay = *(tmpData) << 24 | *(tmpData + 1) << 16 local 202 parcel->writeInt32(delay);
|
/frameworks/base/services/sensorservice/ |
SensorDevice.h | 43 Info() : delay(0) { } 45 nsecs_t delay; member in struct:android::SensorDevice::Info
|
/frameworks/base/media/tests/omxjpegdecoder/ |
jpeg_decoder_bench.cpp | 62 int64_t delay = getNowUs() - startTime; local 64 printf("Decoding Time in BoundsMode %.1f msec.\n", delay / 1000.0f); 79 int64_t delay = getNowUs() - startTime; local 80 printf("Decoding Time in PixelsMode %.1f msec.\n", delay / 1000.0f);
|
/external/bluetooth/bluez/tools/ |
csr_bcsp.c | 52 uint8_t delay, activity = 0x00; local 119 delay = ubcsp_poll(&activity); 124 if (delay) { 125 usleep(delay * 100); 154 uint8_t delay, activity = 0x00; local 189 delay = ubcsp_poll(&activity); 217 if (delay) { 218 usleep(delay * 100);
|
/external/chromium/chrome/browser/policy/ |
device_token_fetcher.cc | 236 int64 delay = std::max<int64>((delayed_work_at - now).InMilliseconds(), 0); local 240 delay);
|
/external/chromium/chrome/browser/sync/notifier/ |
registration_manager.h | 49 // The calculated delay of the pending registration (which may be 51 base::TimeDelta delay; member in struct:sync_notifier::RegistrationManager::PendingRegistrationInfo 52 // The delay of the timer, which should be max(delay, 0). 122 // The calculated delay of any pending registration (which may be 124 base::TimeDelta delay; member in struct:sync_notifier::RegistrationManager::RegistrationStatus 135 // increases the delay until the next retry.
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
stunrequest.cc | 58 void StunRequestManager::SendDelayed(StunRequest* request, int delay) { 63 thread_->PostDelayed(delay, request, MSG_STUN_SEND, NULL); 184 int delay = GetNextDelay(); local 185 manager_->thread_->PostDelayed(delay, this, MSG_STUN_SEND, NULL); 193 int delay = DELAY_UNIT * talk_base::_min(1 << count_, DELAY_MAX_FACTOR); local 197 return delay;
|
/frameworks/base/libs/rs/ |
rsThreadIO.cpp | 132 uint64_t delay = 0; local 134 delay = timeToWait - (con->getTime() - startTime); 135 if (delay > timeToWait) { 136 delay = 0; 139 const void * data = mToCore.get(&cmdID, &cmdSize, delay);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
ConfirmRateLimitActivity.java | 83 long delay = mCreateTime - System.currentTimeMillis() local 86 if (delay <= 0) { 90 mHandler.postDelayed(mRunnable, delay);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/ |
WaveformImage.java | 56 final int delay = (SAMPLING_RATE * 100 / 1000); local 57 int endIndex = end / 2 + delay; 61 int index = start / 2 - delay;
|
/system/media/wilhelm/tests/listening/ |
seekTorture.c | 121 SLmillisecond delay = 100 + (rand() & 8191); local 122 printf("sleep %u\n", (unsigned) delay); 123 usleep(delay * 1000);
|