Home | History | Annotate | Download | only in Support

Lines Matching refs:ec

617   if (error_code ec = current_path(current_dir)) return ec;
660 if (error_code ec = fs::exists(parent, parent_exists)) return ec;
663 if (error_code ec = create_directories(parent, existed)) return ec;
683 if (error_code ec = status(path, st))
684 return ec;
695 if (error_code ec = status(path, st))
696 return ec;
707 if (error_code ec = status(path, st))
708 return ec;
733 if (error_code ec = get_magic(path, Magic.size(), Buffer)) {
734 if (ec == errc::value_too_large) {
739 return ec;
861 error_code ec = get_magic(path, Magic.capacity(), Magic);
862 if (ec && ec != errc::value_too_large)
863 return ec;
873 error_code ec;
874 directory_iterator i(path, ec);
875 if (ec) return ec;
876 for (directory_iterator e; i != e; i.increment(ec)) {
877 if (ec) return ec;
879 if (error_code ec = i->status(st)) return ec;
880 if (error_code ec = remove_all_r(i->path(), st.type(), count)) return ec;
883 if (error_code ec = remove(path, obviously_this_exists)) return ec;
888 if (error_code ec = remove(path, obviously_this_exists)) return ec;
902 if (error_code ec = status(path, fs))
903 return ec;