Home | History | Annotate | Download | only in Support

Lines Matching refs:ErrMsg

25   ErrMsg = "Stream Error: ";
28 ErrMsg += "An unspecified error has occurred.";
31 ErrMsg += "The stream is too short to perform the requested operation.";
34 ErrMsg += "The buffer size is not a multiple of the array element size.";
37 ErrMsg += "The specified offset is invalid for the current stream.";
40 ErrMsg += "An I/O error occurred on the file system.";
45 ErrMsg += " ";
46 ErrMsg += Context;
50 void BinaryStreamError::log(raw_ostream &OS) const { OS << ErrMsg << "\n"; }
52 StringRef BinaryStreamError::getErrorMessage() const { return ErrMsg; }