Lines Matching refs:system_error
2 //===---------------------------- system_error ----------------------------===//
15 system_error synopsis
108 class system_error
112 system_error(error_code ec, const string& what_arg);
113 system_error(error_code ec, const char* what_arg);
114 system_error(error_code ec);
115 system_error(int ev, const error_category& ecat, const string& what_arg);
116 system_error(int ev, const error_category& ecat, const char* what_arg);
117 system_error(int ev, const error_category& ecat);
460 // system_error
462 class _LIBCPP_TYPE_VIS system_error
467 system_error(error_code __ec, const string& __what_arg);
468 system_error(error_code __ec, const char* __what_arg);
469 system_error(error_code __ec);
470 system_error(int __ev, const error_category& __ecat, const string& __what_arg);
471 system_error(int __ev, const error_category& __ecat, const char* __what_arg);
472 system_error(int __ev, const error_category& __ecat);
473 ~system_error() _NOEXCEPT;