Home
last modified time | relevance | path

Searched refs:BZ_PARAM_ERROR (Results 1 – 5 of 5) sorted by relevance

/external/bzip2/
Dbzlib.c162 return BZ_PARAM_ERROR; in BZ_API()
411 if (strm == NULL) return BZ_PARAM_ERROR; in BZ_API()
413 if (s == NULL) return BZ_PARAM_ERROR; in BZ_API()
414 if (s->strm != strm) return BZ_PARAM_ERROR; in BZ_API()
425 return progress ? BZ_RUN_OK : BZ_PARAM_ERROR; in BZ_API()
440 return BZ_PARAM_ERROR; in BZ_API()
471 if (strm == NULL) return BZ_PARAM_ERROR; in BZ_API()
473 if (s == NULL) return BZ_PARAM_ERROR; in BZ_API()
474 if (s->strm != strm) return BZ_PARAM_ERROR; in BZ_API()
501 if (strm == NULL) return BZ_PARAM_ERROR; in BZ_API()
[all …]
Dbzlib.h39 #define BZ_PARAM_ERROR (-2) macro
/external/oss-fuzz/projects/gnupg/
Dfuzzgnupg.diff86 - else if( zrc != BZ_OK && zrc != BZ_PARAM_ERROR )
88 + else if( zrc != BZ_OK && zrc != BZ_PARAM_ERROR ) {
/external/python/cpython3/Modules/
D_bz2module.c76 case BZ_PARAM_ERROR: in catch_bz2_error()
/external/python/cpython2/Modules/
Dbz2module.c166 case BZ_PARAM_ERROR: in Util_CatchBZ2Error()