Searched refs:_M_iostate (Results 1 – 2 of 2) sorted by relevance
170 iostate rdstate() const { return _M_iostate; } in rdstate()172 bool good() const { return _M_iostate == 0; } in good()173 bool eof() const { return (_M_iostate & eofbit) != 0; } in eof()174 bool fail() const { return (_M_iostate & (failbit | badbit)) != 0; } in fail()175 bool bad() const { return (_M_iostate & badbit) != 0; } in bad()185 void _M_setstate_nothrow(iostate __state) { _M_iostate |= __state; } in _M_setstate_nothrow()186 void _M_clear_nothrow(iostate __state) { _M_iostate = __state; } in _M_clear_nothrow()190 if (_M_iostate & _M_exception_mask) in _M_check_exception_mask()212 iostate _M_iostate; variable
213 …r = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_iostate)); in _M_throw_failure()286 : _M_fmtflags(0), _M_iostate(0), _M_openmode(0), _M_seekdir(0), in ios_base()