Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/include/
Dthread146 int __ec = pthread_key_create(&__key_, &__thread_specific_ptr::__at_thread_exit);
147 if (__ec)
148 throw system_error(error_code(__ec, system_category()),
353 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Gp>, __p.get());
354 if (__ec == 0)
357 __throw_system_error(__ec, "thread constructor failed");
376 int __ec = pthread_create(&__t_, 0, &__thread_proxy<_Fp>, __p.get());
377 if (__ec == 0)
380 __throw_system_error(__ec, "thread constructor failed");
Dsystem_error604 size_t operator()(const error_code& __ec) const _NOEXCEPT
606 return static_cast<size_t>(__ec.value());
617 system_error(error_code __ec, const string& __what_arg);
618 system_error(error_code __ec, const char* __what_arg);
619 system_error(error_code __ec);
Dostream1259 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __ec)
1261 return __os << __ec.category().name() << ':' << __ec.value();
Dios411 explicit failure(const string& __msg, const error_code& __ec = io_errc::stream);
412 explicit failure(const char* __msg, const error_code& __ec = io_errc::stream);
Dfuture437 future_error(error_code __ec);
/ndk/sources/cxx-stl/llvm-libc++/src/
Dfuture.cpp56 future_error::future_error(error_code __ec) in future_error() argument
57 : logic_error(__ec.message()), in future_error()
58 __ec_(__ec) in future_error()