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

  /device/google/dragon/audio/soundtrigger/
sound_trigger_hw.c 211 int exit_sockets[2]; local
222 if (socketpair(AF_UNIX, SOCK_STREAM, 0, exit_sockets) == -1)
226 stdev->send_sock = exit_sockets[0];
227 stdev->term_sock = exit_sockets[1];
  /device/htc/flounder/audio/soundtrigger/
sound_trigger_hw.c 256 int exit_sockets[2]; local
267 if (socketpair(AF_UNIX, SOCK_STREAM, 0, exit_sockets) == -1)
271 stdev->send_sock = exit_sockets[0];
272 stdev->term_sock = exit_sockets[1];
  /hardware/qcom/wlan/qcwcn/wifi_hal/
common.h 126 int exit_sockets[2]; member in struct:hal_info_s
  /hardware/libhardware_legacy/wifi/
wifi.c 71 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[1] >= 0)
    [all...]

Completed in 181 milliseconds