/ndk/sources/cxx-stl/llvm-libc++/src/ |
D | system_error.cpp | 142 system_error::__init(const error_code& ec, string what_arg) in __init() 153 system_error::system_error(error_code ec, const string& what_arg) in system_error() function in system_error 159 system_error::system_error(error_code ec, const char* what_arg) in system_error() function in system_error 165 system_error::system_error(error_code ec) in system_error() function in system_error 171 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() function in system_error 177 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() function in system_error 183 system_error::system_error(int ev, const error_category& ecat) in system_error() function in system_error 189 system_error::~system_error() _NOEXCEPT in ~system_error() 197 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
|
D | thread.cpp | 38 throw system_error(error_code(ec, system_category()), "thread::join failed"); in join() 55 throw system_error(error_code(ec, system_category()), "thread::detach failed"); in detach()
|
D | ios.cpp | 73 : system_error(ec, msg) in failure() 78 : system_error(ec, msg) in failure()
|
/ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
D | unlock.pass.cpp | 40 catch (std::system_error& e) in main() 50 catch (std::system_error& e) in main()
|
D | try_lock.pass.cpp | 44 catch (std::system_error& e) in main() 58 catch (std::system_error& e) in main()
|
D | try_lock_for.pass.cpp | 49 catch (std::system_error& e) in main() 63 catch (std::system_error& e) in main()
|
D | lock.pass.cpp | 43 catch (std::system_error& e) in f() 54 catch (std::system_error& e) in f()
|
D | try_lock_until.pass.cpp | 49 catch (std::system_error& e) in main() 63 catch (std::system_error& e) in main()
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | system_error | 2 //===---------------------------- system_error ----------------------------===// 15 system_error synopsis 101 class system_error 105 system_error(error_code ec, const string& what_arg); 106 system_error(error_code ec, const char* what_arg); 107 system_error(error_code ec); 108 system_error(int ev, const error_category& ecat, const string& what_arg); 109 system_error(int ev, const error_category& ecat, const char* what_arg); 110 system_error(int ev, const error_category& ecat); 610 // system_error [all …]
|
D | thread | 95 #include <system_error> 148 throw system_error(error_code(__ec, system_category()),
|
D | ios | 217 #include <system_error> 408 : public system_error
|
D | __mutex_base | 16 #include <system_error>
|
D | future | 366 #include <system_error>
|
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.device/ |
D | ctor.pass.cpp | 26 catch (const std::system_error& e) in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ |
D | ctor_error_code.pass.cpp | 24 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
D | ctor_int_error_category.pass.cpp | 24 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
D | ctor_error_code_string.pass.cpp | 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg); in main()
|
D | ctor_int_error_category_string.pass.cpp | 25 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
D | ctor_error_code_const_char_pointer.pass.cpp | 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg.c_str()); in main()
|
D | ctor_int_error_category_const_char_pointer.pass.cpp | 25 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
/ndk/sources/cxx-stl/llvm-libc++/android/llvm-libc++/ |
D | Android.mk | 28 system_error.cpp \
|