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

/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 12 milliseconds