Searched refs:tmpl (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dfs_test.cpp75 atf::fs::path tmpl("testdir.XXXXXX");
76 temp_dir td1(tmpl);
77 temp_dir td2(tmpl);
83 ATF_REQUIRE(!atf::fs::exists(tmpl));
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dfs.c207 do_mkdtemp(char *tmpl) argument
211 PRE(strstr(tmpl, "XXXXXX") != NULL);
213 if (mkdtemp(tmpl) == NULL)
215 "with template '%s'", tmpl);
224 do_mkstemp(char *tmpl, int *fdout) argument
228 PRE(strstr(tmpl, "XXXXXX") != NULL);
230 *fdout = mkstemp(tmpl);
233 "with template '%s'", tmpl);

Completed in 200 milliseconds