Lines Matching refs:ret
44 int ret; in mtcp_pipe() local
76 ret = pthread_mutex_init(&pp->pipe_lock, NULL); in mtcp_pipe()
77 if (ret) { in mtcp_pipe()
86 ret = pthread_cond_init(&pp->pipe_cond, NULL); in mtcp_pipe()
87 if (ret) { in mtcp_pipe()
138 int ret; in PipeRead() local
177 ret = pthread_cond_wait(&pp->pipe_cond, &pp->pipe_lock); in PipeRead()
178 if (ret) { in PipeRead()
241 int ret; in PipeWrite() local
281 ret = pthread_cond_wait(&pp->pipe_cond, &pp->pipe_lock); in PipeWrite()
282 if (ret) { in PipeWrite()