Lines Matching refs:what_arg
147 system_error::__init(const error_code& ec, string what_arg) in __init() argument
151 if (!what_arg.empty()) in __init()
152 what_arg += ": "; in __init()
153 what_arg += ec.message(); in __init()
155 return what_arg; in __init()
158 system_error::system_error(error_code ec, const string& what_arg) in system_error() argument
159 : runtime_error(__init(ec, what_arg)), in system_error()
164 system_error::system_error(error_code ec, const char* what_arg) in system_error() argument
165 : runtime_error(__init(ec, what_arg)), in system_error()
176 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() argument
177 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error()
182 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() argument
183 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error()
199 __throw_system_error(int ev, const char* what_arg) in __throw_system_error() argument
202 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
205 (void)what_arg; in __throw_system_error()