Home | History | Annotate | Download | only in src

Lines Matching defs:system_error

1 //===---------------------- system_error.cpp ------------------------------===//
13 #include "system_error"
116 // system_error functions not modify errno).
231 // system_error
234 system_error::__init(const error_code& ec, string what_arg)
245 system_error::system_error(error_code ec, const string& what_arg)
251 system_error::system_error(error_code ec, const char* what_arg)
257 system_error::system_error(error_code ec)
263 system_error::system_error(int ev, const error_category& ecat, const string& what_arg)
269 system_error::system_error(int ev, const error_category& ecat, const char* what_arg)
275 system_error::system_error(int ev, const error_category& ecat)
281 system_error::~system_error() _NOEXCEPT
289 throw system_error(error_code(ev, system_category()), what_arg);