HomeSort by relevance Sort by last modified time
    Searched full:timer (Results 126 - 150 of 1190) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/WebCore/page/animation/
AnimationBase.h 66 AnimationStateStartWaitTimer, // start timer running, waiting for fire
69 AnimationStateLooping, // response received, animation running, loop timer running, waiting for fire
70 AnimationStateEnding, // received, animation running, end timer running, waiting for fire
74 AnimationStateDone // end timer fired, animation finished and removed
81 AnimationStateInputStartTimerFired, // start timer fired
84 AnimationStateInputLoopTimerFired, // loop timer fired
85 AnimationStateInputEndTimerFired, // end timer fired
120 // "animating" means that something is running that requires a timer to keep firing
185 // These are called when the corresponding timer fires so subclasses can do any extra work
214 bool m_isAnimating; // transition/animation requires continual timer firin
    [all...]
  /external/opencore/engines/2way/test/src/
video_only_test.cpp 76 if (timer)
78 delete timer;
79 timer = NULL;
184 timer->RunIfNotReady(TEST_DURATION);
294 timer = new engine_timer(this);
295 if (timer == NULL)
300 timer->AddToScheduler();
  /external/qemu/
buffered_file.c 16 #include "qemu-timer.h"
38 QEMUTimer *timer; member in struct:QEMUFileBuffered
177 qemu_del_timer(s->timer);
178 qemu_free_timer(s->timer);
221 qemu_mod_timer(s->timer, qemu_get_clock(rt_clock) + 100);
256 s->timer = qemu_new_timer(rt_clock, buffered_rate_tick, s);
258 qemu_mod_timer(s->timer, qemu_get_clock(rt_clock) + 100);
shaper.c 14 #include "qemu-timer.h"
49 * in this interval is placed in a queue, associated to a timer
51 * there are different (queue/timer/rate) values for the input and output
105 QEMUTimer* timer; /* QEMU timer */ member in struct:NetShaperRec_
126 qemu_del_timer(shaper->timer);
127 qemu_free_timer(shaper->timer);
128 shaper->timer = NULL;
133 /* this function is called when the shaper's timer expires */
151 /* reprogram timer if needed *
387 QEMUTimer* timer; member in struct:NetDelayRec_
    [all...]
  /frameworks/base/core/java/android/webkit/
JWebCoreJavaBridge.java 26 // Identifier for the timer message.
35 // Instant timer is used to implement a timer that needs to fire almost
82 * Call native timer callbacks.
86 // clear the flag so that sharedTimerFired() can set a new timer
218 * @param timemillis The relative time when the timer should fire
242 * Stop the shared timer.
  /external/webkit/WebCore/html/
HTMLMediaElement.h 33 #include "Timer.h"
207 void loadTimerFired(Timer<HTMLMediaElement>*);
208 void asyncEventTimerFired(Timer<HTMLMediaElement>*);
209 void progressEventTimerFired(Timer<HTMLMediaElement>*);
210 void playbackProgressTimerFired(Timer<HTMLMediaElement>*);
270 Timer<HTMLMediaElement> m_loadTimer;
271 Timer<HTMLMediaElement> m_asyncEventTimer;
272 Timer<HTMLMediaElement> m_progressEventTimer;
273 Timer<HTMLMediaElement> m_playbackProgressTimer;
  /frameworks/base/core/java/android/os/
BatteryStats.java 38 * A constant indicating a partial wake lock timer.
43 * A constant indicating a full wake lock timer.
48 * A constant indicating a window wake lock timer.
53 * A constant indicating a sensor timer.
60 * A constant indicating a a wifi turn on timer
67 * A constant indicating a full wifi lock timer
74 * A constant indicating a scan wifi lock timer
81 * A constant indicating a wifi multicast timer
88 * A constant indicating an audio turn on timer
95 * A constant indicating a video turn on timer
946 Timer timer = se.getSensorTime(); local
1339 Timer timer = se.getSensorTime(); local
    [all...]
  /external/opencore/protocols/systems/3g-324m_pvterminal/h324/srp/src/
srp.cpp 341 // Cancel any outstanding timer events
351 // Stop response wait timer
357 // Remove timer from active list
693 /* function discription: INT SrpN400Check(SRPRespTimer &timer) */
694 /* input data : timer - timer to check */
703 int SRP::SrpN400Check(SRPRespTimer &timer)
705 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_VERBOSE, (0x40000020, "SRP::SrpN400Check - N400Counter=%d N400MaxCounter=%d", timer.N400Counter, iN400MaxCounter));
707 if (timer.N400Counter < iN400MaxCounter)
1705 SRPRespTimer *timer; local
2394 SRPRespTimer *timer = NULL; local
    [all...]
  /external/webkit/WebCore/history/
PageCache.h 30 #include "Timer.h"
69 void releaseAutoreleasedPagesNowOrReschedule(Timer<PageCache>*);
78 Timer<PageCache> m_autoreleaseTimer;
  /external/webkit/WebCore/loader/
RedirectScheduler.h 35 #include "Timer.h"
69 void timerFired(Timer<RedirectScheduler>*);
75 Timer<RedirectScheduler> m_timer;
loader.h 30 #include "Timer.h"
65 void requestTimerFired(Timer<Loader>*);
110 Timer<Loader> m_requestTimer;
  /external/webkit/WebCore/page/
DOMTimer.h 31 #include "Timer.h"
42 // Creates a new timer owned by specified ScriptExecutionContext, starts it
55 // The lowest allowable timer setting (in seconds, 0.001 == 1 ms).
  /external/webkit/WebCore/platform/
Timer.h 90 template <typename TimerFiredClass> class Timer : public TimerBase {
92 typedef void (TimerFiredClass::*TimerFiredFunction)(Timer*);
94 Timer(TimerFiredClass* o, TimerFiredFunction f)
  /external/webkit/WebCore/platform/android/
SharedTimerAndroid.cpp 40 // Single timer, shared to implement all the timers managed by the Timer class.
41 // Not intended to be used directly; use the Timer class instead.
  /external/webkit/WebCore/platform/cf/
RunLoopTimerCF.cpp 43 RunLoopTimerBase* timer = static_cast<RunLoopTimerBase*>(context); local
44 timer->fired();
58 ASSERT_WITH_MESSAGE(m_timer, "Timer must have one of the start functions called before calling schedule().");
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayerRenderer.h 32 #include "Timer.h"
78 void renderTimerFired(Timer<WKCACFLayerRenderer>*);
98 Timer<WKCACFLayerRenderer> m_renderTimer;
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerPrivateWince.h 33 #include "Timer.h"
90 void seekTimerFired(Timer<MediaPlayerPrivate>*);
108 Timer<MediaPlayerPrivate> m_seekTimer;
  /external/webkit/WebCore/platform/mock/
GeolocationServiceMock.h 30 #include "Timer.h"
67 void timerFired(Timer<GeolocationServiceMock>*);
78 Timer<GeolocationServiceMock> m_timer;
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleManager.h 34 #include "Timer.h"
75 void downloadTimerCallback(Timer<ResourceHandleManager>*);
83 Timer<ResourceHandleManager> m_downloadTimer;
  /external/webkit/WebCore/rendering/
RenderButton.h 25 #include "Timer.h"
66 void timerFired(Timer<RenderButton>*);
71 OwnPtr<Timer<RenderButton> > m_timer;
  /external/webkit/WebCore/storage/
StorageAreaSync.h 34 #include "Timer.h"
59 Timer<StorageAreaSync> m_syncTimer;
78 void syncTimerFired(Timer<StorageAreaSync>*);
  /external/webkit/WebCore/svg/animation/
SMILTimeContainer.h 34 #include "Timer.h"
70 void timerFired(Timer<SMILTimeContainer>*);
88 Timer<SMILTimeContainer> m_timer;
  /external/webkit/WebKit/android/benchmark/
Intercept.h 31 #include "Timer.h"
77 void timerFired(Timer<MyWebFrame>*);
79 Timer<MyWebFrame> m_timer;
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
healthMonitor.c 41 * For periodic check, use HW watchdog mechanizem instead of local periodic timer check
49 #include "timer.h"
77 TI_HANDLE hTimer; /* handle to the Timer module object */
81 TI_HANDLE hFailTimer; /* failure event timer */
90 TI_UINT32 keepAliveIntervals; /* number of health monitor timer intervals at which keep alive should be sent */
91 TI_UINT32 currentKeepAliveCounter;/* counting how many timer intervals had passed w/o a keep alive */
215 /* Create recovery request timer */
249 /* Release the timer */
285 DESCRIPTION: Called periodically by timer every few seconds (depends on connection state),
289 bTwdInitOccured - Indicates if TWDriver recovery occured since timer started
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
healthMonitor.c 41 * For periodic check, use HW watchdog mechanizem instead of local periodic timer check
49 #include "timer.h"
77 TI_HANDLE hTimer; /* handle to the Timer module object */
81 TI_HANDLE hFailTimer; /* failure event timer */
90 TI_UINT32 keepAliveIntervals; /* number of health monitor timer intervals at which keep alive should be sent */
91 TI_UINT32 currentKeepAliveCounter;/* counting how many timer intervals had passed w/o a keep alive */
215 /* Create recovery request timer */
249 /* Release the timer */
285 DESCRIPTION: Called periodically by timer every few seconds (depends on connection state),
289 bTwdInitOccured - Indicates if TWDriver recovery occured since timer started
    [all...]

Completed in 119 milliseconds

1 2 3 4 56 7 8 91011>>