OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:app_fd
(Results
1 - 2
of
2
) sorted by null
/system/bt/btif/src/
btif_sock_rfc.cc
90
int
app_fd
; // Temporary storage for the half of the socketpair that's sent
member in struct:__anon1804
126
rfc_slots[i].
app_fd
= INVALID_FD;
215
slot->
app_fd
= fds[1];
313
*sock_fd = slot->
app_fd
; // Transfer ownership of fd to caller.
315
* We are leaking one of the
app_fd
's - either the listen socket, or the
321
// close(rs->
app_fd
);
322
slot->
app_fd
= INVALID_FD; // Drop our reference to the fd.
380
*sock_fd = slot->
app_fd
; // Transfer ownership of fd to caller.
381
slot->
app_fd
= INVALID_FD; // Drop our reference to the fd.
417
if (slot->
app_fd
!= INVALID_FD)
[
all
...]
btif_sock_l2cap.cc
73
int
app_fd
; // fd from app's side
member in struct:l2cap_socket
227
if (sock->
app_fd
!= -1) {
228
close(sock->
app_fd
);
230
LOG(ERROR) << "SOCK_LIST: free(id = " << sock->id << ") - NO
app_fd
!";
292
sock->
app_fd
= fds[1];
456
DVLOG(2) << "sending connect signal & app fd: " << accept_rs->
app_fd
460
accept_rs->
app_fd
, sock->rx_mtu, p_open->tx_mtu);
461
accept_rs->
app_fd
=
497
DVLOG(2) << "sending connect signal & app fd: " << accept_rs->
app_fd
501
accept_rs->
app_fd
, sock->rx_mtu, p_open->tx_mtu)
[
all
...]
Completed in 615 milliseconds