Home
last modified time | relevance | path

Searched refs:child_error_sfd (Results 1 – 1 of 1) sorted by relevance

/system/core/adb/
Dshell_service.cpp217 unique_fd parent_error_sfd, child_error_sfd; in ForkAndExec() local
229 if (!CreateSocketpair(&parent_error_sfd, &child_error_sfd)) { in ForkAndExec()
309 child_stdinout_sfd.reset(OpenPtyChildFd(pts_name, &child_error_sfd)); in ForkAndExec()
322 close_on_exec(child_error_sfd); in ForkAndExec()
333 WriteFdExactly(child_error_sfd, "exec '" _PATH_BSHELL "' failed: "); in ForkAndExec()
334 WriteFdExactly(child_error_sfd, strerror(errno)); in ForkAndExec()
335 child_error_sfd.reset(-1); in ForkAndExec()
344 child_error_sfd.reset(-1); in ForkAndExec()