Lines Matching defs:path
40 atf::utils::cat_file(const std::string& path, const std::string& prefix)
42 atf_utils_cat_file(path.c_str(), prefix.c_str());
52 atf::utils::compare_file(const std::string& path, const std::string& contents)
54 return atf_utils_compare_file(path.c_str(), contents.c_str());
58 atf::utils::create_file(const std::string& path, const std::string& contents)
60 atf_utils_create_file(path.c_str(), "%s", contents.c_str());
64 atf::utils::file_exists(const std::string& path)
66 return atf_utils_file_exists(path.c_str());
78 atf::utils::grep_file(const std::string& regex, const std::string& path)
80 return atf_utils_grep_file("%s", path.c_str(), regex.c_str());
90 atf::utils::redirect(const int fd, const std::string& path)
96 atf_utils_redirect(fd, path.c_str());