Searched defs:iostate (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Duios.h81 typedef uint32_t iostate; ///< Holds iostate_bits for a file stream. typedef in class:ustl::ios_base
87 inline iostate rdstate (void) const { return (m_State); }
93 inline void clear (iostate v = goodbit) { m_State = v; }
94 inline void setstate (iostate v) { m_State |= v; }
95 inline iostate exceptions (void) const { return (m_Exceptions); }
96 inline iostate exceptions (iostate v) { return (m_Exceptions = v); }
98 inline bool set_and_throw (iostate v) { setstate(v); return (exceptions() & v); }

Completed in 43 milliseconds