Home
last modified time | relevance | path

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

/external/bluetooth/bluez/plugins/
Dhciops.c48 static int child_pipe[2] = { -1, -1 }; variable
75 if (write(child_pipe[1], &pid, sizeof(pid)) != sizeof(pid)) in at_child_exit()
325 if (child_pipe[0] != -1) in hciops_setup()
328 if (pipe(child_pipe) < 0) { in hciops_setup()
334 child_io = g_io_channel_unix_new(child_pipe[0]); in hciops_setup()
395 if (child_pipe[0] >= 0) { in hciops_cleanup()
396 close(child_pipe[0]); in hciops_cleanup()
397 child_pipe[0] = -1; in hciops_cleanup()
400 if (child_pipe[1] >= 0) { in hciops_cleanup()
401 close(child_pipe[1]); in hciops_cleanup()
[all …]