shell              85 lib/global.c       .shell = NULL,
shell             160 lib/global.h       mc_shell_t *shell;
shell             287 lib/shell.c        mc_global.shell = mc_shell;
shell             295 lib/shell.c        if (mc_global.shell != NULL)
shell             297 lib/shell.c            g_free (mc_global.shell->path);
shell             298 lib/shell.c            MC_PTR_FREE (mc_global.shell);
shell             232 lib/util.h     int my_system (int flags, const char *shell, const char *command);
shell             233 lib/util.h     int my_systeml (int flags, const char *shell, ...);
shell             199 lib/utilunix.c my_system_make_arg_array (int flags, const char *shell)
shell             206 lib/utilunix.c         g_ptr_array_add (args_array, (gpointer) shell);
shell             209 lib/utilunix.c     else if (shell == NULL || *shell == '\0')
shell             215 lib/utilunix.c         args_array = str_tokenize (shell);
shell             420 lib/utilunix.c my_system (int flags, const char *shell, const char *command)
shell             422 lib/utilunix.c     return my_systeml (flags, shell, command, NULL);
shell             440 lib/utilunix.c my_systeml (int flags, const char *shell, ...)
shell             449 lib/utilunix.c     va_start (vargs, shell);
shell             455 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  MC_MOCKABLE void do_execute (const char *shell, const char *command, int flags);
shell              69 src/execute.c  MC_MOCKABLE void do_executev (const char *shell, int flags, char *const argv[]);
shell             294 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             387 src/execute.c  do_execute (const char *shell, const char *command, int flags)
shell             395 src/execute.c      do_executev (shell, flags, (char *const *) args_array->pdata);
shell             439 src/execute.c              do_execute (mc_global.shell->path, cmd != NULL ? cmd : command,
shell             446 src/execute.c          do_execute (mc_global.shell->path, cmd != NULL ? cmd : command, flags | EXECUTE_AS_SHELL);
shell             511 src/execute.c              my_system (EXECUTE_INTERNAL, mc_global.shell->path, NULL);
shell             320 src/subshell/common.c     switch (mc_global.shell->type)
shell             430 src/subshell/common.c         fprintf (stderr, __FILE__ ": unimplemented subshell type %u\r\n", mc_global.shell->type);
shell             459 src/subshell/common.c     switch (mc_global.shell->type)
shell             462 src/subshell/common.c         execl (mc_global.shell->path, mc_global.shell->path, "-rcfile", init_file, (char *) NULL);
shell             468 src/subshell/common.c         execl (mc_global.shell->path, mc_global.shell->path, "-Z", "-g", (char *) NULL);
shell             472 src/subshell/common.c         execl (mc_global.shell->path, mc_global.shell->path, "--init-command",
shell             481 src/subshell/common.c         execl (mc_global.shell->path, mc_global.shell->path, (char *) NULL);
shell             669 src/subshell/common.c     if (mc_global.shell->type == SHELL_BASH)
shell             713 src/subshell/common.c     if (mc_global.shell->type != SHELL_ZSH)
shell             929 src/subshell/common.c                             if (mc_global.shell->type != SHELL_FISH)
shell            1185 src/subshell/common.c     switch (mc_global.shell->type)
shell            1296 src/subshell/common.c     if (mc_global.shell->type == SHELL_FISH)
shell            1406 src/subshell/common.c         if (mc_global.shell->type != SHELL_FISH)
shell            1418 src/subshell/common.c     if (mc_global.shell->type == SHELL_FISH)
shell            1463 src/subshell/common.c         if (bPathNotEq && mc_global.shell->type == SHELL_TCSH)
shell            1490 src/subshell/common.c     if (mc_global.shell->type == SHELL_ZSH || mc_global.shell->type == SHELL_FISH)
shell            1537 src/subshell/common.c         if (mc_global.shell->type == SHELL_NONE)
shell            1572 src/subshell/common.c         if (mc_global.shell->type == SHELL_TCSH)
shell            1602 src/subshell/common.c             && (mc_global.shell->type == SHELL_BASH || mc_global.shell->type == SHELL_ZSH
shell            1603 src/subshell/common.c                 || mc_global.shell->type == SHELL_FISH))
shell            1714 src/subshell/common.c             if (mc_global.shell->type != SHELL_FISH)
shell            1869 src/subshell/common.c         if (mc_global.shell->type == SHELL_TCSH)
shell             969 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1022 src/vfs/shell/shell.c         me, super, WAIT_REPLY, shell->append ? shell_super->scr_append : shell_super->scr_send,
shell            1079 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1089 src/vfs/shell/shell.c     shell->append = FALSE;
shell            1106 src/vfs/shell/shell.c     shell->got = 0;
shell            1109 src/vfs/shell/shell.c     shell->total = (off_t) strtol (reply_str, NULL, 10);
shell            1111 src/vfs/shell/shell.c     shell->total = (off_t) g_ascii_strtoll (reply_str, NULL, 10);
shell            1123 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1132 src/vfs/shell/shell.c         n = MIN ((off_t) sizeof (buffer), (shell->total - shell->got));
shell            1138 src/vfs/shell/shell.c             shell->got += n;
shell            1154 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1158 src/vfs/shell/shell.c     len = MIN ((size_t) (shell->total - shell->got), len);
shell            1169 src/vfs/shell/shell.c         shell->got += n;
shell            1182 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1184 src/vfs/shell/shell.c     if (shell->total != shell->got)
shell            1212 src/vfs/shell/shell.c             v = vfs_s_select_on_two (VFS_FILE_HANDLER_SUPER (fh)->u.shell.sockr, 0);
shell            1613 src/vfs/shell/shell.c     shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);
shell            1622 src/vfs/shell/shell.c             shell->append = TRUE;