Home
last modified time | relevance | path

Searched refs:__ec (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dthread148 int __ec = pthread_key_create(&__key_, &__thread_specific_ptr::__at_thread_exit);
150 if (__ec)
151 throw system_error(error_code(__ec, system_category()),
356 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Gp>, __p.get());
357 if (__ec == 0)
360 __throw_system_error(__ec, "thread constructor failed");
379 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Fp>, __p.get());
380 if (__ec == 0)
383 __throw_system_error(__ec, "thread constructor failed");
Dsystem_error610 size_t operator()(const error_code& __ec) const _NOEXCEPT
612 return static_cast<size_t>(__ec.value());
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);
Dostream1074 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __ec)
1076 return __os << __ec.category().name() << ':' << __ec.value();
Dios419 explicit failure(const string& __msg, const error_code& __ec = io_errc::stream);
420 explicit failure(const char* __msg, const error_code& __ec = io_errc::stream);
Dfuture505 future_error(error_code __ec);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dfuture.cpp73 future_error::future_error(error_code __ec) in future_error() argument
74 : logic_error(__ec.message()), in future_error()
75 __ec_(__ec) in future_error()