Searched refs:msg (Results 1 - 25 of 1412) sorted by path

1234567891011>>

/illumos-gate/usr/src/
H A DMakefile117 @cd msg; pwd; $(MAKE) _msg
140 @cd msg; pwd; $(MAKE) clobber
/illumos-gate/usr/src/boot/lib/libstand/
H A Dgzipfs.c217 printf("zf_open: inflateInit returned %d : %s\n", error, zf->zf_zstream.msg);
266 printf("inflate: %s\n", zf->zf_zstream.msg);
H A Dstrerror.c40 char *msg; member in struct:__anon98
79 static char msg[32]; local
82 for (i = 0; errtab[i].msg != NULL; i++)
84 return(errtab[i].msg);
85 sprintf(msg, "unknown error (%d)", err);
86 return(msg);
H A Dtftp.c141 tftp_senderr(struct tftp_handle *h, u_short errcode, const char *msg) argument
151 len = strlen(msg);
159 bcopy(msg, wtail, len);
/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.c239 strm->msg = Z_NULL;
308 strm->msg = ERR_MSG(Z_MEM_ERROR);
403 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
H A Dgzguts.h189 char *msg; /* error message */ member in struct:__anon107
H A Dgzlib.c119 state->msg = NULL; /* no error message yet */
548 (state->msg == NULL ? "" : state->msg);
573 state->msg accordingly. Free any previous error message already there. Do
578 void ZLIB_INTERNAL gz_error(state, err, msg)
581 const char *msg;
584 if (state->msg != NULL) {
586 free(state->msg);
587 state->msg = NULL;
596 if (msg
[all...]
H A Dgzread.c20 state->fd, and update state->eof, state->err, and state->msg as appropriate.
206 strm->msg == NULL ? "compressed data error" : strm->msg);
H A Dinfback.c43 strm->msg = Z_NULL; /* in case we return an error */
278 strm->msg = Z_NULL;
320 strm->msg = (char *)"invalid block type";
331 strm->msg = (char *)"invalid stored block lengths";
369 strm->msg = (char *)"too many length or distance symbols";
391 strm->msg = (char *)"invalid code lengths set";
414 strm->msg = (char *)"invalid bit length repeat";
437 strm->msg = (char *)"invalid bit length repeat";
451 strm->msg = (char *)"invalid code -- missing end-of-block";
465 strm->msg
[all...]
H A Dinffast.c178 strm->msg = (char *)"invalid distance too far back";
191 strm->msg =
288 strm->msg = (char *)"invalid distance code";
303 strm->msg = (char *)"invalid literal/length code";
H A Dinflate.c112 strm->msg = Z_NULL;
193 strm->msg = Z_NULL; /* in case we return an error */
662 strm->msg = (char *)"incorrect header check";
667 strm->msg = (char *)"unknown compression method";
676 strm->msg = (char *)"invalid window size";
691 strm->msg = (char *)"unknown compression method";
696 strm->msg = (char *)"unknown header flags set";
800 strm->msg = (char *)"header crc mismatch";
859 strm->msg = (char *)"invalid block type";
868 strm->msg
[all...]
H A Dzlib.h94 z_const char *msg; /* last error message, NULL if no error */ member in struct:z_stream_s
240 with the version assumed by the caller (ZLIB_VERSION). msg is set to null
361 prematurely (some input or output was discarded). In the error case, msg
382 invalid, such as a null pointer to the structure. msg is set to null if
515 was inconsistent. In the error case, msg may be set but then points to a
582 incompatible with the version assumed by the caller (ZLIB_VERSION). msg is
645 (such as zalloc being Z_NULL). msg is left unchanged in both source and
810 invalid, such as a null pointer to the structure. msg is set to null if
888 (such as zalloc being Z_NULL). msg is left unchanged in both source and
1089 in the deflate stream (in which case strm->msg i
[all...]
H A Dzutil.h53 return (strm->msg = ERR_MSG(err), (err))
223 # define Assert(cond,msg) {if(!(cond)) z_error(msg);}
230 # define Assert(cond,msg)
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dexample.c22 #define CHECK_ERR(err, msg) { \
24 fprintf(stderr, "%s error: %d\n", msg, err); \
H A Dinfcover.c41 mem_used(&strm, "msg") prints to stderr "msg" and the total bytes used
42 mem_high(&strm, "msg") prints to stderr "msg" and the high water mark
43 mem_done(&strm, "msg") ends memory tracking, releases all allocations
47 allocated, then "msg" and information about the
548 assert(strcmp(id, strm.msg) == 0);
566 assert(strcmp(id, strm.msg) == 0);
H A Dminigzip.c174 char *msg; member in struct:gzFile_s
230 gz->msg = "";
286 gz->msg = strm->msg;
331 return gz->msg;
338 void error OF((const char *msg));
351 void error(msg)
352 const char *msg;
354 fprintf(stderr, "%s: %s\n", prog, msg);
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Dmain.c433 const CHAR16 *msg = L"Reboot from the loader"; local
439 RS->ResetSystem(EfiResetCold, EFI_SUCCESS, 23, (CHAR16 *)msg);
/illumos-gate/usr/src/boot/sys/sys/
H A Dcdefs.h565 #define __warn_references(sym,msg) \
567 __asm__(".asciz \"" msg "\""); \
577 #define __warn_references(sym,msg) \
579 __asm__(".asciz \"msg\""); \
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A DAppcertUtil.pm783 my $msg = "$command_name: ";
784 $msg .= gettext("cannot open file: %s\n");
785 $msg = sprintf($msg, join(' ', @_));
787 return $msg;
795 my $msg = "$command_name: ";
796 $msg .= gettext("path does not exist: %s\n");
797 $msg = sprintf($msg, join(' ', @_));
799 return $msg;
[all...]
H A Dsymcheck.pl424 my $msg = $1;
425 if ($msg =~ /^\s*$/) {
428 $no_bindings_msg = $msg;
H A Dsymprof.pl322 my $msg = $1;
329 $msg =~ s/\n/ /g;
330 $msg =~ s/;/,/g;
331 print $profile_error_fh $msg, "\n";
338 print $profile_fh "#NO_BINDINGS_FOUND $msg\n";
1414 my ($rc, $msg, $child, $result);
1464 $msg = $!;
1492 $msg = $tmp if ($tmp !~ /^\s*$/);
1495 emsg("%s", norunprog("$cmd_ldd -r $object", "$msg\n"));
1496 $msg
[all...]
H A Dsymreport.pl404 my ($summary_result, $msg, $output, $object);
464 $msg = sprintf(gettext("Summary: %s"), $summary_result) . "\n\n";
466 $msg .= sprintf($format, $n_checked) . "\n\n\n";
467 $output .= $msg;
491 $msg = $result_msg{$object};
492 $output .= "${si}$object\t($msg)\n";
505 $msg = $result_msg{$object};
506 $output .= "${sf}$object\t($msg)\n";
/illumos-gate/usr/src/cmd/acct/
H A Dwtmpfix.c729 wcomplain(char *msg) argument
732 (longlong_t)recin, msg);
/illumos-gate/usr/src/cmd/acpi/common/
H A Dgetopt.c59 #define ACPI_OPTION_ERROR(msg, badchar) \
60 if (AcpiGbl_Opterr) {AcpiLogError ("%s%c\n", msg, badchar);}
/illumos-gate/usr/src/cmd/allocate/
H A Dallocate.c60 static int wdwmsg(char *name, char *msg);
132 char *msg; local
137 msg = gettext("Specified device is allocated to another user.");
140 msg = gettext("Failed to chown.");
143 msg = gettext("Unable to clean up device.");
146 msg = gettext(
150 msg = gettext("Can't force deallocate specified device.");
153 msg = gettext(
157 msg = gettext(
162 msg
630 wdwmsg(char *name, char *msg) argument
[all...]

Completed in 136 milliseconds

1234567891011>>