Searched refs:_M_iostate (Results 1 – 2 of 2) sorted by relevance
172 iostate rdstate() const { return _M_iostate; } in rdstate()174 bool good() const { return _M_iostate == 0; } in good()175 bool eof() const { return (_M_iostate & eofbit) != 0; } in eof()176 bool fail() const { return (_M_iostate & (failbit | badbit)) != 0; } in fail()177 bool bad() const { return (_M_iostate & badbit) != 0; } in bad()187 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; } in _M_setstate_nothrow()188 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; } in _M_clear_nothrow()192 if (_M_iostate & _M_exception_mask) in _M_check_exception_mask()214 iostate _M_iostate; variable
215 …r = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_iostate)); in _M_throw_failure()288 : _M_fmtflags(0), _M_iostate(0), _M_openmode(0), _M_seekdir(0), in ios_base()