HomeSort by relevance Sort by last modified time
    Searched defs:iostate (Results 1 - 3 of 3) sorted by null

  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uios.h 81 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); }
  /external/astl/include/
ios_base.h 99 typedef int iostate; typedef in class:std::ios_base
  /external/stlport/stlport/stl/
_ios_base.h 58 typedef int iostate; typedef in class:ios_base
170 iostate rdstate() const { return _M_iostate; }
185 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; }
186 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; }
187 iostate _M_get_exception_mask() const { return _M_exception_mask; }
188 void _M_set_exception_mask(iostate __mask) { _M_exception_mask = __mask; }
212 iostate _M_iostate;
215 iostate _M_exception_mask;
254 typedef iostate io_state;

Completed in 241 milliseconds