Home | History | Annotate | Download | only in src

Lines Matching defs:cmd_thread

1525   mm_jpeg_job_cmd_thread_t *cmd_thread = &my_obj->job_mgr;
1530 rc = cam_sem_wait(&cmd_thread->job_sem);
1548 node = (mm_jpeg_job_q_node_t*)mm_jpeg_queue_deq(&cmd_thread->job_queue);
1612 mm_jpeg_job_cmd_thread_t * cmd_thread = &my_obj->job_mgr;
1623 mm_jpeg_queue_enq(&cmd_thread->job_queue, node);
1624 cam_sem_post(&cmd_thread->job_sem);
1627 if (pthread_join(cmd_thread->pid, NULL) != 0) {
1630 mm_jpeg_queue_deinit(&cmd_thread->job_queue);
1632 cam_sem_destroy(&cmd_thread->job_sem);
1633 memset(cmd_thread, 0, sizeof(mm_jpeg_job_cmd_thread_t));