Searched refs:set_or_throw (Results 1 – 2 of 2) sorted by relevance
/external/libcxx/src/experimental/filesystem/ |
D | operations.cpp | 43 void set_or_throw(std::error_code const& m_ec, std::error_code* ec, in set_or_throw() function 55 void set_or_throw(std::error_code* ec, const char* msg, in set_or_throw() function 58 return set_or_throw(capture_errno(), ec, msg, p, p2); 78 set_or_throw(m_ec, ec, "posix_stat", p); in create_file_status() 148 set_or_throw(make_error_code(errc::operation_not_permitted), in copy_file_impl() 159 using detail::set_or_throw; 167 set_or_throw(ec, "canonical", orig_p, base); in __canonical() 189 return set_or_throw(m_ec, ec, "copy", from, to); in __copy() 196 return set_or_throw(m_ec, ec, "copy", from, to); in __copy() 202 return set_or_throw(make_error_code(errc::function_not_supported), in __copy() [all …]
|
D | directory_iterator.cpp | 32 inline bool set_or_throw(std::error_code& my_ec, in set_or_throw() function 61 using detail::set_or_throw; 199 set_or_throw(m_ec, ec, in directory_iterator() 211 set_or_throw(m_ec, ec, "directory_iterator::operator++()"); in __increment() 238 if (m_ec) set_or_throw(m_ec, ec, "recursive_directory_iterator", p); in recursive_directory_iterator() 295 set_or_throw(m_ec, ec, "recursive_directory_iterator::operator++()"); in __advance() 315 set_or_throw(m_ec, ec, in __try_recursion()
|