Home | History | Annotate | Download | only in Support

Lines Matching refs:is_local

455 std::error_code is_local(const Twine &path, bool &result);
457 /// @brief Version of is_local accepting an open file descriptor.
458 std::error_code is_local(int FD, bool &result);
460 /// @brief Simpler version of is_local for clients that don't need to
462 inline bool is_local(const Twine &Path) {
464 return !is_local(Path, Result) && Result;
467 /// @brief Simpler version of is_local accepting an open file descriptor for
469 inline bool is_local(int FD) {
471 is_local(FD, Result) && Result;