HomeSort by relevance Sort by last modified time
    Searched full:timer_mutex (Results 1 - 4 of 4) sorted by null

  /hardware/qcom/gps/utils/
loc_timer.c 49 pthread_mutex_t timer_mutex; member in struct:__anon41925
80 pthread_mutex_lock(&(t->timer_mutex));
83 ret = pthread_cond_timedwait(&t->timer_cond, &t->timer_mutex, &ts);
86 pthread_mutex_unlock(&(t->timer_mutex));
104 pthread_mutex_destroy(&t->timer_mutex);
137 if(pthread_mutex_init(&(t->timer_mutex), NULL)) {
165 pthread_mutex_destroy(&t->timer_mutex);
179 pthread_mutex_lock(&(t->timer_mutex));
184 pthread_mutex_unlock(&(t->timer_mutex));
  /hardware/qcom/gps/msm8960/utils/
loc_timer.c 56 pthread_mutex_t timer_mutex; local
67 if(pthread_mutex_init(&timer_mutex, NULL)) {
90 pthread_mutex_lock(&(timer_mutex));
91 ret = pthread_cond_timedwait(&timer_cond, &timer_mutex, &ts);
92 pthread_mutex_unlock(&(timer_mutex));
105 pthread_mutex_destroy(&timer_mutex);
  /external/chromium_org/third_party/libusb/src/libusb/os/
wince_usb.c 46 HANDLE timer_mutex = NULL; variable
227 timer_mutex = CreateMutex(NULL, FALSE, NULL);
228 if (timer_mutex == NULL) {
273 if (timer_mutex) {
274 CloseHandle(timer_mutex);
275 timer_mutex = NULL;
329 if (timer_mutex) {
330 CloseHandle(timer_mutex);
331 timer_mutex = NULL;
910 WaitForSingleObject(timer_mutex, INFINITE)
    [all...]
windows_usb.c 110 HANDLE timer_mutex = NULL; variable
    [all...]

Completed in 261 milliseconds