Home | History | Annotate | Download | only in Support

Lines Matching refs:is_local

483 std::error_code is_local(const Twine &path, bool &result);
485 /// @brief Version of is_local accepting an open file descriptor.
486 std::error_code is_local(int FD, bool &result);
488 /// @brief Simpler version of is_local for clients that don't need to
490 inline bool is_local(const Twine &Path) {
492 return !is_local(Path, Result) && Result;
495 /// @brief Simpler version of is_local accepting an open file descriptor for
497 inline bool is_local(int FD) {
499 return !is_local(FD, Result) && Result;