subshell_pipe     192 src/subshell/common.c static int subshell_pipe[2];
subshell_pipe     446 src/subshell/common.c     close (subshell_pipe[READ]);
subshell_pipe     819 src/subshell/common.c         FD_SET (subshell_pipe[READ], &read_set);
subshell_pipe     820 src/subshell/common.c         maxfdp = MAX (mc_global.tty.subshell_pty, subshell_pipe[READ]);
subshell_pipe     876 src/subshell/common.c         else if (FD_ISSET (subshell_pipe[READ], &read_set))
subshell_pipe     879 src/subshell/common.c             bytes = read (subshell_pipe[READ], subshell_cwd, sizeof (subshell_cwd));
subshell_pipe    1186 src/subshell/common.c                     command_buffer_pipe[WRITE], subshell_pipe[WRITE], subshell_pipe[WRITE]);
subshell_pipe    1207 src/subshell/common.c         g_snprintf (precmd, buff_size, precmd_fallback, subshell_pipe[WRITE]);
subshell_pipe    1214 src/subshell/common.c         g_snprintf (precmd, buff_size, precmd_fallback, subshell_pipe[WRITE]);
subshell_pipe    1219 src/subshell/common.c         g_snprintf (precmd, buff_size, precmd_fallback, subshell_pipe[WRITE]);
subshell_pipe    1226 src/subshell/common.c                     "\"${PS1:-\\u@\\h:\\w\\$ }\"\n", subshell_pipe[WRITE]);
subshell_pipe    1239 src/subshell/common.c                     command_buffer_pipe[WRITE], command_buffer_pipe[WRITE], subshell_pipe[WRITE]);
subshell_pipe    1257 src/subshell/common.c                     command_buffer_pipe[WRITE], command_buffer_pipe[WRITE], subshell_pipe[WRITE]);
subshell_pipe    1358 src/subshell/common.c     FD_SET (subshell_pipe[READ], &read_set);
subshell_pipe    1359 src/subshell/common.c     maxfdp = subshell_pipe[READ];
subshell_pipe    1362 src/subshell/common.c         && FD_ISSET (subshell_pipe[READ], &read_set))
subshell_pipe    1364 src/subshell/common.c         if (read (subshell_pipe[READ], subshell_cwd, sizeof (subshell_cwd)) <= 0)
subshell_pipe    1581 src/subshell/common.c             if ((subshell_pipe[READ] = open (tcsh_fifo, O_RDWR)) == -1
subshell_pipe    1582 src/subshell/common.c                 || (subshell_pipe[WRITE] = open (tcsh_fifo, O_RDWR)) == -1)
subshell_pipe    1590 src/subshell/common.c         else if (pipe (subshell_pipe) != 0)     /* subshell_type is BASH, ASH_BUSYBOX, DASH or ZSH */