OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fd_max
(Results
1 - 2
of
2
) sorted by null
/external/bluetooth/bluedroid/hci/src/
userial_mct.c
164
int
fd_max
= create_signal_fds(&input);
local
165
fd_max
= (
fd_max
>userial_cb.fd[CH_EVT]) ?
fd_max
: userial_cb.fd[CH_EVT];
166
fd_max
= (
fd_max
>userial_cb.fd[CH_ACL_IN]) ?
fd_max
: userial_cb.fd[CH_ACL_IN];
170
n = select(
fd_max
+1, &input, NULL, NULL, NULL);
userial.c
183
int
fd_max
= create_signal_fds(&input);
local
184
fd_max
=
fd_max
> fd ?
fd_max
: fd;
187
n = select(
fd_max
+1, &input, NULL, NULL, NULL);
Completed in 47 milliseconds