Home
last modified time | relevance | path

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

/external/libcxx/include/experimental/
Dfilesystem1183 filesystem_error(const string& __what, error_code __ec)
1184 : system_error(__ec, __what),
1189 filesystem_error(const string& __what, const path& __p1, error_code __ec)
1190 : system_error(__ec, __what),
1196 error_code __ec)
1197 : system_error(__ec, __what),
1239 path __canonical(const path&, const path&, error_code *__ec=nullptr);
1242 error_code *__ec=nullptr);
1245 error_code *__ec=nullptr);
1248 error_code *__ec=nullptr);
[all …]
/external/libcxx/include/
D__threading_support208 int __ec = pthread_mutexattr_init(&attr);
209 if (__ec)
210 return __ec;
211 __ec = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
212 if (__ec) {
214 return __ec;
216 __ec = pthread_mutex_init(__m, &attr);
217 if (__ec) {
219 return __ec;
221 __ec = pthread_mutexattr_destroy(&attr);
[all …]
Dthread177 int __ec =
179 if (__ec)
180 __throw_system_error(__ec, "__thread_specific_ptr construction failed");
365 int __ec = __libcpp_thread_create(&__t_, &__thread_proxy<_Gp>, __p.get());
366 if (__ec == 0)
369 __throw_system_error(__ec, "thread constructor failed");
400 int __ec = __libcpp_thread_create(&__t_, &__thread_proxy_cxx03<_InvokePair>, __pp.get());
401 if (__ec == 0)
404 __throw_system_error(__ec, "thread constructor failed");
Dsystem_error628 size_t operator()(const error_code& __ec) const _NOEXCEPT
630 return static_cast<size_t>(__ec.value());
639 size_t operator()(const error_condition& __ec) const _NOEXCEPT
641 return static_cast<size_t>(__ec.value());
652 system_error(error_code __ec, const string& __what_arg);
653 system_error(error_code __ec, const char* __what_arg);
654 system_error(error_code __ec);
Dostream1063 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __ec)
1065 return __os << __ec.category().name() << ':' << __ec.value();
Dios424 explicit failure(const string& __msg, const error_code& __ec = io_errc::stream);
425 explicit failure(const char* __msg, const error_code& __ec = io_errc::stream);
Dfuture507 future_error(error_code __ec);
/external/libcxx/src/
Dfuture.cpp75 future_error::future_error(error_code __ec) in future_error() argument
76 : logic_error(__ec.message()), in future_error()
77 __ec_(__ec) in future_error()