OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:send_fd
(Results
1 - 5
of
5
) sorted by null
/external/bluetooth/bluedroid/btif/src/
btif_sock_util.c
109
int sock_send_fd(int sock_fd, const uint8_t* buf, int len, int
send_fd
)
118
asrt(
send_fd
!= -1);
119
if(sock_fd == -1 ||
send_fd
== -1)
128
cmsg->cmsg_len = CMSG_LEN(sizeof
send_fd
);
129
memcpy(CMSG_DATA(cmsg), &
send_fd
, sizeof
send_fd
);
local
148
BTIF_TRACE_ERROR5("fd:%d,
send_fd
:%d, sendmsg ret:%d, errno:%d, %s",
149
sock_fd,
send_fd
, (int)ret, errno, strerror(errno));
160
BTIF_TRACE_DEBUG1("close fd:%d after sent",
send_fd
);
161
close(
send_fd
);
[
all
...]
btif_sock_rfc.c
526
static BOOLEAN send_app_connect_signal(int fd, const bt_bdaddr_t* addr, int channel, int status, int
send_fd
)
541
if(
send_fd
!= -1)
543
if(sock_send_fd(fd, (const uint8_t*)&cs, sizeof(cs),
send_fd
) == sizeof(cs))
545
else APPL_TRACE_ERROR2("sock_send_fd failed, fd:%d,
send_fd
:%d", fd,
send_fd
);
[
all
...]
/external/bluetooth/bluedroid/btif/include/
btif_sock_util.h
61
int sock_send_fd(int sock_fd, const uint8_t* buffer, int len, int
send_fd
);
/external/libpcap/
pcap-dlpi.c
388
if (p->
send_fd
< 0) {
393
ret = dlrawdatareq(p->
send_fd
, buf, size);
455
if (p->
send_fd
>= 0)
456
close(p->
send_fd
);
490
p->
send_fd
= -1;
535
* If the open fails, we just leave -1 in "p->
send_fd
" and reject
541
p->
send_fd
= open(cp, O_RDWR);
635
if (p->
send_fd
>= 0) {
636
if (dl_doattach(p->
send_fd
, ppa, ebuf) < 0)
676
if (p->
send_fd
>= 0)
[
all
...]
pcap-int.h
147
int
send_fd
;
Completed in 41 milliseconds