Home | History | Annotate | Download | only in plugins

Lines Matching refs:timer

68         // ensure the timer cannot be deleted until this method completes
74 // remove the timer if it is a one-shot timer (!m_repeat) or if is a
75 // repeating timer that has been unscheduled. In either case we must
80 deref(); // mark the timer for deletion as it is no longer needed
112 PluginTimer* timer = new PluginTimer(&m_list, instance, repeat, proc);
116 timer->startRepeating(dinterval);
118 timer->startOneShot(dinterval);
120 return timer->timerID();
125 // Although it looks like simply deleting the timer would work here
130 PluginTimer* timer = PluginTimer::Find(m_list, timerID);
131 if (timer)
132 timer->unschedule();