Home
last modified time | relevance | path

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

/freebsd/contrib/kyua/utils/fs/
H A Doperations.cpp552 const fs::path full_template = tmpdir / path_template; in mkdtemp_public() local
554 utils::auto_array< char > buf(new char[full_template.str().length() + 1]); in mkdtemp_public()
555 std::strcpy(buf.get(), full_template.c_str()); in mkdtemp_public()
559 "template %s") % full_template, in mkdtemp_public()
604 const fs::path full_template = tmpdir / path_template; in mkstemp() local
606 utils::auto_array< char > buf(new char[full_template.str().length() + 1]); in mkstemp()
607 std::strcpy(buf.get(), full_template.c_str()); in mkstemp()
611 "%s") % full_template, original_errno); in mkstemp()