Home
last modified time | relevance | path

Searched refs:to_main_fds (Results 1 – 2 of 2) sorted by relevance

/external/adhd/cras/src/server/
Daudio_thread.c192 return write(thread->to_main_fds[1], &rc, sizeof(rc)); in audio_thread_send_response()
693 return write(thread->to_main_fds[1], &rsp, sizeof(rsp)); in handle_audio_thread_message()
961 err = read_until_finished(thread->to_main_fds[0], &rsp, sizeof(rsp)); in audio_thread_post_message()
1161 err = read_until_finished(thread->to_main_fds[0], &rsp, sizeof(rsp)); in audio_thread_config_global_remix()
1183 thread->to_main_fds[0] = -1; in audio_thread_create()
1184 thread->to_main_fds[1] = -1; in audio_thread_create()
1193 rc = pipe(thread->to_main_fds); in audio_thread_create()
1305 if (thread->to_main_fds[0] != -1) { in audio_thread_destroy()
1306 close(thread->to_main_fds[0]); in audio_thread_destroy()
1307 close(thread->to_main_fds[1]); in audio_thread_destroy()
Daudio_thread.h37 int to_main_fds[2]; member