Lines Matching refs:StreamErrorState

45 struct StreamErrorState {  struct
57 bool operator==(const StreamErrorState &ES) const { in operator ==() argument
61 bool operator!=(const StreamErrorState &ES) const { return !(*this == ES); } in operator !=() argument
63 StreamErrorState operator|(const StreamErrorState &E) const { in operator |() argument
67 StreamErrorState operator&(const StreamErrorState &E) const { in operator &() argument
71 StreamErrorState operator~() const { return {!NoError, !FEof, !FError}; } in operator ~() argument
83 const StreamErrorState ErrorNone{true, false, false};
84 const StreamErrorState ErrorFEof{false, true, false};
85 const StreamErrorState ErrorFError{false, false, true};
102 StreamErrorState const ErrorState;
114 StreamState(const FnDescription *L, KindTy S, const StreamErrorState &ES, in StreamState()
137 const StreamErrorState &ES = ErrorNone, in getOpened()
391 const StreamErrorState &ErrorKind) const;
395 const StreamErrorState &ErrorKind) const;
790 StreamErrorState NewES; in evalFreadFwrite()
882 StreamErrorState NewES = in evalFgetx()
1045 StreamErrorState NewES = (OldSS->ErrorState == ErrorFEof) in evalFscanf()
1141 StreamErrorState NewES = in evalGetdelim()
1207 StreamErrorState NewErrS = ErrorNone | ErrorFError; in evalFseek()
1369 const StreamErrorState &ErrorKind) const { in evalFeofFerror()
1395 if (StreamErrorState NewES = SS->ErrorState & (~ErrorKind)) { in evalFeofFerror()
1424 const StreamErrorState &ErrorKind) const { in evalSetFeofFerror()
1481 StreamErrorState NewES = in evalFflush()