Searched refs:new_fd (Results 1 - 5 of 5) sorted by relevance

/external/openssh/
H A Dmux.c312 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[
830 int new_fd[2]; local
[all...]
/external/chromium/base/
H A Dshared_memory_posix.cc323 const int new_fd = dup(mapped_file_); local
324 DCHECK_GE(new_fd, 0);
325 new_handle->fd = new_fd;
H A Dprocess_util_posix.cc544 int new_fd = HANDLE_EINTR(dup2(null_fd, STDIN_FILENO)); local
545 if (new_fd != STDIN_FILENO) {
/external/dbus/dbus/
H A Ddbus-sysdeps-unix.c2808 int new_fd; local
2813 new_fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
2814 cloexec_done = new_fd >= 0;
2816 if (new_fd < 0 && errno == EINVAL)
2819 new_fd = fcntl(fd, F_DUPFD, 3);
2822 if (new_fd < 0) {
2833 _dbus_fd_set_close_on_exec(new_fd);
2836 return new_fd;
/external/ppp/pppd/
H A Dsys-linux.c262 /* new_fd is the fd of a tty */
263 static void set_ppp_fd (int new_fd) argument
265 ppp_fd = new_fd;
267 ppp_dev_fd = new_fd;

Completed in 350 milliseconds