Lines Matching defs:status
174 p->remainLen : shows status of LZMA decoder:
940 must check (status) value. The caller can show the error,
941 if the end of stream is expected, and the (status) is noit
947 *status = LZMA_STATUS_NOT_FINISHED; \
953 ELzmaFinishMode finishMode, ELzmaStatus *status)
957 *status = LZMA_STATUS_NOT_SPECIFIED;
970 *status = LZMA_STATUS_NEEDS_MORE_INPUT;
1007 *status = LZMA_STATUS_FINISHED_WITH_MARK;
1022 *status = LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK;
1027 *status = LZMA_STATUS_NOT_FINISHED;
1059 *status = LZMA_STATUS_NEEDS_MORE_INPUT;
1139 *status = LZMA_STATUS_NEEDS_MORE_INPUT;
1200 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status)
1224 res = LzmaDec_DecodeToDic(p, outSizeCur, src, &inSizeCur, curFinishMode, status);
1342 ELzmaStatus *status, ISzAllocPtr alloc)
1348 *status = LZMA_STATUS_NOT_SPECIFIED;
1357 res = LzmaDec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status);
1359 if (res == SZ_OK && *status == LZMA_STATUS_NEEDS_MORE_INPUT)