Searched refs:BinaryStreamError (Results 1 – 13 of 13) sorted by relevance
14 char BinaryStreamError::ID = 0;16 BinaryStreamError::BinaryStreamError(stream_error_code C) in BinaryStreamError() function in BinaryStreamError17 : BinaryStreamError(C, "") {} in BinaryStreamError()19 BinaryStreamError::BinaryStreamError(StringRef Context) in BinaryStreamError() function in BinaryStreamError20 : BinaryStreamError(stream_error_code::unspecified, Context) {} in BinaryStreamError()22 BinaryStreamError::BinaryStreamError(stream_error_code C, StringRef Context) in BinaryStreamError() function in BinaryStreamError49 void BinaryStreamError::log(raw_ostream &OS) const { OS << ErrMsg; } in log()51 StringRef BinaryStreamError::getErrorMessage() const { return ErrMsg; } in getErrorMessage()53 std::error_code BinaryStreamError::convertToErrorCode() const { in convertToErrorCode()
136 return make_error<BinaryStreamError>(stream_error_code::stream_too_short); in readStreamRef()150 return make_error<BinaryStreamError>(stream_error_code::stream_too_short); in skip()
98 return make_error<BinaryStreamError>(stream_error_code::stream_too_short); in padToAlignment()
97 BinaryStreamError.cpp
27 class BinaryStreamError : public ErrorInfo<BinaryStreamError> {30 explicit BinaryStreamError(stream_error_code C);31 explicit BinaryStreamError(StringRef Context);32 BinaryStreamError(stream_error_code C, StringRef Context);
61 return make_error<BinaryStreamError>(stream_error_code::invalid_offset); in checkOffsetForRead()63 return make_error<BinaryStreamError>(stream_error_code::stream_too_short); in checkOffsetForRead()94 return make_error<BinaryStreamError>(stream_error_code::invalid_offset); in checkOffsetForWrite()
50 return make_error<BinaryStreamError>(stream_error_code::stream_too_short); in readBytes()89 return make_error<BinaryStreamError>(stream_error_code::stream_too_short); in translateOffsetIndex()
137 return make_error<BinaryStreamError>(stream_error_code::invalid_offset); in checkOffsetForRead()139 return make_error<BinaryStreamError>(stream_error_code::stream_too_short); in checkOffsetForRead()235 return make_error<BinaryStreamError>(stream_error_code::invalid_offset); in checkOffsetForWrite()
195 return make_error<BinaryStreamError>( in readArray()242 return make_error<BinaryStreamError>( in readArray()
183 return make_error<BinaryStreamError>(stream_error_code::invalid_offset); in writeBytes()219 return make_error<BinaryStreamError>( in commit()
155 return make_error<BinaryStreamError>( in writeArray()
22 BinaryStreamError.cpp \
47 "BinaryStreamError.cpp",