command           152 global/global.c static int command;
command           156 global/global.c 	if (command == 0)
command           157 global/global.c 		command = c;
command           158 global/global.c 	else if (command != c)
command           379 global/global.c 		switch (command) {
command           394 global/global.c 		switch (command) {
command           192 gtags-cscope/gtags-cscope.c 	STATIC_STRBUF(command);
command           194 gtags-cscope/gtags-cscope.c 	strbuf_clear(command);
command           195 gtags-cscope/gtags-cscope.c 	strbuf_sprintf(command, "%s -u", global_path);
command           197 gtags-cscope/gtags-cscope.c 		strbuf_putc(command, 'v');
command           198 gtags-cscope/gtags-cscope.c 		fprintf(stderr, "gscope: %s\n", strbuf_value(command));
command           200 gtags-cscope/gtags-cscope.c 	system(strbuf_value(command));
command           323 gtags-cscope/gtags-cscope.c 	STATIC_STRBUF(command);
command           328 gtags-cscope/gtags-cscope.c 	strbuf_clear(command);
command           329 gtags-cscope/gtags-cscope.c 	strbuf_puts(command, global_path);
command           330 gtags-cscope/gtags-cscope.c 	strbuf_puts(command, " --result=cscope");
command           332 gtags-cscope/gtags-cscope.c 		strbuf_putc(command, ' ');
command           333 gtags-cscope/gtags-cscope.c 		strbuf_putc(command, '-');
command           335 gtags-cscope/gtags-cscope.c 			strbuf_putc(command, opt);
command           337 gtags-cscope/gtags-cscope.c 			strbuf_putc(command, 'i');
command           339 gtags-cscope/gtags-cscope.c 	strbuf_putc(command, ' ');
command           340 gtags-cscope/gtags-cscope.c 	strbuf_putc(command, QUOTE);
command           341 gtags-cscope/gtags-cscope.c 	strbuf_puts(command, arg);
command           342 gtags-cscope/gtags-cscope.c 	strbuf_putc(command, QUOTE);
command           343 gtags-cscope/gtags-cscope.c 	if (!(ip = popen(strbuf_value(command), "r")))
command           344 gtags-cscope/gtags-cscope.c 		die("cannot execute '%s'.", strbuf_value(command));
command           346 gtags-cscope/gtags-cscope.c 		fprintf(stderr, "gscope: %s\n", strbuf_value(command));
command            59 htags/defineindex.c 	char command[1024], buf[1024], alpha[32], alpha_f[32], *_;
command            99 htags/defineindex.c 	snprintf(command, sizeof(command), "%s -c", global_path);
command           100 htags/defineindex.c 	if ((TAGS = popen(command, "r")) == NULL)
command           260 htags/defineindex.c 		die("'%s' failed.", command);
command            54 htags/dupindex.c 	STRBUF *command = strbuf_open(0);
command            79 htags/dupindex.c 		strbuf_reset(command);
command            80 htags/dupindex.c 		strbuf_sprintf(command, "%s -x%s --nofilter=path", global_path, option);
command            85 htags/dupindex.c 			strbuf_puts(command, " --nosource");
command            87 htags/dupindex.c 				strbuf_puts(command, " --nofilter=sort");
command            89 htags/dupindex.c 		strbuf_puts(command, " \".*\"");
command            90 htags/dupindex.c 		if ((ip = popen(strbuf_value(command), "r")) == NULL)
command            91 htags/dupindex.c 			die("cannot execute command '%s'.", strbuf_value(command));
command           166 htags/dupindex.c 			die("'%s' failed.", strbuf_value(command));
command           194 htags/dupindex.c 	strbuf_close(command);
command           746 htags/fileindex.c 	char command[MAXFILLEN];
command           758 htags/fileindex.c 	snprintf(command, sizeof(command), "%s -gnx \"^[ \t]*(#[ \t]*(import|include)|include[ \t]*\\()\"", global_path);
command           759 htags/fileindex.c 	if ((PIPE = popen(command, "r")) == NULL)
command          1309 htags/htags.c  	char command[MAXFILLEN];
command          1320 htags/htags.c  	snprintf(command, sizeof(command), "%s --config", gtags_path);
command          1321 htags/htags.c  	if ((ip = popen(command, "r")) == NULL)
command          1322 htags/htags.c  		die("cannot execute '%s'.", command);
command          1336 htags/htags.c  		die("cannot execute '%s'.", command);
command            89 libutil/fileop.c 	char command[MAXFILLEN+1];
command            92 libutil/fileop.c 		snprintf(command, sizeof(command), "gzip -c >%s", path);
command            93 libutil/fileop.c 		fp = popen(command, "w");
command           104 libutil/fileop.c 		strlimcpy(fileop->command, command, sizeof(fileop->command));
command           129 libutil/fileop.c 			die("terminated abnormally. '%s'", fileop->command);
command            37 libutil/fileop.h 	char command[MAXFILLEN+1];
command            55 libutil/usable.c usable(const char *command)
command            66 libutil/usable.c 	if (isabspath(command) || locatestring(command, "./", MATCH_AT_FIRST)
command            67 libutil/usable.c 		|| locatestring(command, "../", MATCH_AT_FIRST)) {
command            68 libutil/usable.c 		if (test("fx", command)) {
command            69 libutil/usable.c 			strlimcpy(path, command, sizeof(path));
command            77 libutil/usable.c 	if (test("fx", makepath(BINDIR, command, NULL))) {
command            78 libutil/usable.c 		strlimcpy(path, makepath(BINDIR, command, NULL), sizeof(path));
command            94 libutil/usable.c 		if (test("fx", makepath(dir, command, NULL))) {
command            95 libutil/usable.c 			strlimcpy(path, makepath(dir, command, NULL), sizeof(path));
command           100 libutil/usable.c 			if (test("f", makepath(dir, command, suffix[i]))) {
command           101 libutil/usable.c 				strlimcpy(path, makepath(dir, command, suffix[i]), sizeof(path));
command           194 libutil/xargs.c 	meta_p = locatestring(xp->command, "%s", MATCH_FIRST);
command           196 libutil/xargs.c 		strbuf_nputs(comline, xp->command, meta_p - xp->command);
command           199 libutil/xargs.c 		strbuf_puts(comline, xp->command);
command           259 libutil/xargs.c xargs_open_generic(const char *command, int max_args)
command           264 libutil/xargs.c 	xp->command = check_strdup(command);
command           312 libutil/xargs.c xargs_open_with_file(const char *command, int max_args, FILE *ip)
command           314 libutil/xargs.c 	XARGS *xp = xargs_open_generic(command, max_args);
command           336 libutil/xargs.c xargs_open_with_argv(const char *command, int max_args, int argc, char **argv)
command           338 libutil/xargs.c 	XARGS *xp = xargs_open_generic(command, max_args);
command           358 libutil/xargs.c xargs_open_with_strbuf(const char *command, int max_args, STRBUF *sb)
command           360 libutil/xargs.c 	XARGS *xp = xargs_open_generic(command, max_args);
command           379 libutil/xargs.c xargs_open_with_find(const char *command, int max_args)
command           381 libutil/xargs.c 	XARGS *xp = xargs_open_generic(command, max_args);
command           454 libutil/xargs.c 	free(xp->command);
command            46 libutil/xargs.h 	char *command;