/src/sys/arch/i386/stand/efiboot/ |
efidelay.c | 35 CHAR16 errmsg[128]; local in function:delay 41 StatusToString(errmsg, status); 43 rv = ucs2_to_utf8(errmsg, &uerrmsg);
|
/src/sys/arch/atari/stand/tostools/libtos/ |
error.c | 41 static void errmsg PROTO((int, char *, va_list)); 64 errmsg(err, frm, args); 74 errmsg(err, frm, args); 81 errmsg(int err, char *frm, va_list args) function in typeref:typename:void
|
/src/usr.bin/cmp/ |
extern.h | 42 __dead void errmsg(const char *, off_t, off_t);
|
misc.c | 50 errmsg(const char *file, off_t byte, off_t line) function in typeref:typename:void
|
special.c | 98 errmsg(file1, byte, line); 100 errmsg(file2, byte, line);
|
/src/bin/ed/ |
re.c | 44 char errmsg[MAXPATHLEN + 40] = ""; variable in typeref:typename:char[] 52 vsnprintf(errmsg, sizeof(errmsg), fmt, ap); 85 regerror(n, expr, errmsg, sizeof errmsg);
|
main.c | 195 fprintf(stderr, "%s\n", errmsg); 211 lineno, errmsg); 249 lineno, errmsg); 259 lineno, errmsg); 261 fprintf(stderr, "%s\n", errmsg); 270 lineno, errmsg); 581 if (*errmsg) fprintf(stderr, "%s\n", errmsg); 589 if ((garrulous = 1 - garrulous) && *errmsg) 590 fprintf(stderr, "%s\n", errmsg); [all...] |
/src/sys/arch/atari/stand/tostools/loadbsd/ |
loadbsd.c | 74 char *errmsg; local in function:main 157 if ((err = elf_load(fd, od, &errmsg, !N_flag)) == -1) { 161 if (err = aout_load(fd, od, &errmsg, !N_flag)) { 163 errmsg = "Not an ELF or NMAGIC file '%s'"; 164 fatal(-1, errmsg, kname); 169 fatal(-1, errmsg);
|
/src/sys/arch/atari/stand/bootxxx/ |
bootxxx.c | 53 char *errmsg; local in function:bootxxx 77 if (elf_load(fd, od, &errmsg, 1) != 0)
|
/src/tests/lib/librumphijack/ |
h_cwd.c | 58 dochdir(const char *path, const char *errmsg) 62 err(EXIT_FAILURE, "%s", errmsg); 66 dofchdir(const char *path, const char *errmsg) 72 err(EXIT_FAILURE, "open %s", errmsg); 74 err(EXIT_FAILURE, "fchdir %s", errmsg);
|
/src/sys/kern/ |
makesyscalls.sh | 86 errmsg() function 103 *[!0-9]*) errmsg "Non numeric value for nsysent:" "${nsysent}";; 106 *[!0-9]*) errmsg "Non numeric value for maxsysargs:" "${maxsysargs}";;
|
/src/usr.sbin/makefs/v7fs/ |
v7fs_populate.c | 137 const char *errmsg; local in function:file_copy 145 errmsg = "inode load"; 150 errmsg = "hard link"; 158 errmsg = "file allocate"; 162 errmsg = "datablock expand"; 169 errmsg = "source file"; 176 errmsg = "data copy"; 188 warn("%s %s", node->name, errmsg);
|
/src/lib/libradius/ |
radlib_private.h | 79 char errmsg[ERRSIZE]; /* Most recent error message */ member in struct:rad_handle
|
/src/usr.sbin/makemandb/ |
apropos-utils.h | 93 char **errmsg; // buffer for storing the error msg member in struct:query_args
|
apropos.c | 159 char *errmsg = NULL; local in function:main 246 args.errmsg = &errmsg; 269 if (errmsg) { 270 warnx("%s", errmsg); 271 free(errmsg);
|
makemandb.c | 299 char *errmsg; local in function:main 371 sqlite3_exec(db, "PRAGMA synchronous = 0", NULL, NULL, &errmsg); 372 if (errmsg != NULL) { 373 warnx("%s", errmsg); 374 free(errmsg); 380 &errmsg); 381 if (errmsg != NULL) { 382 warnx("%s", errmsg); 383 free(errmsg); 389 sqlite3_exec(db, "BEGIN", NULL, NULL, &errmsg); 709 char *errmsg = NULL; local in function:update_db 1470 char *errmsg = NULL; local in function:insert_into_db 1862 char *errmsg = NULL; local in function:optimize [all...] |
apropos-utils.c | 183 char *errmsg = NULL; local in function:create_db 195 sqlite3_exec(db, schemasql, NULL, NULL, &errmsg); 196 if (errmsg != NULL) 218 sqlite3_exec(db, sqlstr, NULL, NULL, &errmsg); 219 if (errmsg != NULL) 229 sqlite3_exec(db, sqlstr, NULL, NULL, &errmsg); 230 if (errmsg != NULL) 235 warnx("%s", errmsg); 236 free(errmsg); 751 *args->errmsg = estrdup("malloc failed") [all...] |
/src/sys/arch/hppa/dev/ |
power.c | 261 const char *errmsg; local in function:pwr_sw_init 273 errmsg = "Can't create sysctl machdep.power_switch (or children)\n"; 304 errmsg = "Can't alloc sysmon power switch.\n"; 306 errmsg = "Can't register power switch with sysmon.\n"; 326 aprint_error_dev(sc->sc_dev, errmsg);
|
/src/lib/libutil/ |
getmntopts.c | 54 static const char errmsg[] = "-o %s: option not supported"; variable in typeref:typename:const char[] 74 errx(1, errmsg, opt); 185 errx(1, errmsg, opt);
|
/src/usr.sbin/rbootd/ |
rbootd.c | 144 * (in `errmsg') which will be displayed here. 147 char *errmsg; local in function:main 149 if ((IntfName = BpfGetIntfName(&errmsg)) == NULL) { 152 syslog(LOG_ERR, "%s", errmsg);
|
bpf.c | 209 ** errmsg - if no network interface found, *errmsg explains why. 218 BpfGetIntfName(char **errmsg) 226 if (errmsg != NULL) 227 *errmsg = errbuf;
|
/src/sbin/fsck_ffs/ |
pass2.c | 331 const char *errmsg; local in function:pass2check 388 errmsg = "ADD '.' ENTRY"; 394 errmsg = "REPLACE WITH '.'"; 396 if (reply(errmsg) == 0) 403 if (reply(errmsg) == 0) 464 errmsg = "ADD '..' ENTRY"; 470 errmsg = "REPLACE WITH '..'"; 472 if (reply(errmsg) == 0) { 488 if (reply(errmsg) == 0) { 576 errmsg = "DUP/BAD" [all...] |
/src/ |
build.sh | 44 errmsg= # error message, if not empty 71 if test -z "$errmsg" 77 errmsg='Shell does not support "!".' 83 if test -z "$errmsg" 89 errmsg='Shell does not support functions.' 101 if test -z "$errmsg" 107 errmsg='Shell does not support the "local" keyword in functions.' 116 if test -z "$errmsg" 124 errmsg='Shell does not support "${var%suffix}" or "${var#prefix}".' 132 if test -z "$errmsg" [all...] |
/src/bin/sh/ |
error.h | 40 * Types of operations (passed to the errmsg routine). 100 const char *errmsg(int, int);
|
/src/sys/arch/sparc/stand/ofwboot/ |
ofdev.c | 440 char *errmsg = NULL, *pp = NULL, savedpart = 0; local in function:devopen 545 || (errmsg = getdisklabel(b.buf, &label))) { 546 if (errmsg) { 548 errmsg)); 551 errmsg = search_label(&ofdev, 0, b.buf, &label, 0); 552 if (errmsg) { 553 printf("devopen: search_label returned %s\n", errmsg);
|