Searched refs:exit_sockets (Results 1 - 3 of 3) sorted by relevance

/hardware/libhardware_legacy/wifi/
H A Dwifi.c71 static int exit_sockets[2]; variable
484 exit_sockets[0] = exit_sockets[1] = -1;
587 if (socketpair(AF_UNIX, SOCK_STREAM, 0, exit_sockets) == -1) {
621 TEMP_FAILURE_RETRY(write(exit_sockets[0], "T", 1));
653 rfds[1].fd = exit_sockets[1];
769 if (exit_sockets[0] >= 0) {
770 close(exit_sockets[0]);
771 exit_sockets[0] = -1;
774 if (exit_sockets[
[all...]
/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dwifi_hal.cpp542 info->exit_sockets[0] = -1;
543 info->exit_sockets[1] = -1;
545 if (socketpair(AF_UNIX, SOCK_STREAM, 0, info->exit_sockets) == -1) {
633 if (info->exit_sockets[0] >= 0) {
634 close(info->exit_sockets[0]);
635 info->exit_sockets[0] = -1;
638 if (info->exit_sockets[1] >= 0) {
639 close(info->exit_sockets[1]);
640 info->exit_sockets[1] = -1;
665 TEMP_FAILURE_RETRY(write(info->exit_sockets[
[all...]
H A Dcommon.h126 int exit_sockets[2]; member in struct:hal_info_s

Completed in 72 milliseconds