Home | History | Annotate | Download | only in utils

Lines Matching refs:LocTimerWrapper

52 LocTimer, LocTimerDelegate, LocTimerContainer, LocTimerPollTask, LocTimerWrapper
78 LocTimerWrapper - a LocTimer client itself, to implement the existing C API with
578 /***************************LocTimerWrapper methods***************************/
582 class LocTimerWrapper : public LocTimer {
585 LocTimerWrapper* mMe;
587 inline ~LocTimerWrapper() { mCb = NULL; mMe = NULL; }
589 inline LocTimerWrapper(loc_timer_callback cb, void* callerData) :
609 pthread_mutex_t LocTimerWrapper::mMutex = PTHREAD_MUTEX_INITIALIZER;
614 LocTimerWrapper* locTimerWrapper = NULL;
617 locTimerWrapper = new LocTimerWrapper(cb_func, caller_data);
619 if (locTimerWrapper) {
620 locTimerWrapper->start(msec, wake_on_expire);
624 return locTimerWrapper;
630 LocTimerWrapper* locTimerWrapper = (LocTimerWrapper*)(handle);
631 locTimerWrapper->destroy();