HomeSort by: relevance | last modified time | path
    Searched defs:auto_file (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/kyua-cli/dist/utils/fs/
auto_cleaners.hpp 68 class auto_file { class in namespace:utils::fs
74 explicit auto_file(const path&);
75 ~auto_file(void);
77 static auto_file mkstemp(const std::string&);
auto_cleaners_test.cpp 107 fs::auto_file auto_file(file);
108 ATF_REQUIRE_EQ(file, auto_file.file());
113 fs::auto_file auto_file_copy(auto_file);
128 fs::auto_file auto_file(file);
129 ATF_REQUIRE_EQ(file, auto_file.file());
132 auto_file.remove();
133 auto_file.remove()
146 fs::auto_file auto_file = fs::auto_file::mkstemp(path_template); local
    [all...]
auto_cleaners.cpp 150 /// Shared implementation of the auto_file.
151 struct utils::fs::auto_file::impl {
180 /// See the remove() method of the auto_file class for details.
195 /// Constructs a new auto_file and grabs ownership of a file.
198 fs::auto_file::auto_file(const path& file_) : function in class:fs::auto_file
208 fs::auto_file::~auto_file(void)
222 fs::auto_file
223 fs::auto_file::mkstemp(const std::string& path_template
    [all...]

Completed in 26 milliseconds