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

  /hardware/libhardware_legacy/wifi/
wifi.c 71 static int exit_sockets[2]; variable
448 exit_sockets[0] = exit_sockets[1] = -1;
560 if (socketpair(AF_UNIX, SOCK_STREAM, 0, exit_sockets) == -1) {
594 TEMP_FAILURE_RETRY(write(exit_sockets[0], "T", 1));
626 rfds[1].fd = exit_sockets[1];
742 if (exit_sockets[0] >= 0) {
743 close(exit_sockets[0]);
744 exit_sockets[0] = -1;
747 if (exit_sockets[1] >= 0)
    [all...]
  /device/htc/flounder/audio/soundtrigger/
sound_trigger_hw.c 255 int exit_sockets[2]; local
266 if (socketpair(AF_UNIX, SOCK_STREAM, 0, exit_sockets) == -1)
270 stdev->send_sock = exit_sockets[0];
271 stdev->term_sock = exit_sockets[1];

Completed in 64 milliseconds