Home | History | Annotate | Download | only in src

Lines Matching refs:cmd_thread

782     mm_jpeg_job_cmd_thread_t *cmd_thread = &my_obj->job_mgr;
787 rc = sem_wait(&cmd_thread->job_sem);
804 node = (mm_jpeg_job_q_node_t*)mm_jpeg_queue_deq(&cmd_thread->job_queue);
844 mm_jpeg_job_cmd_thread_t * cmd_thread = &my_obj->job_mgr;
855 mm_jpeg_queue_enq(&cmd_thread->job_queue, node);
856 sem_post(&cmd_thread->job_sem);
859 if (pthread_join(cmd_thread->pid, NULL) != 0) {
862 mm_jpeg_queue_deinit(&cmd_thread->job_queue);
864 sem_destroy(&cmd_thread->job_sem);
865 memset(cmd_thread, 0, sizeof(mm_jpeg_job_cmd_thread_t));