HomeSort by: relevance | last modified time | path
    Searched refs:program_name (Results 1 - 25 of 281) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/groff/dist/src/libs/libgroff/
progname.c 3 const char *program_name = 0; variable
assert.cpp 26 extern "C" const char *program_name; variable
30 if (program_name != 0)
31 fprintf(stderr, "%s: ", program_name);
new.cpp 31 extern "C" const char *program_name; variable
49 if (program_name) {
50 ewrite(program_name);
  /src/external/gpl2/xcvs/dist/lib/
progname.c 1 /* Declare program_name for support functions compiled with the getdate.y test
27 char *program_name = "getdate"; variable
  /src/external/bsd/pdisk/dist/
errors.c 63 char *program_name; variable
83 if ((program_name = strrchr(argv[0], '/')) != (char *)NULL) {
84 program_name++;
86 program_name = argv[0];
89 program_name = "pdisk";
97 printf("\t%s [-h|--help]\n", program_name);
98 printf("\t%s [-v|--version]\n", program_name);
100 printf("\t%s [-l|--list [name]] [...]\n", program_name);
102 printf("\t%s [-l|--list] name [...]\n", program_name);
104 printf("\t%s [-r|--readonly] name ...\n", program_name);
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
error-progname.c 30 /* Indicates whether errors and warnings get prefixed with program_name.
34 /* Print program_name prefix on stderr if and only if error_with_progname
40 fprintf (stderr, "%s: ", program_name);
progname.c 31 const char *program_name = NULL; variable
33 /* Set program_name, based on argv[0]. */
49 program_name = argv0;
progname.h 33 extern DLL_VARIABLE const char *program_name;
35 /* Set program_name, based on argv[0]. */
40 /* Set program_name, based on argv[0], and original installation prefix and
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
error-progname.c 30 /* Indicates whether errors and warnings get prefixed with program_name.
34 /* Print program_name prefix on stderr if and only if error_with_progname
40 fprintf (stderr, "%s: ", program_name);
progname.c 31 const char *program_name = NULL; variable
33 /* Set program_name, based on argv[0]. */
49 program_name = argv0;
progname.h 33 extern DLL_VARIABLE const char *program_name;
35 /* Set program_name, based on argv[0]. */
40 /* Set program_name, based on argv[0], and original installation prefix and
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
error-progname.c 30 /* Indicates whether errors and warnings get prefixed with program_name.
34 /* Print program_name prefix on stderr if and only if error_with_progname
40 fprintf (stderr, "%s: ", program_name);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
threads-after-exec.c 23 static char *program_name; variable
30 if (execl (program_name, program_name, "1", NULL) == -1)
50 program_name = argv[0];
vfork-follow-child-exec.c 24 static char *program_name; variable
39 execl (program_name, program_name, "1", NULL);
61 program_name = argv[0];
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
threads-after-exec.c 23 static char *program_name; variable
30 if (execl (program_name, program_name, "1", NULL) == -1)
50 program_name = argv[0];
vfork-follow-child-exec.c 24 static char *program_name; variable
39 execl (program_name, program_name, "1", NULL);
61 program_name = argv[0];
  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
progname.c 31 const char *program_name = NULL; variable
33 /* Set program_name, based on argv[0]. */
49 program_name = argv0;
progname.h 33 extern DLL_VARIABLE const char *program_name;
35 /* Set program_name, based on argv[0]. */
40 /* Set program_name, based on argv[0], and original installation prefix and
  /src/external/gpl2/gettext/dist/gettext-tools/woe32dll/
gettextlib-exports.c 27 VARIABLE(program_name)
  /src/external/bsd/libpcap/dist/testprogs/
can_set_rfmon_test.c 39 static const char *program_name; variable
53 program_name = cp + 1;
55 program_name = argv[0];
58 fprintf(stderr, "Usage: %s <device>\n", program_name);
84 (void)fprintf(stderr, "%s: ", program_name);
  /src/external/gpl3/gdb.old/dist/libiberty/testsuite/
demangler-fuzzer.c 30 static char *program_name; variable
37 fprintf (fp, "Usage: %s [OPTION]...\n", program_name);
58 program_name = argv[0];
88 printf ("%s: seed = %d\n", program_name, seed);
106 printf ("%s: successfully demangled %d symbols\n", program_name, count);
  /src/external/gpl3/gdb/dist/libiberty/testsuite/
demangler-fuzzer.c 30 static char *program_name; variable
37 fprintf (fp, "Usage: %s [OPTION]...\n", program_name);
58 program_name = argv[0];
88 printf ("%s: seed = %d\n", program_name, seed);
106 printf ("%s: successfully demangled %d symbols\n", program_name, count);
  /src/sys/arch/atari/stand/tostools/libtos/
error.c 40 const char *program_name; variable
52 program_name = p ? ++p : arg0;
80 extern const char *program_name;
82 eprintf("%s: ", program_name);
  /src/external/bsd/tcpdump/dist/
interface.h 56 extern char *program_name; /* used to generate self-identifying messages */
  /src/external/gpl3/binutils/dist/binutils/
arsup.c 155 program_name, strerror(errno));
166 program_name, temp_name);
183 program_name, name);
192 program_name, name);
231 fprintf (stderr, _("%s: no output archive specified yet\n"), program_name);
251 fprintf (stderr, _("%s: no open output archive\n"), program_name);
264 program_name, list->name);
290 fprintf (stderr, _("%s: no open output archive\n"), program_name);
318 program_name, list->name);
332 fprintf (stderr, _("%s: no open output archive\n"), program_name);
    [all...]

Completed in 19 milliseconds

1 2 3 4 5 6 7 8 91011>>