OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ipipe
(Results
1 - 1
of
1
) sorted by null
/external/ppp/pppd/
tty.c
623
int
ipipe
[2], opipe[2], ok;
local
625
if (pipe(
ipipe
) < 0 || pipe(opipe) < 0)
629
(void) fcntl(
ipipe
[0], F_SETFD, FD_CLOEXEC);
632
ok = device_script(ptycommand, opipe[0],
ipipe
[1], 1) == 0
633
&& start_charshunt(
ipipe
[0], opipe[1]);
634
close(
ipipe
[0]);
635
close(
ipipe
[1]);
[
all
...]
Completed in 459 milliseconds