OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tap_fd
(Results
1 - 3
of
3
) sorted by null
/system/bt/btif/include/
btif_pan_internal.h
80
int
tap_fd
;
member in struct:__anon73746
101
void create_tap_read_thread(int
tap_fd
);
103
int btpan_tap_close(int
tap_fd
);
104
int btpan_tap_send(int
tap_fd
, const BD_ADDR src, const BD_ADDR dst, UINT16 protocol,
/system/bt/btif/co/
bta_pan_co.c
85
BTIF_TRACE_DEBUG("bta_pan_co_open:
tap_fd
:%d, open_count:%d, "
87
btpan_cb.
tap_fd
, btpan_cb.open_count, conn->handle, handle,
94
if(btpan_cb.
tap_fd
< 0)
96
btpan_cb.
tap_fd
= btpan_tap_open();
97
if(btpan_cb.
tap_fd
>= 0)
98
create_tap_read_thread(btpan_cb.
tap_fd
);
100
if(btpan_cb.
tap_fd
>= 0)
134
if(btpan_cb.open_count == 0 && btpan_cb.
tap_fd
!= -1)
136
btpan_tap_close(btpan_cb.
tap_fd
);
137
btpan_cb.
tap_fd
= -1
[
all
...]
/system/bt/btif/src/
btif_pan.c
139
btpan_cb.
tap_fd
= INVALID_FD;
155
if (btpan_cb.
tap_fd
!= INVALID_FD)
157
btpan_tap_close(btpan_cb.
tap_fd
);
158
btpan_cb.
tap_fd
= INVALID_FD;
291
void create_tap_read_thread(int
tap_fd
)
296
btsock_thread_add_fd(pan_pth,
tap_fd
, 0, SOCK_THREAD_FD_RD, 0);
391
if (btpan_cb.
tap_fd
== -1)
396
btsock_thread_add_fd(pan_pth, btpan_cb.
tap_fd
, 0, SOCK_THREAD_FD_RD, 0);
397
bta_dmexecutecallback(btu_exec_tap_fd_read, INT_TO_PTR(btpan_cb.
tap_fd
));
438
int btpan_tap_send(int
tap_fd
, const BD_ADDR src, const BD_ADDR dst, UINT16 proto, const char* buf
[
all
...]
Completed in 44 milliseconds