Lines Matching refs:exit_sockets
78 ctx->exit_sockets[0] = -1; in init_exit_sockets()
79 ctx->exit_sockets[1] = -1; in init_exit_sockets()
80 if (socketpair(AF_UNIX, SOCK_STREAM, 0, &ctx->exit_sockets[0]) == -1) { in init_exit_sockets()
92 if (ctx->exit_sockets[0] >= 0) { in cleanup_exit_sockets()
93 close(ctx->exit_sockets[0]); in cleanup_exit_sockets()
94 ctx->exit_sockets[0] = -1; in cleanup_exit_sockets()
97 if (ctx->exit_sockets[1] >= 0) { in cleanup_exit_sockets()
98 close(ctx->exit_sockets[1]); in cleanup_exit_sockets()
99 ctx->exit_sockets[1] = -1; in cleanup_exit_sockets()
110 TEMP_FAILURE_RETRY(write(ctx->exit_sockets[0], "E", 1)); in exit_cld80211_recv()
425 pfd[1].fd = ctx->exit_sockets[1]; in cld80211_recv()