Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/libcxx/include/__filesystem/
H A Doperations.h66 …P_HIDE_FROM_ABI path absolute(const path& __p, error_code& __ec) { return __absolute(__p, &__ec); } in absolute() argument
68 …HIDE_FROM_ABI path canonical(const path& __p, error_code& __ec) { return __canonical(__p, &__ec); } in canonical() argument
92 inline _LIBCPP_HIDE_FROM_ABI path current_path(error_code& __ec) { return __current_path(&__ec); } in current_path() argument
102 auto __s = __status(__p, &__ec); in exists()
104 __ec.clear(); in exists()
123 …HIDE_FROM_ABI bool is_empty(const path& __p, error_code& __ec) { return __fs_is_empty(__p, &__ec);… in is_empty() argument
150 if (__ec) in proximate()
153 if (__ec) in proximate()
165 if (__ec) in relative()
168 if (__ec) in relative()
[all …]
H A Ddirectory_entry.h55 error_code __ec; in directory_entry() local
56 __refresh(&__ec); in directory_entry()
61 __refresh(&__ec); in directory_entry()
72 error_code __ec; in assign() local
73 __refresh(&__ec); in assign()
79 __refresh(&__ec); in assign()
85 error_code __ec; in replace_filename() local
99 void refresh(error_code& __ec) noexcept { __refresh(&__ec); } in refresh() argument
329 if (!__ec) in __is_dne_error()
347 if (__ec && (!__allow_dne || !__is_dne_error(__ec)))
[all …]
H A Drecursive_directory_iterator.h55 error_code& __ec) in recursive_directory_iterator() argument
56 : recursive_directory_iterator(__p, __xoptions, &__ec) {} in recursive_directory_iterator()
59 recursive_directory_iterator(const path& __p, error_code& __ec) in recursive_directory_iterator() argument
97 recursive_directory_iterator& increment(error_code& __ec) { in increment() argument
98 return __increment(&__ec); in increment()
108 void pop(error_code& __ec) { __pop(&__ec); } in pop() argument
119 error_code* __ec);
125 bool __try_recursion(error_code* __ec);
128 void __advance(error_code* __ec = nullptr);
131 recursive_directory_iterator& __increment(error_code* __ec = nullptr);
[all …]
H A Dfilesystem_error.h34 filesystem_error(const string& __what, error_code __ec) in filesystem_error() argument
35 : system_error(__ec, __what), in filesystem_error()
41 filesystem_error(const string& __what, const path& __p1, error_code __ec) in filesystem_error() argument
42 : system_error(__ec, __what), in filesystem_error()
49 error_code __ec) in filesystem_error() argument
50 : system_error(__ec, __what), in filesystem_error()
H A Ddirectory_iterator.h59 directory_iterator(const path& __p, error_code& __ec) in directory_iterator() argument
60 : directory_iterator(__p, &__ec) {} in directory_iterator()
64 error_code& __ec) in directory_iterator() argument
65 : directory_iterator(__p, &__ec, __opts) {} in directory_iterator()
102 directory_iterator& increment(error_code& __ec) { return __increment(&__ec); } in increment() argument
115 directory_iterator& __increment(error_code* __ec = nullptr);
/openbsd/gnu/llvm/libcxx/include/
H A D__threading_support264 if (__ec)
265 return __ec;
267 if (__ec) {
269 return __ec;
271 __ec = pthread_mutex_init(__m, &attr);
272 if (__ec) {
274 return __ec;
277 if (__ec) {
279 return __ec;
502 return __ec == thrd_timedout ? ETIMEDOUT : __ec;
[all …]
H A Dthread181 int __ec =
183 if (__ec)
184 __throw_system_error(__ec, "__thread_specific_ptr construction failed");
309 int __ec = _VSTD::__libcpp_thread_create(&__t_, &__thread_proxy<_Gp>, __p.get());
310 if (__ec == 0)
313 __throw_system_error(__ec, "thread constructor failed");
344 int __ec = _VSTD::__libcpp_thread_create(&__t_, &__thread_proxy_cxx03<_InvokePair>, __pp.get());
345 if (__ec == 0)
348 __throw_system_error(__ec, "thread constructor failed");
H A Dsystem_error503 size_t operator()(const error_code& __ec) const _NOEXCEPT
505 return static_cast<size_t>(__ec.value());
514 size_t operator()(const error_condition& __ec) const _NOEXCEPT
516 return static_cast<size_t>(__ec.value());
527 system_error(error_code __ec, const string& __what_arg);
528 system_error(error_code __ec, const char* __what_arg);
529 system_error(error_code __ec);
H A D__mutex_base502 … int __ec = pthread_cond_clockwait(&__cv_, __lk.mutex()->native_handle(), CLOCK_MONOTONIC, &__ts);
503 if (__ec != 0 && __ec != ETIMEDOUT)
504 __throw_system_error(__ec, "condition_variable timed_wait failed");
H A Dostream1099 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __ec)
1101 return __os << __ec.category().name() << ':' << __ec.value();
H A Dios443 explicit failure(const string& __msg, const error_code& __ec = io_errc::stream);
444 explicit failure(const char* __msg, const error_code& __ec = io_errc::stream);
H A Dfuture513 future_error(error_code __ec);
/openbsd/gnu/llvm/libcxx/src/
H A Dfuture.cpp66 future_error::future_error(error_code __ec) in future_error() argument
67 : logic_error(__ec.message()), in future_error()
68 __ec_(__ec) in future_error()
/openbsd/gnu/llvm/libcxx/src/support/win32/
H A Dthread_win32.cpp128 auto __ec = GetLastError(); in __libcpp_condvar_timedwait() local
129 return __ec == ERROR_TIMEOUT ? ETIMEDOUT : __ec; in __libcpp_condvar_timedwait()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dia64-aix-nat.c80 (char *) &(gregsetp->__ec)); in supply_gregset()
144 COPY_REG (__ec, IA64_EC_REGNUM); in fill_gregset()