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

  /external/bluetooth/bluedroid/btif/include/
btif_sock_rfc.h 33 int* sock_fd, int flags);
35 int channel, int* sock_fd, int flags);
btif_sock_util.h 61 int sock_send_fd(int sock_fd, const uint8_t* buffer, int len, int send_fd);
62 int sock_send_all(int sock_fd, const uint8_t* buf, int len);
63 int sock_recv_all(int sock_fd, uint8_t* buf, int len);
  /external/bluetooth/bluedroid/btif/src/
btif_sock.c 43 const uint8_t* uuid, int channel, int* sock_fd, int flags);
45 const uint8_t* uuid, int channel, int* sock_fd, int flags);
93 const uint8_t* service_uuid, int channel, int* sock_fd, int flags)
95 if((service_uuid == NULL && channel <= 0) || sock_fd == NULL)
97 BTIF_TRACE_ERROR3("invalid parameters, uuid:%p, channel:%d, sock_fd:%p", service_uuid, channel, sock_fd);
100 *sock_fd = -1;
105 status = btsock_rfc_listen(service_name, service_uuid, channel, sock_fd, flags);
123 const uint8_t* uuid, int channel, int* sock_fd, int flags)
125 if((uuid == NULL && channel <= 0) || bd_addr == NULL || sock_fd == NULL
    [all...]
btif_sock_util.c 72 int sock_send_all(int sock_fd, const uint8_t* buf, int len)
78 do ret = send(sock_fd, buf, s, 0);
82 BTIF_TRACE_ERROR3("sock fd:%d send errno:%d, ret:%d", sock_fd, errno, ret);
90 int sock_recv_all(int sock_fd, uint8_t* buf, int len)
96 do ret = recv(sock_fd, buf, r, MSG_WAITALL);
100 BTIF_TRACE_ERROR3("sock fd:%d recv errno:%d, ret:%d", sock_fd, errno, ret);
109 int sock_send_fd(int sock_fd, const uint8_t* buf, int len, int send_fd)
119 if(sock_fd == -1 || send_fd == -1)
144 ret = sendmsg(sock_fd, &msg, MSG_NOSIGNAL);
149 sock_fd, send_fd, (int)ret, errno, strerror(errno))
    [all...]
btif_sock_rfc.c 308 int* sock_fd, int flags)
312 if(sock_fd == NULL || (service_uuid == NULL && (channel < 1 || channel > 30)))
314 APPL_TRACE_ERROR3("invalid rfc channel:%d or sock_fd:%p, uuid:%p", channel, sock_fd, service_uuid);
317 *sock_fd = -1;
338 *sock_fd = rs->app_fd;
347 int channel, int* sock_fd, int flags)
349 if(sock_fd == NULL || (service_uuid == NULL && (channel < 1 || channel > 30)))
351 APPL_TRACE_ERROR3("invalid rfc channel:%d or sock_fd:%p, uuid:%p", channel, sock_fd,
    [all...]
  /hardware/libhardware/include/hardware/
bt_sock.h 47 bt_status_t (*listen)(btsock_type_t type, const char* service_name, const uint8_t* service_uuid, int channel, int* sock_fd, int flags);
52 bt_status_t (*connect)(const bt_bdaddr_t *bd_addr, btsock_type_t type, const uint8_t* uuid, int channel, int* sock_fd, int flags);
  /external/ppp/pppd/
sys-linux.c 177 static int sock_fd = -1; /* socket for doing interface ioctls */ variable
313 sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
314 if (sock_fd < 0)
362 if (sock_fd >= 0)
363 close(sock_fd);
1166 if (ifunit >= 0 && ioctl(sock_fd, SIOCSIFMTU, (caddr_t) &ifr) < 0)
1181 if (ifunit >= 0 && ioctl(sock_fd, SIOCGIFMTU, (caddr_t) &ifr) < 0) {
1839 int ret, sock_fd; local
    [all...]
  /external/libpcap/
pcap-linux.c 1392 int sock_fd = -1, arptype; local
    [all...]
  /external/dhcpcd/
if-linux.c 64 static int sock_fd; variable
133 sock_fd = _open_link_socket(&sock_nl);
134 set_cloexec(sock_fd);
135 return sock_fd;
427 if (sendmsg(sock_fd, &msg, 0) != -1)
428 r = get_netlink(sock_fd, 0, &err_netlink);

Completed in 2179 milliseconds