Home
last modified time | relevance | path

Searched refs:path_template (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/kyua/utils/fs/
H A Dauto_cleaners_test.cpp88 const std::string path_template("test.XXXXXX"); in ATF_TEST_CASE_BODY() local
91 path_template); in ATF_TEST_CASE_BODY()
92 ATF_REQUIRE(::access((fs::path("tmp") / path_template).c_str(), in ATF_TEST_CASE_BODY()
145 const std::string path_template("test.XXXXXX"); in ATF_TEST_CASE_BODY() local
147 fs::auto_file auto_file = fs::auto_file::mkstemp(path_template); in ATF_TEST_CASE_BODY()
148 ATF_REQUIRE(::access((fs::path("tmp") / path_template).c_str(), in ATF_TEST_CASE_BODY()
H A Dauto_cleaners.cpp121 fs::auto_directory::mkdtemp_public(const std::string& path_template) in mkdtemp_public() argument
124 const fs::path directory_ = fs::mkdtemp_public(path_template); in mkdtemp_public()
229 fs::auto_file::mkstemp(const std::string& path_template) in mkstemp() argument
232 const fs::path file_ = fs::mkstemp(path_template); in mkstemp()
H A Doperations.cpp547 fs::mkdtemp_public(const std::string& path_template) in mkdtemp_public() argument
549 PRE(path_template.find("XXXXXX") != std::string::npos); in mkdtemp_public()
552 const fs::path full_template = tmpdir / path_template; in mkdtemp_public()
599 fs::mkstemp(const std::string& path_template) in mkstemp() argument
601 PRE(path_template.find("XXXXXX") != std::string::npos); in mkstemp()
604 const fs::path full_template = tmpdir / path_template; in mkstemp()