Lines Matching defs:stat
2360 - SZ_ERROR_WRITE for ISeqOutStream::Write(). stat->CombinedRes_Type = SZ_ERROR_WRITE in that case
2361 - ICompressProgress::Progress() error, stat->CombinedRes_Type = SZ_ERROR_PROGRESS.
2364 also it can set stat->CombinedRes_Type to SZ_ERROR_WRITE or SZ_ERROR_PROGRESS.
2371 , CXzStatInfo *stat)
2500 stat->CombinedRes_Type = SZ_ERROR_WRITE;
2514 stat->CombinedRes_Type = SZ_ERROR_PROGRESS;
2515 stat->ProgressRes = res;
2550 CXzStatInfo *stat)
2554 stat->DecodingTruncated = (Byte)(decodingTruncated ? 1 : 0);
2555 stat->InSize = inProcessed;
2556 stat->NumStreams = dec->numStartedStreams;
2557 stat->NumBlocks = dec->numTotalBlocks;
2559 stat->UnpackSize_Defined = True;
2560 stat->NumStreams_Defined = True;
2561 stat->NumBlocks_Defined = True;
2600 stat->DataAfterEnd = True;
2606 if (stat->DecodeRes == SZ_OK)
2607 stat->DecodeRes = res;
2609 stat->InSize -= extraSize;
2621 CXzStatInfo *stat,
2630 XzStatInfo_Clear(stat);
2637 // p->stat = stat;
2733 stat->InSize = p->mtc.inProcessed;
2748 stat->ProgressRes = res;
2749 stat->CombinedRes_Type = SZ_ERROR_PROGRESS;
2763 stat->OutSize = p->outProcessed;
2783 stat->DecodeRes = p->mainErrorCode;
2790 stat);
2795 stat->ReadRes = p->mtc.readRes;
2800 stat->CombinedRes_Type = SZ_ERROR_WRITE;
2804 && stat->DecodeRes == SZ_ERROR_INPUT_EOF)
2807 stat->CombinedRes_Type = SZ_ERROR_READ;
2809 else if (stat->DecodeRes != SZ_OK)
2810 res = stat->DecodeRes;
2813 stat->CombinedRes = res;
2814 if (stat->CombinedRes_Type == SZ_OK)
2815 stat->CombinedRes_Type = res;
2832 , stat
2838 stat->DecodeRes = p->mainErrorCode;
2847 stat);
2849 stat->ReadRes = p->readRes;
2855 && stat->DecodeRes == SZ_ERROR_INPUT_EOF)
2860 stat->CombinedRes_Type = SZ_ERROR_READ;
2862 else if (stat->DecodeRes != SZ_OK)
2863 res = stat->DecodeRes;
2866 stat->CombinedRes = res;
2867 if (stat->CombinedRes_Type == SZ_OK)
2868 stat->CombinedRes_Type = res;