shell              88 lib/global.c       .shell = NULL,
shell             222 lib/global.h       mc_shell_t *shell;
shell             249 lib/shell.c        mc_global.shell = mc_shell;
shell             257 lib/shell.c        if (mc_global.shell != NULL)
shell             259 lib/shell.c            g_free (mc_global.shell->path);
shell             260 lib/shell.c            MC_PTR_FREE (mc_global.shell);
shell             199 lib/util.h     int my_system (int flags, const char *shell, const char *command);
shell             200 lib/util.h     int my_systeml (int flags, const char *shell, ...);
shell             201 lib/utilunix.c my_system_make_arg_array (int flags, const char *shell, char **execute_name)
shell             209 lib/utilunix.c         g_ptr_array_add (args_array, (gpointer) shell);
shell             211 lib/utilunix.c         *execute_name = g_strdup (shell);
shell             217 lib/utilunix.c         shell_token = shell != NULL ? strchr (shell, ' ') : NULL;
shell             219 lib/utilunix.c             *execute_name = g_strdup (shell);
shell             221 lib/utilunix.c             *execute_name = g_strndup (shell, (gsize) (shell_token - shell));
shell             223 lib/utilunix.c         g_ptr_array_add (args_array, (gpointer) shell);
shell             372 lib/utilunix.c my_system (int flags, const char *shell, const char *command)
shell             374 lib/utilunix.c     return my_systeml (flags, shell, command, NULL);
shell             392 lib/utilunix.c my_systeml (int flags, const char *shell, ...)
shell             401 lib/utilunix.c     va_start (vargs, shell);
shell             407 lib/utilunix.c     status = my_systemv_flags (flags, shell, (char *const *) args_array->pdata);
shell              89 src/clipboard.c         my_system (EXECUTE_AS_SHELL, mc_global.shell->path, cmd);
shell              68 src/execute.c  void do_execute (const char *shell, const char *command, int flags);
shell              69 src/execute.c  void do_executev (const char *shell, int flags, char *const argv[]);
shell             295 src/execute.c  do_executev (const char *shell, int flags, char *const argv[])
shell             327 src/execute.c          my_systemv_flags (flags, shell, argv);
shell             386 src/execute.c  do_execute (const char *shell, const char *command, int flags)
shell             394 src/execute.c      do_executev (shell, flags, (char *const *) args_array->pdata);
shell             438 src/execute.c              do_execute (mc_global.shell->path, cmd ? cmd : command, flags | EXECUTE_AS_SHELL);
shell             444 src/execute.c          do_execute (mc_global.shell->path, cmd ? cmd : command, flags | EXECUTE_AS_SHELL);
shell             509 src/execute.c              my_system (EXECUTE_INTERNAL, mc_global.shell->path, NULL);
shell             319 src/subshell/common.c     switch (mc_global.shell->type)
shell             389 src/subshell/common.c         fprintf (stderr, __FILE__ ": unimplemented subshell type %u\r\n", mc_global.shell->type);
shell             418 src/subshell/common.c     switch (mc_global.shell->type)
shell             421 src/subshell/common.c         execl (mc_global.shell->path, "bash", "-rcfile", init_file, (char *) NULL);
shell             427 src/subshell/common.c         execl (mc_global.shell->path, "zsh", "-Z", "-g", (char *) NULL);
shell             434 src/subshell/common.c         execl (mc_global.shell->path, mc_global.shell->path, (char *) NULL);
shell             622 src/subshell/common.c     if (mc_global.shell->type == SHELL_BASH)
shell             666 src/subshell/common.c     if (mc_global.shell->type != SHELL_ZSH)
shell             878 src/subshell/common.c                             if (mc_global.shell->type != SHELL_FISH)
shell            1085 src/subshell/common.c     switch (mc_global.shell->type)
shell            1215 src/subshell/common.c     if (mc_global.shell->type == SHELL_FISH)
shell            1326 src/subshell/common.c         if (mc_global.shell->type == SHELL_NONE)
shell            1361 src/subshell/common.c         if (mc_global.shell->type == SHELL_TCSH)
shell            1391 src/subshell/common.c             (mc_global.shell->type == SHELL_BASH || mc_global.shell->type == SHELL_ZSH
shell            1392 src/subshell/common.c              || mc_global.shell->type == SHELL_FISH))
shell            1502 src/subshell/common.c             if (mc_global.shell->type != SHELL_FISH)
shell            1657 src/subshell/common.c         if (mc_global.shell->type == SHELL_TCSH)
shell            1710 src/subshell/common.c         if (mc_global.shell->type != SHELL_FISH)
shell            1722 src/subshell/common.c     if (mc_global.shell->type == SHELL_FISH)
shell            1767 src/subshell/common.c         if (bPathNotEq && mc_global.shell->type == SHELL_TCSH)
shell            1794 src/subshell/common.c     if (mc_global.shell->type == SHELL_ZSH || mc_global.shell->type == SHELL_FISH)
shell             988 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1042 src/vfs/shell/shell.c                          shell->append ? shell_super->scr_append : shell_super->scr_send,
shell            1100 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1110 src/vfs/shell/shell.c     shell->append = FALSE;
shell            1128 src/vfs/shell/shell.c     shell->got = 0;
shell            1131 src/vfs/shell/shell.c     shell->total = (off_t) strtol (reply_str, NULL, 10);
shell            1133 src/vfs/shell/shell.c     shell->total = (off_t) g_ascii_strtoll (reply_str, NULL, 10);
shell            1145 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1154 src/vfs/shell/shell.c         n = MIN ((off_t) sizeof (buffer), (shell->total - shell->got));
shell            1160 src/vfs/shell/shell.c             shell->got += n;
shell            1176 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1180 src/vfs/shell/shell.c     len = MIN ((size_t) (shell->total - shell->got), len);
shell            1191 src/vfs/shell/shell.c         shell->got += n;
shell            1204 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1206 src/vfs/shell/shell.c     if (shell->total != shell->got)
shell            1234 src/vfs/shell/shell.c             v = vfs_s_select_on_two (VFS_FILE_HANDLER_SUPER (fh)->u.shell.sockr, 0);
shell            1672 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1681 src/vfs/shell/shell.c             shell->append = TRUE;