HomeSort by relevance Sort by last modified time
    Searched defs:thread_lock (Results 1 - 3 of 3) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/thread/
SDL_thread.c 39 static SDL_mutex *thread_lock = NULL; variable
46 thread_lock = SDL_CreateMutex();
47 if ( thread_lock == NULL ) {
62 mutex = thread_lock;
63 thread_lock = NULL;
78 if ( !thread_lock ) {
83 SDL_mutexP(thread_lock);
103 SDL_mutexV(thread_lock);
110 if ( !thread_lock ) {
113 SDL_mutexP(thread_lock);
    [all...]
  /device/htc/flounder/audio/visualizer/
nv_offload_visualizer.c 152 /* thread_lock must be held when starting or stopping the capture thread.
153 * Locking order: thread_lock -> lock */
154 pthread_mutex_t thread_lock; variable
189 pthread_mutex_init(&thread_lock, NULL);
378 pthread_mutex_lock(&thread_lock);
410 pthread_mutex_unlock(&thread_lock);
426 pthread_mutex_lock(&thread_lock);
460 pthread_mutex_unlock(&thread_lock);
    [all...]
  /hardware/qcom/audio/visualizer/
offload_visualizer.c 162 /* thread_lock must be held when starting or stopping the capture thread.
163 * Locking order: thread_lock -> lock */
164 pthread_mutex_t thread_lock; variable
211 pthread_mutex_init(&thread_lock, NULL);
438 pthread_mutex_lock(&thread_lock);
470 pthread_mutex_unlock(&thread_lock);
486 pthread_mutex_lock(&thread_lock);
520 pthread_mutex_unlock(&thread_lock);
    [all...]

Completed in 1015 milliseconds