Searched refs:iostate (Results 1 – 4 of 4) sorted by relevance
81 typedef uint32_t iostate; ///< Holds iostate_bits for a file stream. typedef87 inline iostate rdstate (void) const { return (m_State); } in rdstate()93 inline void clear (iostate v = goodbit) { m_State = v; }94 inline void setstate (iostate v) { m_State |= v; } in setstate()95 inline iostate exceptions (void) const { return (m_Exceptions); } in exceptions()96 inline iostate exceptions (iostate v) { return (m_Exceptions = v); } in exceptions()98 inline bool set_and_throw (iostate v) { setstate(v); return (exceptions() & v); } in set_and_throw()
30 …inline iostate exceptions (iostate v) { ostringstream::exceptions(v); return (m_File.exceptions(v)… in exceptions()31 inline void setstate (iostate v) { ostringstream::setstate(v); m_File.setstate(v); } in setstate()32 inline void clear (iostate v = goodbit) { ostringstream::clear(v); m_File.clear(v); }58 …inline iostate exceptions (iostate v) { istringstream::exceptions(v); return (m_File.exceptions(v)… in exceptions()59 inline void setstate (iostate v) { istringstream::setstate(v); m_File.setstate(v); } in setstate()60 inline void clear (iostate v = goodbit) { istringstream::clear(v); m_File.clear(v); }
65 DLL_LOCAL void set_and_throw (iostate s, const char* op);
63 void fstream::set_and_throw (iostate s, const char* op) in set_and_throw()