Lines Matching refs:errorFlags
539 static AString GetOpenArcErrorMessage(UInt32 errorFlags) in GetOpenArcErrorMessage() argument
546 if ((errorFlags & f) == 0) in GetOpenArcErrorMessage()
552 errorFlags &= ~f; in GetOpenArcErrorMessage()
555 if (errorFlags != 0) in GetOpenArcErrorMessage()
560 ConvertUInt32ToHex(errorFlags, sz + 2); in GetOpenArcErrorMessage()
569 void PrintErrorFlags(CStdOutStream &so, const char *s, UInt32 errorFlags) in PrintErrorFlags() argument
571 if (errorFlags == 0) in PrintErrorFlags()
573 so << s << endl << GetOpenArcErrorMessage(errorFlags) << endl; in PrintErrorFlags()
628 UInt32 errorFlags = er.GetErrorFlags(); in OpenResult() local
630 if (errorFlags != 0 || !er.ErrorMessage.IsEmpty()) in OpenResult()
642 if (errorFlags != 0) in OpenResult()
645 PrintErrorFlags(*_se, "ERRORS:", errorFlags); in OpenResult()