Home | History | Annotate | Download | only in src

Lines Matching full:sock_fd

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)
127 BTIF_TRACE_ERROR4("invalid parameters, bd_addr:%p, uuid:%p, channel:%d, sock_fd:%p",
128 bd_addr, uuid, channel, sock_fd);
131 *sock_fd = -1;
136 status = btsock_rfc_connect(bd_addr, uuid, channel, sock_fd, flags);