Home
last modified time | relevance | path

Searched refs:cmd (Results 201 – 225 of 286424) sorted by path

12345678910>>...11457

/dports/archivers/dpkg/dpkg-1.19.7/lib/dpkg/
H A Dcommand.h47 void command_init(struct command *cmd, const char *filename, const char *name);
48 void command_destroy(struct command *cmd);
50 void command_add_arg(struct command *cmd, const char *arg);
51 void command_add_argl(struct command *cmd, const char **argv);
52 void command_add_argv(struct command *cmd, va_list args);
53 void command_add_args(struct command *cmd, ...) DPKG_ATTR_SENTINEL;
55 void command_exec(struct command *cmd) DPKG_ATTR_NORET;
57 void command_shell(const char *cmd, const char *name) DPKG_ATTR_NORET;
H A Dcompress.c58 struct command cmd; in fd_fd_filter() local
76 command_init(&cmd, file, desc); in fd_fd_filter()
77 command_add_arg(&cmd, file); in fd_fd_filter()
79 command_add_argv(&cmd, args); in fd_fd_filter()
82 command_exec(&cmd); in fd_fd_filter()
H A Doptions-parsers.c42 dpkg_options_parse_pkgname(const struct cmdinfo *cmd, const char *name) in dpkg_options_parse_pkgname() argument
50 cmd->olong, name, err.str); in dpkg_options_parse_pkgname()
H A Doptions.c283 dpkg_options_parse_arg_int(const struct cmdinfo *cmd, const char *str) in dpkg_options_parse_arg_int() argument
291 if (cmd->olong) in dpkg_options_parse_arg_int()
292 badusage(_("invalid integer for --%s: '%.250s'"), cmd->olong, str); in dpkg_options_parse_arg_int()
294 badusage(_("invalid integer for -%c: '%.250s'"), cmd->oshort, str); in dpkg_options_parse_arg_int()
H A Doptions.h67 long dpkg_options_parse_arg_int(const struct cmdinfo *cmd, const char *str);
70 dpkg_options_parse_pkgname(const struct cmdinfo *cmd, const char *name);
H A Dtriglib.c688 char linebuf[MAXTRIGDIRECTIVE], *cmd, *spc, *eol; in trig_parse_ci() local
700 for (cmd = linebuf; c_iswhite(*cmd); cmd++) ; in trig_parse_ci()
701 if (*cmd == '#') in trig_parse_ci()
704 if (eol == cmd) in trig_parse_ci()
708 for (spc = cmd; *spc && !c_iswhite(*spc); spc++) ; in trig_parse_ci()
714 if (strcmp(cmd, "interest") == 0 || in trig_parse_ci()
715 strcmp(cmd, "interest-await") == 0) { in trig_parse_ci()
717 } else if (strcmp(cmd, "interest-noawait") == 0) { in trig_parse_ci()
719 } else if (strcmp(cmd, "activate") == 0 || in trig_parse_ci()
720 strcmp(cmd, "activate-await") == 0) { in trig_parse_ci()
[all …]
/dports/archivers/dpkg/dpkg-1.19.7/lib/dpkg/t/
H A Dt-command.c38 struct command cmd; in test_command_init() local
46 command_destroy(&cmd); in test_command_init()
58 command_destroy(&cmd); in test_command_init()
66 command_destroy(&cmd); in test_command_init()
72 struct command cmd; in test_command_grow_argv() local
87 command_destroy(&cmd); in test_command_grow_argv()
93 struct command cmd; in test_command_add_arg() local
121 struct command cmd; in test_command_add_argl() local
147 struct command cmd; in test_command_add_args() local
167 struct command cmd; in test_command_exec() local
[all …]
/dports/archivers/dpkg/dpkg-1.19.7/m4/
H A Dlibtool.m42582 lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
/dports/archivers/dpkg/dpkg-1.19.7/scripts/Dpkg/
H A DErrorHandling.pm227 my (@cmd) = @_;
229 print { *STDERR } report_pretty(" @cmd\n", report_color(REPORT_COMMAND));
H A DPath.pm214 my $cmd = shift;
216 return if not $cmd;
217 if ($cmd =~ m{/}) {
218 return "$cmd" if -x "$cmd";
221 return "$dir/$cmd" if -x "$dir/$cmd";
/dports/archivers/dpkg/dpkg-1.19.7/scripts/
H A Ddpkg-buildpackage.pl772 my @cmd;
773 push @cmd, @rootcommand if rules_requires_root($target);
774 push @cmd, @debian_rules, $target;
776 run_cmd(@cmd);
781 my $cmd = $hook{$name};
783 return if not $cmd;
807 $cmd =~ s/\%(.)/$subst_hook_var->($1)/eg;
809 run_cmd($cmd);
/dports/archivers/dpkg/dpkg-1.19.7/scripts/t/Dpkg_Changelog/
H A Dshadow1555 - Sorry, but su (all su's) invoke the shell with -c "cmd". This is
/dports/archivers/dpkg/dpkg-1.19.7/scripts/t/
H A Dmk.t54 my (@cmd) = @_;
57 open my $cmd_fh, '-|', @cmd or subprocerr($cmd[0]);
63 close $cmd_fh or subprocerr($cmd[0]);
/dports/archivers/dpkg/dpkg-1.19.7/src/
H A Dconfigure.c209 struct command cmd; in show_diff() local
211 command_init(&cmd, DIFF, _("conffile difference visualizer")); in show_diff()
212 command_add_arg(&cmd, DIFF); in show_diff()
213 command_add_arg(&cmd, "-Nu"); in show_diff()
214 command_add_arg(&cmd, old); in show_diff()
215 command_add_arg(&cmd, new); in show_diff()
216 command_exec(&cmd); in show_diff()
H A Dmain.c616 struct command cmd; in execbackend() local
618 command_init(&cmd, cipaction->arg_ptr, NULL); in execbackend()
619 command_add_arg(&cmd, cipaction->arg_ptr); in execbackend()
620 command_add_arg(&cmd, str_fmt("--%s", cipaction->olong)); in execbackend()
624 command_add_arg(&cmd, "--"); in execbackend()
625 command_add_argl(&cmd, (const char **)argv); in execbackend()
627 command_exec(&cmd); in execbackend()
H A Dscript.c144 return cmd->filename; in maintscript_pre_exec()
199 cmd->filename = cmd->argv[0] = maintscript_pre_exec(cmd); in maintscript_exec()
205 command_exec(cmd); in maintscript_exec()
220 struct command cmd; in vmaintscript_installed() local
234 command_destroy(&cmd); in vmaintscript_installed()
247 command_destroy(&cmd); in vmaintscript_installed()
294 struct command cmd; in maintscript_new() local
323 command_destroy(&cmd); in maintscript_new()
336 struct command cmd; in maintscript_fallback() local
375 command_destroy(&cmd); in maintscript_fallback()
[all …]
/dports/archivers/draco/googletest/googlemock/test/
H A Dgmock_output_test.py137 def GetShellCommandOutput(cmd): argument
140 return gmock_test_utils.Subprocess(cmd, capture_stderr=False).output
143 def GetNormalizedCommandOutputAndLeakyTests(cmd): argument
152 return GetNormalizedOutputAndLeakyTests(GetShellCommandOutput(cmd))
/dports/archivers/engrampa/engrampa-1.26.0/caja/
H A Dcaja-engrampa.c44 GString *cmd; in extract_to_callback() local
50 cmd = g_string_new ("engrampa"); in extract_to_callback()
64 g_print ("EXEC: %s\n", cmd->str); in extract_to_callback()
67 g_spawn_command_line_async (cmd->str, NULL); in extract_to_callback()
69 g_string_free (cmd, TRUE); in extract_to_callback()
80 GString *cmd; in extract_here_callback() local
100 g_print ("EXEC: %s\n", cmd->str); in extract_here_callback()
103 g_string_free (cmd, TRUE); in extract_here_callback()
114 GString *cmd; in add_callback() local
121 cmd = g_string_new ("engrampa"); in add_callback()
[all …]
/dports/archivers/engrampa/engrampa-1.26.0/
H A Dcompile68 file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
H A Dltmain.sh2587 for cmd in $1; do
2589 eval cmd=\"$cmd\"
3839 cmd=$nonopt
3840 test -z "$cmd" && \
3941 $ECHO "$cmd$args"
3960 exec_cmd=\$cmd$args
4022 '"$cmd"'"'
9664 eval cmd=\"$cmd1\"
9665 func_len " $cmd"
9938 func_quote_for_expand "$cmd"
[all …]
/dports/archivers/engrampa/engrampa-1.26.0/m4/
H A Dlibtool.m42583 lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
/dports/archivers/engrampa/engrampa-1.26.0/mate-submodules/libegg/
H A Deggsmclient-xsmp.c1088 GPtrArray *cmd; in generate_command() local
1091 cmd = g_ptr_array_new (); in generate_command()
1092 g_ptr_array_add (cmd, restart_command[0]); in generate_command()
1096 g_ptr_array_add (cmd, (char *)"--sm-client-id"); in generate_command()
1097 g_ptr_array_add (cmd, (char *)client_id); in generate_command()
1102 g_ptr_array_add (cmd, (char *)"--sm-client-state-file"); in generate_command()
1103 g_ptr_array_add (cmd, (char *)state_file); in generate_command()
1107 g_ptr_array_add (cmd, restart_command[i]); in generate_command()
1109 return cmd; in generate_command()
/dports/archivers/engrampa/engrampa-1.26.0/src/
H A Dfr-command-cpio.c197 GString *cmd; in fr_command_cpio_extract() local
204 cmd = g_string_new ("cpio -idu --no-absolute-filenames "); in fr_command_cpio_extract()
213 g_string_append (cmd, filename); in fr_command_cpio_extract()
214 g_string_append (cmd, " "); in fr_command_cpio_extract()
218 g_string_append (cmd, " < "); in fr_command_cpio_extract()
219 g_string_append (cmd, comm->e_filename); in fr_command_cpio_extract()
220 fr_process_add_arg (comm->process, cmd->str); in fr_command_cpio_extract()
221 g_string_free (cmd, TRUE); in fr_command_cpio_extract()
H A Dfr-command-rpm.c206 GString *cmd; in fr_command_rpm_extract() local
213 cmd = g_string_new ("rpm2cpio < "); in fr_command_rpm_extract()
214 g_string_append (cmd, comm->e_filename); in fr_command_rpm_extract()
215 g_string_append (cmd, " | cpio -idu"); in fr_command_rpm_extract()
217 g_string_append (cmd, " "); in fr_command_rpm_extract()
219 g_string_append (cmd, filename); in fr_command_rpm_extract()
222 fr_process_add_arg (comm->process, cmd->str); in fr_command_rpm_extract()
223 g_string_free (cmd, TRUE); in fr_command_rpm_extract()
/dports/archivers/file-roller/file-roller-3.40.0/nautilus/
H A Dnautilus-fileroller.c43 GString *cmd; in extract_to_callback() local
51 cmd = g_string_new ("file-roller"); in extract_to_callback()
52 g_string_append_printf (cmd, in extract_to_callback()
58 g_print ("EXEC: %s\n", cmd->str); in extract_to_callback()
61 g_spawn_command_line_async (cmd->str, NULL); in extract_to_callback()
63 g_string_free (cmd, TRUE); in extract_to_callback()
76 GString *cmd; in extract_here_callback() local
83 cmd = g_string_new ("file-roller"); in extract_here_callback()
97 g_spawn_command_line_async (cmd->str, NULL); in extract_here_callback()
100 g_print ("EXEC: %s\n", cmd->str); in extract_here_callback()
[all …]

12345678910>>...11457