Lines Matching refs:system_error
2 //===---------------------------- system_error ----------------------------===//
15 system_error synopsis
102 class system_error
106 system_error(error_code ec, const string& what_arg);
107 system_error(error_code ec, const char* what_arg);
108 system_error(error_code ec);
109 system_error(int ev, const error_category& ecat, const string& what_arg);
110 system_error(int ev, const error_category& ecat, const char* what_arg);
111 system_error(int ev, const error_category& ecat);
616 // system_error
618 class _LIBCPP_TYPE_VIS system_error
623 system_error(error_code __ec, const string& __what_arg);
624 system_error(error_code __ec, const char* __what_arg);
625 system_error(error_code __ec);
626 system_error(int __ev, const error_category& __ecat, const string& __what_arg);
627 system_error(int __ev, const error_category& __ecat, const char* __what_arg);
628 system_error(int __ev, const error_category& __ecat);
629 ~system_error() _NOEXCEPT;