Searched refs:what_arg (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dsystem_error.cpp232 system_error::__init(const error_code& ec, string what_arg) argument
236 if (!what_arg.empty())
237 what_arg += ": ";
238 what_arg += ec.message();
240 return what_arg;
243 system_error::system_error(error_code ec, const string& what_arg) argument
244 : runtime_error(__init(ec, what_arg)),
249 system_error::system_error(error_code ec, const char* what_arg) argument
250 : runtime_error(__init(ec, what_arg)),
261 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) argument
267 system_error(int ev, const error_category& ecat, const char* what_arg) argument
284 __throw_system_error(int ev, const char* what_arg) argument
287 throw system_error(error_code(ev, system_category()), what_arg); local
[all...]

Completed in 64 milliseconds