Searched refs:msg (Results 1 - 25 of 3582) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zlib/src/contrib/delphi/
H A DZLib.pas32 msg: PChar; // last error message, NULL if no error
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DDotZLib.cs41 string msg; field in struct:DotZLib.ZStream
93 /// <param name="msg">A message that (hopefully) describes the error</param>
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg)) argument
/external/zlib/src/contrib/infback9/
H A Dinfback9.c32 strm->msg = Z_NULL; /* in case we return an error */
258 strm->msg = Z_NULL;
306 strm->msg = (char *)"invalid block type";
317 strm->msg = (char *)"invalid stored block lengths";
354 strm->msg = (char *)"too many length symbols";
375 strm->msg = (char *)"invalid code lengths set";
399 strm->msg = (char *)"invalid bit length repeat";
422 strm->msg = (char *)"invalid bit length repeat";
436 strm->msg = (char *)"invalid code -- missing end-of-block";
450 strm->msg
[all...]
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c1127 strm->msg = "invalid literal/length code";
1129 strm->msg = "invalid distance code";
1131 strm->msg = "invalid distance too far back";
/external/zlib/src/contrib/masmx64/
H A Dinffas8664.c155 strm->msg = "invalid literal/length code";
157 strm->msg = "invalid distance code";
159 strm->msg = "invalid distance too far back";
/external/zlib/src/contrib/minizip/
H A Dunzip.c1856 if ((err>=0) && (pfile_in_zip_read_info->stream.msg!=NULL))
/external/zlib/src/contrib/pascal/
H A Dexample.pas37 procedure CHECK_ERR(err: Integer; msg: String);
41 WriteLn(msg, ' error: ', err);
46 procedure EXIT_ERR(const msg: String);
48 WriteLn('Error: ', msg);
H A Dzlibpas.pas37 msg: PChar; (* last error message, NULL if no error *)
/external/zlib/src/contrib/untgz/
H A Duntgz.c593 void error(const char *msg) argument
595 fprintf(stderr, "%s: %s\n", prog, msg);
/external/zlib/src/
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:__anon34354
H A Dgzlib.c116 state->msg = NULL; /* no error message yet */
545 (state->msg == NULL ? "" : state->msg);
570 state->msg accordingly. Free any previous error message already there. Do
575 void ZLIB_INTERNAL gz_error(state, err, msg)
578 const char *msg;
581 if (state->msg != NULL) {
583 free(state->msg);
584 state->msg = NULL;
593 if (msg
[all...]
H A Dgzread.c17 state->fd, and update state->eof, state->err, and state->msg as appropriate.
203 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)
/external/zlib/src/examples/
H A Dgun.c230 strm->msg = (char *)"unknown lzw flags set";
235 strm->msg = (char *)"lzw bits out of range";
255 strm->msg = (char *)"invalid lzw code";
322 strm->msg = (char *)"invalid lzw code";
407 strm->msg = (char *)"incorrect header check";
423 strm->msg = (char *)"unknown compression method";
436 strm->msg = (char *)"unknown header flags set";
489 strm->msg = (char *)"incorrect data check";
500 strm->msg = (char *)"incorrect length check";
600 fprintf(stderr, "gun data error on %s: %s\n", inname, strm->msg);
[all...]
/external/zlib/src/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);
/external/zlib/
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)

Completed in 3880 milliseconds

1234567891011>>