Searched refs:m_ec1 (Results 1 – 1 of 1) sorted by relevance
/external/libcxx/src/experimental/filesystem/ |
D | operations.cpp | 212 std::error_code m_ec1; in __copy() local 215 ? detail::posix_lstat(from, f_st, &m_ec1) in __copy() 216 : detail::posix_stat(from, f_st, &m_ec1); in __copy() 217 if (m_ec1) in __copy() 218 return set_or_throw(m_ec1, ec, "copy", from, to); in __copy() 221 const file_status t = sym_status ? detail::posix_lstat(to, t_st, &m_ec1) in __copy() 222 : detail::posix_stat(to, t_st, &m_ec1); in __copy() 225 return set_or_throw(m_ec1, ec, "copy", from, to); in __copy()
|