Searched defs:child_ptty (Results 1 - 1 of 1) sorted by relevance

/system/core/logwrapper/
H A Dlogwrap.c489 int child_ptty; local
518 child_ptty = TEMP_FAILURE_RETRY(open(child_devname, O_RDWR));
519 if (child_ptty < 0) {
520 ERROR("Cannot open child_ptty\n");
532 close(child_ptty);
544 dup2(child_ptty, 0);
548 dup2(child_ptty, 1);
549 dup2(child_ptty, 2);
550 close(child_ptty);
554 close(child_ptty);
[all...]

Completed in 124 milliseconds