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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/default/
WebRenderTheme.cpp 42 void setCaretBlinkInterval(double interval)
44 RenderThemeChromiumDefault::setCaretBlinkInterval(interval);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_ext_swapinterval.c 44 wglSwapIntervalEXT(int interval)
46 (void) interval;
47 debug_printf("%s: %d\n", __FUNCTION__, interval);
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_swapinterval.c 44 wglSwapIntervalEXT(int interval)
46 (void) interval;
47 debug_printf("%s: %d\n", __FUNCTION__, interval);
  /system/core/init/
watchdogd.c 33 int interval = 10; local
43 interval = atoi(argv[1]);
48 timeout = interval + margin;
64 interval = timeout - margin;
66 interval = 1;
67 ERROR("watchdogd: Adjusted interval to timeout returned by driver: timeout %d, interval %d, margin %d\n",
68 timeout, interval, margin);
74 sleep(interval);
  /external/iproute2/tc/
tc_estimator.c 28 for (est->interval=0; est->interval<=5; est->interval++) {
29 if (A <= (1<<est->interval)*(TIME_UNITS_PER_SEC/4))
32 if (est->interval > 5)
34 est->interval -= 2;
  /external/linux-tools-perf/scripts/python/bin/
sctop-report 3 # args: [comm] [interval]
13 echo "usage: sctop-report [comm] [interval]"
18 interval=$2
21 interval=$1
24 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval
  /external/chromium_org/cc/output/
begin_frame_args.h 21 base::TimeDelta interval);
30 // This is the default interval to use to avoid sprinkling the code with
41 return interval >= base::TimeDelta();
46 base::TimeDelta interval; member in struct:cc::BeginFrameArgs
51 base::TimeDelta interval);
begin_frame_args.cc 12 interval(base::TimeDelta::FromMicroseconds(-1)) {
17 base::TimeDelta interval)
20 interval(interval)
25 base::TimeDelta interval) {
26 return BeginFrameArgs(frame_time, deadline, interval);
31 // so we set the deadline to 0 and guess that the interval is 16 milliseconds.
  /external/linux-tools-perf/scripts/perl/bin/
rwtop-report 3 # args: [interval]
13 echo "usage: rwtop-report [interval]"
17 interval=$1
20 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rwtop.pl $interval
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_timer.h 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
59 * elapsed. The callback function is passed the current timer interval
60 * and returns the next timer interval. If the returned value is the
86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
96 * The callback function is passed the current timer interval and returns
97 * the next timer interval. If the returned value is the same as the one
101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_timer.h 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
59 * elapsed. The callback function is passed the current timer interval
60 * and returns the next timer interval. If the returned value is the
86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
96 * The callback function is passed the current timer interval and returns
97 * the next timer interval. If the returned value is the same as the one
101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_timer.h 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
59 * elapsed. The callback function is passed the current timer interval
60 * and returns the next timer interval. If the returned value is the
86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
96 * The callback function is passed the current timer interval and returns
97 * the next timer interval. If the returned value is the same as the one
101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_timer.h 55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
59 * elapsed. The callback function is passed the current timer interval
60 * and returns the next timer interval. If the returned value is the
86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
96 * The callback function is passed the current timer interval and returns
97 * the next timer interval. If the returned value is the same as the one
101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
SharedTimer.h 44 // The fire interval is in seconds relative to the current monotonic clock time.
64 virtual void setFireInterval(double interval)
66 setSharedTimerFireInterval(interval);
  /external/wpa_supplicant_8/wpa_supplicant/
autoscan_exponential.c 19 int interval; member in struct:autoscan_exponential_data
84 if (data->interval >= data->limit)
87 if (data->interval <= 0)
88 data->interval = data->base;
90 data->interval = data->interval * data->base;
91 if (data->interval > data->limit)
95 return data->interval;
autoscan_periodic.c 24 int interval; local
29 interval = atoi(params);
31 if (interval < 0)
34 data->periodic_interval = interval;
54 wpa_printf(MSG_DEBUG, "autoscan periodic: interval is %d",