HomeSort by relevance Sort by last modified time
    Searched full:exit_sockets (Results 1 - 1 of 1) sorted by null

  /hardware/libhardware_legacy/wifi/
wifi.c 54 static int exit_sockets[MAX_CONNS][2]; variable
561 exit_sockets[i][0] = exit_sockets[i][1] = -1;
661 if (socketpair(AF_UNIX, SOCK_STREAM, 0, exit_sockets[index]) == -1) {
701 TEMP_FAILURE_RETRY(write(exit_sockets[index][0], "T", 1));
721 rfds[1].fd = exit_sockets[index][1];
823 if (exit_sockets[index][0] >= 0) {
824 close(exit_sockets[index][0]);
825 exit_sockets[index][0] = -1;
828 if (exit_sockets[index][1] >= 0)
    [all...]

Completed in 85 milliseconds