HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 201 - 225 of 567) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/JavaScriptCore/wtf/
ThreadingWin.cpp 463 DWORD interval = absoluteTimeToWaitTimeoutInterval(absoluteTime); local
465 if (!interval) {
471 return m_condition.timedWait(mutex.impl(), interval);
  /hardware/libhardware/modules/gralloc/
framebuffer.cpp 61 int interval)
64 if (interval < dev->minSwapInterval || interval > dev->maxSwapInterval)
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl_enc.h 44 void rcFBSetSwapInterval_enc(void *self , EGLint interval);
  /external/chromium/webkit/glue/
webkitclient_impl.cc 482 int64 interval = static_cast<int64>(
484 if (interval < 0)
485 interval = 0;
488 shared_timer_.Start(base::TimeDelta::FromMicroseconds(interval), this,
  /external/dhcpcd/
dhcpcd.h 73 time_t interval; member in struct:if_state
ipv4ll.c 151 iface->state->interval = RATE_LIMIT_INTERVAL / 2;
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl_c.h 52 void (WINAPI *wglSwapIntervalEXT)(int interval);
  /external/tcpdump/
aodv.h 184 u_int32_t interval; /* expect my next hello in member in struct:aodv_hello
  /external/wpa_supplicant_8/src/p2p/
p2p_build.c 281 wpabuf_put_le32(buf, desc->interval);
301 u16 interval)
307 wpabuf_put_le16(buf, interval);
309 "interval %u msec)", period, interval);
  /hardware/libhardware/include/hardware/
camera.h 83 int (*set_swap_interval)(struct preview_stream_ops *w, int interval);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
BasicEditor.java 53 FilterBasicRepresentation interval = (FilterBasicRepresentation) getLocalRepresentation(); local
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 263 public void doTest(long timeout, long interval) throws InterruptedException {
270 wait(interval);
MessengerTest.java 252 public void doTest(long timeout, long interval) throws InterruptedException {
260 wait(interval);
  /device/generic/goldfish/opengl/system/egl/
egl.cpp 177 virtual void setSwapInterval(int interval) = 0;
235 virtual void setSwapInterval(int interval);
307 void egl_window_surface_t::setSwapInterval(int interval)
309 nativeWindow->setSwapInterval(nativeWindow, interval);
339 virtual void setSwapInterval(int interval) {}
835 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
848 draw->setSwapInterval(interval);
850 rcEnc->rcFBSetSwapInterval(rcEnc, interval); //TODO: implement on the host
    [all...]
  /external/netperf/
netcpu_kstat.c 249 calibrate_idle_rate(int iterations, int interval)
292 sleep(interval);
netcpu_perfstat.c 116 calibrate_idle_rate(int iterations, int interval)
193 sleep(interval);
netcpu_pstat.c 98 calibrate_idle_rate(int iterations, int interval)
159 sleep(interval);
  /external/v8/src/
platform-nullos.cc 475 ProfileSampler::ProfileSampler(int interval) {
479 interval_ = interval;
  /external/webkit/Source/WebCore/loader/cache/
CachedImage.cpp 118 if (double interval = memoryCache()->deadDecodedDataDeletionInterval())
119 m_decodedDataDeletionTimer.startOneShot(interval);
  /external/webkit/Source/WebCore/plugins/
npapi.cpp 197 uint32_t NPN_ScheduleTimer(NPP instance, uint32_t interval, NPBool repeat,
200 return pluginViewForInstance(instance)->scheduleTimer(instance, interval,
  /external/webkit/Source/WebKit/chromium/src/
WebSettingsImpl.cpp 386 void WebSettingsImpl::setMinimumTimerInterval(double interval)
388 m_settings->setMinDOMTimerInterval(interval);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.cpp 196 void WKContextStartMemorySampler(WKContextRef contextRef, WKDoubleRef interval)
198 toImpl(contextRef)->startMemorySampler(toImpl(interval)->value());
  /frameworks/base/services/java/com/android/server/
NetworkTimeUpdateService.java 45 * interval and then resets to checking on longer intervals.
83 // Try-again polling interval, in case the network request failed
212 * Cancel old alarm and starts a new one for the specified interval.
214 * @param interval when to trigger the alarm, starting from now.
216 private void resetAlarm(long interval) {
219 long next = now + interval;
  /frameworks/native/libs/gui/
Surface.cpp 86 int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) {
88 return c->setSwapInterval(interval);
158 int Surface::setSwapInterval(int interval) {
161 // interval is silently clamped to minimum and maximum implementation
165 if (interval < minSwapInterval)
166 interval = minSwapInterval;
168 if (interval > maxSwapInterval)
169 interval = maxSwapInterval;
171 status_t res = mGraphicBufferProducer->setSynchronousMode(interval ? true : false);
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 22 EGLBoolean eglSwapInterval ( EGLDisplay dpy, EGLint interval )

Completed in 796 milliseconds

1 2 3 4 5 6 7 891011>>