HomeSort by relevance Sort by last modified time
    Searched refs:sock (Results 276 - 300 of 389) sorted by null

<<111213141516

  /external/openssh/
misc.c 654 int fd = -1, sock;
680 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) == -1)
683 if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1)
692 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
697 if (ioctl(sock, SIOCSIFFLAGS, &ifr) == -1)
700 close(sock);
706 if (sock >= 0)
707 close(sock);
channels.h 100 int sock; /* sock fd */ member in struct:Channel
  /external/openssh/regress/
multiplex.sh 4 CTL=/tmp/openssh.regress.ctl-sock.$$
  /external/strace/
Android.mk 9 resource.c signal.c sock.c system.c term.c time.c \
  /external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/
l2_packet_linux.c 72 static void l2_packet_receive(int sock, void *eloop_ctx, void *sock_ctx)
82 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &ll,
l2_packet_privsep.c 99 static void l2_packet_receive(int sock, void *eloop_ctx, void *sock_ctx)
108 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &from,
  /external/wpa_supplicant_8/src/crypto/
random.c 284 static void random_read_fd(int sock, void *eloop_ctx, void *sock_ctx)
293 res = read(sock, dummy_key + dummy_key_avail,
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_linux.c 69 static void l2_packet_receive(int sock, void *eloop_ctx, void *sock_ctx)
79 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &ll,
l2_packet_privsep.c 93 static void l2_packet_receive(int sock, void *eloop_ctx, void *sock_ctx)
102 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &from,
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 900 int sock = -1; local
908 sock = socket(AF_INET, SOCK_DGRAM, 0);
909 if (sock < 0)
913 if (ioctl(sock, SIOCGIFADDR, &req) < 0) {
925 if (ioctl(sock, SIOCGIFHWADDR, &req) < 0) {
940 close(sock);
944 if (sock >= 0)
945 close(sock);
    [all...]
  /external/ipsec-tools/src/racoon/
privsep.c 80 privsep_send(sock, buf, len)
81 int sock;
88 if (sendto(sock, (char *)buf, len, 0, NULL, 0) == -1) {
102 privsep_recv(sock, bufp, lenp)
103 int sock;
115 while ((len = recvfrom(sock, (char *)&com,
141 while ((len = recvfrom(sock, (char *)combuf,
  /dalvik/vm/jdwp/
JdwpAdb.cpp 574 int sock = receiveClientFd(netState); local
575 if (sock >= 0) {
577 close(sock);
  /external/bluetooth/bluez/audio/
unix.c 88 int sock; member in struct:unix_client
107 if (client->sock >= 0)
108 close(client->sock);
142 static int unix_sendmsg_fd(int sock, int fd)
162 return sendmsg(sock, &msgh, MSG_NOSIGNAL);
173 if (send(client->sock, msg, msg->length, 0) < 0)
400 if (unix_sendmsg_fd(client->sock, client->data_fd) < 0) {
439 if (unix_sendmsg_fd(client->sock, client->data_fd) < 0) {
804 if (unix_sendmsg_fd(client->sock, client->data_fd) < 0) {
    [all...]
  /external/chromium/third_party/libevent/
evutil.h 102 int evutil_make_socket_nonblocking(int sock);
  /external/esd/include/
esd.h 133 int esd_send_auth( int sock );
  /external/kernel-headers/original/linux/
icmpv6.h 188 extern void icmpv6_flow_init(struct sock *sk,
  /external/kernel-headers/original/linux/netfilter/
nfnetlink.h 113 int (*call)(struct sock *nl, struct sk_buff *skb,
  /external/openssl/crypto/bio/
b_sock.c 233 int BIO_sock_error(int sock)
248 i=getsockopt(sock,SOL_SOCKET,SO_ERROR,(void *)&j,(void *)&size);
827 int BIO_accept(int sock, char **addr)
869 ret=accept(sock,&sa.from.sa,(void *)&sa.len);
  /external/wpa_supplicant_8/src/drivers/
rfkill.c 53 static void rfkill_receive(int sock, void *eloop_ctx, void *sock_ctx)
  /external/wpa_supplicant_8/src/utils/
edit.c 757 static enum edit_key_code edit_read_key(int sock)
765 res = read(sock, buf, 1);
1003 static void edit_read_char(int sock, void *eloop_ctx, void *sock_ctx)
1009 c = edit_read_key(sock);
  /hardware/ti/wlan/mac80211/ti-utils/
calibrator.h 133 int nl_get_multicast_id(struct nl_sock *sock, const char *family,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
esd.h 133 int esd_send_auth( int sock );
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
esd.h 133 int esd_send_auth( int sock );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
esd.h 133 int esd_send_auth( int sock );
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket_unittest.cc 275 bool DevToolsRemoteListenSocketTester::Send(SOCKET sock,
278 int send_len = HANDLE_EINTR(send(sock, str.data(), len, 0));

Completed in 738 milliseconds

<<111213141516