mirror of
https://github.com/MidnightCommander/source.git
synced 2026-02-02 11:11:55 -08:00
86 lines
13 KiB
HTML
86 lines
13 KiB
HTML
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
|
|
<html xmlns='http://www.w3.org/1999/xhtml'>
|
|
<head>
|
|
<title>shell</title>
|
|
<meta name='robots' content='noindex,nofollow' />
|
|
<meta name='generator' content='GLOBAL-6.6.11' />
|
|
<meta http-equiv='Content-Style-Type' content='text/css' />
|
|
<link rel='stylesheet' type='text/css' href='../style.css' />
|
|
</head>
|
|
<body>
|
|
<pre>
|
|
<span class='curline'><a href='../S/lib--global.c.html#L80'>shell</a> 80 lib/global.c .shell = NULL,</span>
|
|
<span class='curline'><a href='../S/lib--global.h.html#L165'>shell</a> 165 lib/global.h mc_shell_t *shell;</span>
|
|
<span class='curline'><a href='../S/lib--shell.c.html#L286'>shell</a> 286 lib/shell.c mc_global.shell = mc_shell;</span>
|
|
<span class='curline'><a href='../S/lib--shell.c.html#L294'>shell</a> 294 lib/shell.c if (mc_global.shell != NULL)</span>
|
|
<span class='curline'><a href='../S/lib--shell.c.html#L296'>shell</a> 296 lib/shell.c g_free (mc_global.shell->path);</span>
|
|
<span class='curline'><a href='../S/lib--shell.c.html#L297'>shell</a> 297 lib/shell.c MC_PTR_FREE (mc_global.shell);</span>
|
|
<span class='curline'><a href='../S/lib--util.h.html#L226'>shell</a> 226 lib/util.h int my_system (int flags, const char *shell, const char *command);</span>
|
|
<span class='curline'><a href='../S/lib--util.h.html#L227'>shell</a> 227 lib/util.h int my_systeml (int flags, const char *shell, ...);</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L196'>shell</a> 196 lib/utilunix.c my_system_make_arg_array (int flags, const char *shell)</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L203'>shell</a> 203 lib/utilunix.c g_ptr_array_add (args_array, (gpointer) shell);</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L206'>shell</a> 206 lib/utilunix.c else if (shell == NULL || *shell == '\0')</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L212'>shell</a> 212 lib/utilunix.c args_array = str_tokenize (shell);</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L417'>shell</a> 417 lib/utilunix.c my_system (int flags, const char *shell, const char *command)</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L419'>shell</a> 419 lib/utilunix.c return my_systeml (flags, shell, command, NULL);</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L437'>shell</a> 437 lib/utilunix.c my_systeml (int flags, const char *shell, ...)</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L446'>shell</a> 446 lib/utilunix.c va_start (vargs, shell);</span>
|
|
<span class='curline'><a href='../S/lib--utilunix.c.html#L452'>shell</a> 452 lib/utilunix.c status = my_systemv_flags (flags, shell, (char *const *) args_array->pdata);</span>
|
|
<span class='curline'><a href='../S/src--clipboard.c.html#L89'>shell</a> 89 src/clipboard.c my_system (EXECUTE_AS_SHELL, mc_global.shell->path, cmd);</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L68'>shell</a> 68 src/execute.c MC_MOCKABLE void do_execute (const char *shell, const char *command, int flags);</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L69'>shell</a> 69 src/execute.c MC_MOCKABLE void do_executev (const char *shell, int flags, char *const argv[]);</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L294'>shell</a> 294 src/execute.c do_executev (const char *shell, int flags, char *const argv[])</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L327'>shell</a> 327 src/execute.c my_systemv_flags (flags, shell, argv);</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L387'>shell</a> 387 src/execute.c do_execute (const char *shell, const char *command, int flags)</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L395'>shell</a> 395 src/execute.c do_executev (shell, flags, (char *const *) args_array->pdata);</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L439'>shell</a> 439 src/execute.c do_execute (mc_global.shell->path, cmd != NULL ? cmd : command,</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L446'>shell</a> 446 src/execute.c do_execute (mc_global.shell->path, cmd != NULL ? cmd : command, flags | EXECUTE_AS_SHELL);</span>
|
|
<span class='curline'><a href='../S/src--execute.c.html#L511'>shell</a> 511 src/execute.c my_system (EXECUTE_INTERNAL, mc_global.shell->path, NULL);</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L350'>shell</a> 350 src/subshell/common.c switch (mc_global.shell->type)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L460'>shell</a> 460 src/subshell/common.c fprintf (stderr, __FILE__ ": unimplemented subshell type %u\r\n", mc_global.shell->type);</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L489'>shell</a> 489 src/subshell/common.c switch (mc_global.shell->type)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L492'>shell</a> 492 src/subshell/common.c execl (mc_global.shell->path, mc_global.shell->path, "--rcfile", init_file, (char *) NULL);</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L498'>shell</a> 498 src/subshell/common.c execl (mc_global.shell->path, mc_global.shell->path, "-Z", "-g", (char *) NULL);</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L502'>shell</a> 502 src/subshell/common.c execl (mc_global.shell->path, mc_global.shell->path, "--init-command",</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L511'>shell</a> 511 src/subshell/common.c execl (mc_global.shell->path, mc_global.shell->path, (char *) NULL);</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L712'>shell</a> 712 src/subshell/common.c if (mc_global.shell->type == SHELL_FISH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L722'>shell</a> 722 src/subshell/common.c if (mc_global.shell->type == SHELL_BASH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L774'>shell</a> 774 src/subshell/common.c if (mc_global.shell->type != SHELL_ZSH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1047'>shell</a> 1047 src/subshell/common.c if (subshell_initialized && mc_global.shell->type != SHELL_FISH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1284'>shell</a> 1284 src/subshell/common.c switch (mc_global.shell->type)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1342'>shell</a> 1342 src/subshell/common.c fprintf (stderr, "subshell: unknown shell type (%u), aborting!\r\n", mc_global.shell->type);</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1372'>shell</a> 1372 src/subshell/common.c if (mc_global.shell->type == SHELL_BASH || mc_global.shell->type == SHELL_ZSH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1387'>shell</a> 1387 src/subshell/common.c else if (mc_global.shell->type == SHELL_FISH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1403'>shell</a> 1403 src/subshell/common.c else if (mc_global.shell->type == SHELL_TCSH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1576'>shell</a> 1576 src/subshell/common.c if (mc_global.shell->type != SHELL_FISH && !feed_subshell (QUIETLY, TRUE))</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1587'>shell</a> 1587 src/subshell/common.c if (mc_global.shell->type == SHELL_FISH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1635'>shell</a> 1635 src/subshell/common.c if (bPathNotEq && mc_global.shell->type == SHELL_TCSH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1662'>shell</a> 1662 src/subshell/common.c if (mc_global.shell->type == SHELL_ZSH || mc_global.shell->type == SHELL_FISH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1709'>shell</a> 1709 src/subshell/common.c if (mc_global.shell->type == SHELL_NONE)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1714'>shell</a> 1714 src/subshell/common.c if (mc_global.shell->type == SHELL_TCSH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1744'>shell</a> 1744 src/subshell/common.c && (mc_global.shell->type == SHELL_BASH || mc_global.shell->type == SHELL_ZSH</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1745'>shell</a> 1745 src/subshell/common.c || mc_global.shell->type == SHELL_FISH))</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L1901'>shell</a> 1901 src/subshell/common.c if (subshell_initialized && mc_global.shell->type != SHELL_FISH)</span>
|
|
<span class='curline'><a href='../S/src--subshell--common.c.html#L2065'>shell</a> 2065 src/subshell/common.c if (mc_global.shell->type == SHELL_TCSH)</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L966'>shell</a> 966 src/vfs/shell/shell.c shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1019'>shell</a> 1019 src/vfs/shell/shell.c me, super, WAIT_REPLY, shell->append ? shell_super->scr_append : shell_super->scr_send,</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1076'>shell</a> 1076 src/vfs/shell/shell.c shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1086'>shell</a> 1086 src/vfs/shell/shell.c shell->append = FALSE;</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1103'>shell</a> 1103 src/vfs/shell/shell.c shell->got = 0;</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1106'>shell</a> 1106 src/vfs/shell/shell.c shell->total = (off_t) strtol (reply_str, NULL, 10);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1108'>shell</a> 1108 src/vfs/shell/shell.c shell->total = (off_t) g_ascii_strtoll (reply_str, NULL, 10);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1120'>shell</a> 1120 src/vfs/shell/shell.c shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1129'>shell</a> 1129 src/vfs/shell/shell.c n = MIN ((off_t) sizeof (buffer), (shell->total - shell->got));</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1135'>shell</a> 1135 src/vfs/shell/shell.c shell->got += n;</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1151'>shell</a> 1151 src/vfs/shell/shell.c shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1155'>shell</a> 1155 src/vfs/shell/shell.c len = MIN ((size_t) (shell->total - shell->got), len);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1166'>shell</a> 1166 src/vfs/shell/shell.c shell->got += n;</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1179'>shell</a> 1179 src/vfs/shell/shell.c shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1181'>shell</a> 1181 src/vfs/shell/shell.c if (shell->total != shell->got)</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1209'>shell</a> 1209 src/vfs/shell/shell.c v = vfs_s_select_on_two (VFS_FILE_HANDLER_SUPER (fh)->u.shell.sockr, 0);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1610'>shell</a> 1610 src/vfs/shell/shell.c shell_file_handler_t *shell = SHELL_FILE_HANDLER (fh);</span>
|
|
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1619'>shell</a> 1619 src/vfs/shell/shell.c shell->append = TRUE;</span>
|
|
</pre>
|
|
</body>
|
|
</html>
|