Searched defs:timerId (Results 1 - 6 of 6) sorted by relevance

/external/webkit/WebCore/bindings/v8/custom/
H A DV8WorkerContextCustom.cpp59 int timerId; local
64 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
76 timerId = DOMTimer::install(workerContext, action, timeout, singleShot);
80 return v8::Integer::New(timerId);
/external/webkit/WebCore/inspector/
H A DTimelineRecordFactory.cpp60 ScriptObject TimelineRecordFactory::createGenericTimerData(InspectorFrontend* frontend, int timerId) argument
63 data.set("timerId", timerId);
67 ScriptObject TimelineRecordFactory::createTimerInstallData(InspectorFrontend* frontend, int timerId, int timeout, bool singleShot) argument
70 data.set("timerId", timerId);
H A DInspectorTimelineAgent.cpp112 void InspectorTimelineAgent::didInstallTimer(int timerId, int timeout, bool singleShot) argument
115 record.set("data", TimelineRecordFactory::createTimerInstallData(m_frontend, timerId, timeout, singleShot));
119 void InspectorTimelineAgent::didRemoveTimer(int timerId) argument
122 record.set("data", TimelineRecordFactory::createGenericTimerData(m_frontend, timerId));
126 void InspectorTimelineAgent::willFireTimer(int timerId) argument
128 pushCurrentRecord(TimelineRecordFactory::createGenericTimerData(m_frontend, timerId), TimerFireTimelineRecordType);
/external/webkit/WebKit/qt/Api/
H A Dqwebpage.cpp705 int timerId = ev->timerId(); local
706 if (timerId == tripleClickTimer.timerId())
/external/qemu/
H A Dvl-android.c888 MMRESULT timerId; member in struct:qemu_alarm_win32
1651 data->timerId = timeSetEvent(1, // interval (ms)
1657 if (!data->timerId) {
1671 timeKillEvent(data->timerId);
1684 timeKillEvent(data->timerId);
1686 data->timerId = timeSetEvent(1,
1692 if (!data->timerId) {
H A Dvl.c962 MMRESULT timerId; member in struct:qemu_alarm_win32
1709 data->timerId = timeSetEvent(1, // interval (ms)
1715 if (!data->timerId) {
1729 timeKillEvent(data->timerId);
1742 timeKillEvent(data->timerId);
1744 data->timerId = timeSetEvent(1,
1750 if (!data->timerId) {

Completed in 75 milliseconds