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

  /system/core/libcutils/
debugger.c 54 static int send_request(int sock_fd, void* msg_ptr, size_t msg_len) {
56 if (TEMP_FAILURE_RETRY(write(sock_fd, msg_ptr, msg_len)) != (ssize_t) msg_len) {
60 if (TEMP_FAILURE_RETRY(read(sock_fd, &ack, 1)) != 1) {
95 int sock_fd = socket_local_client(socket_name, ANDROID_SOCKET_NAMESPACE_ABSTRACT, local
97 if (sock_fd < 0) {
101 if (send_request(sock_fd, msg_ptr, msg_len) < 0) {
102 TEMP_FAILURE_RETRY(close(sock_fd));
106 return sock_fd;
110 int sock_fd = make_dump_request(DEBUGGER_ACTION_DUMP_BACKTRACE, tid); local
111 if (sock_fd < 0)
130 int sock_fd = make_dump_request(DEBUGGER_ACTION_DUMP_TOMBSTONE, tid); local
    [all...]
  /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_ERROR("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_ERROR("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_ERROR("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 314 int* sock_fd, int flags)
318 if(sock_fd == NULL || (service_uuid == NULL && (channel < 1 || channel > 30)))
320 APPL_TRACE_ERROR("invalid rfc channel:%d or sock_fd:%p, uuid:%p", channel, sock_fd, service_uuid);
323 *sock_fd = -1;
344 *sock_fd = rs->app_fd;
358 int channel, int* sock_fd, int flags)
360 if(sock_fd == NULL || (service_uuid == NULL && (channel < 1 || channel > 30)))
362 APPL_TRACE_ERROR("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);
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_socket.c 545 int sock_fd = -1; local
562 sock_fd = socket(AF_INET, SOCK_STREAM, 0);
563 if (sock_fd < 0) {
565 return sock_fd;
569 socket_flag = fcntl(sock_fd, F_GETFL, 0);
570 fcntl(sock_fd, F_SETFL, socket_flag | O_NONBLOCK);
574 result = setsockopt(sock_fd, SOL_SOCKET, SO_REUSEADDR,
579 close(sock_fd);
580 sock_fd = -1;
581 return sock_fd;
    [all...]
  /external/chromium_org/chrome/test/chromedriver/net/
port_server.cc 72 int sock_fd = socket(AF_UNIX, SOCK_STREAM, 0); local
73 if (sock_fd < 0)
75 base::SyncSocket sock(sock_fd);
79 if (setsockopt(sock_fd,
84 setsockopt(sock_fd,
  /external/ppp/pppd/
sys-linux.c 178 static int sock_fd = -1; /* socket for doing interface ioctls */ variable
314 sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
315 if (sock_fd < 0)
363 if (sock_fd >= 0)
364 close(sock_fd);
1167 if (ifunit >= 0 && ioctl(sock_fd, SIOCSIFMTU, (caddr_t) &ifr) < 0)
1182 if (ifunit >= 0 && ioctl(sock_fd, SIOCGIFMTU, (caddr_t) &ifr) < 0) {
1840 int ret, sock_fd; local
    [all...]
  /external/libpcap/
pcap-linux.c 385 static int has_wext(int sock_fd, const char *device, char *ebuf);
387 static int enter_rfmon_mode(pcap_t *handle, int sock_fd,
639 add_mon_if(pcap_t *handle, int sock_fd, struct nl80211_state *state,
646 ifindex = iface_get_id(sock_fd, device, handle->errbuf);
735 del_mon_if(pcap_t *handle, int sock_fd, struct nl80211_state *state,
742 ifindex = iface_get_id(sock_fd, mondevice, handle->errbuf);
789 enter_rfmon_mode_mac80211(pcap_t *handle, int sock_fd, const char *device)
827 ret = add_mon_if(handle, sock_fd, &nlstate, device, mondevice);
875 if (ioctl(sock_fd, SIOCGIFFLAGS, &ifr) == -1) {
879 del_mon_if(handle, sock_fd, &nlstate, device
923 int sock_fd; local
3001 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 676 milliseconds