HomeSort by relevance Sort by last modified time
    Searched refs:new_fd (Results 1 - 5 of 5) sorted by null

  /external/bison/lib/
spawni.c 256 int new_fd = open_not_cancel (action->action.open_action.path, local
261 if (new_fd == -1)
266 if (new_fd != action->action.open_action.fd)
268 if (dup2 (new_fd, action->action.open_action.fd)
273 if (close_not_cancel (new_fd) != 0)
  /external/openssh/
mux.c 312 int new_fd[3]; local
375 if ((new_fd[i] = mm_receive_fd(c->sock)) == -1) {
379 close(new_fd[j]);
398 new_fd[0], new_fd[1], new_fd[2]);
408 close(new_fd[0]);
409 close(new_fd[1]);
410 close(new_fd[2]);
434 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1
830 int new_fd[2]; local
    [all...]
  /external/chromium/base/
shared_memory_posix.cc 323 const int new_fd = dup(mapped_file_); local
324 DCHECK_GE(new_fd, 0);
325 new_handle->fd = new_fd;
process_util_posix.cc 544 int new_fd = HANDLE_EINTR(dup2(null_fd, STDIN_FILENO)); local
545 if (new_fd != STDIN_FILENO) {
    [all...]
  /external/ppp/pppd/
sys-linux.c 262 /* new_fd is the fd of a tty */
263 static void set_ppp_fd (int new_fd)
265 ppp_fd = new_fd;
267 ppp_dev_fd = new_fd;
    [all...]

Completed in 165 milliseconds