Home
last modified time | relevance | path

Searched refs:LZMA_STATUS_NEEDS_MORE_INPUT (Results 1 – 7 of 7) sorted by relevance

/third_party/lzma/C/
DLzma2Dec.c205 *status = LZMA_STATUS_NEEDS_MORE_INPUT; in Lzma2Dec_DecodeToDic()
230 *status = LZMA_STATUS_NEEDS_MORE_INPUT; in Lzma2Dec_DecodeToDic()
278 if (*status == LZMA_STATUS_NEEDS_MORE_INPUT) in Lzma2Dec_DecodeToDic()
326 return (ELzma2ParseStatus)LZMA_STATUS_NEEDS_MORE_INPUT; in Lzma2Dec_Parse()
366 return (ELzma2ParseStatus)LZMA_STATUS_NEEDS_MORE_INPUT; in Lzma2Dec_Parse()
385 return (ELzma2ParseStatus)LZMA_STATUS_NEEDS_MORE_INPUT; in Lzma2Dec_Parse()
485 if (res == SZ_OK && *status == LZMA_STATUS_NEEDS_MORE_INPUT) in Lzma2Decode()
DLzmaDec.h111 LZMA_STATUS_NEEDS_MORE_INPUT, /* you must provide more input bytes */ enumerator
DLzmaDec.c970 *status = LZMA_STATUS_NEEDS_MORE_INPUT; in LzmaDec_DecodeToDic()
1059 *status = LZMA_STATUS_NEEDS_MORE_INPUT; in LzmaDec_DecodeToDic()
1139 *status = LZMA_STATUS_NEEDS_MORE_INPUT; in LzmaDec_DecodeToDic()
1359 if (res == SZ_OK && *status == LZMA_STATUS_NEEDS_MORE_INPUT) in LzmaDecode()
DLzma2DecMt.c377 if ((int)status != LZMA_STATUS_NEEDS_MORE_INPUT) in Lzma2DecMt_MtCallback_Parse()
779 if (status == LZMA_STATUS_NEEDS_MORE_INPUT) in Lzma2Dec_Decode_ST()
DXzDec.c2069 if ((int)coder->status == LZMA_STATUS_NEEDS_MORE_INPUT) in XzDecMt_Callback_Write()
/third_party/lzma/CPP/7zip/Compress/
DLzmaDecoder.cpp173 || (outFinished && status != LZMA_STATUS_NEEDS_MORE_INPUT)); in CodeSpec()
201 if (outFinished && status != LZMA_STATUS_NEEDS_MORE_INPUT) in CodeSpec()
DLzmaDecoder.h102 bool NeedsMoreInput() const { return _lzmaStatus == LZMA_STATUS_NEEDS_MORE_INPUT; } in NeedsMoreInput()