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

/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dfs.c203 do_mkdtemp(char *tmpl) argument
207 PRE(strstr(tmpl, "XXXXXX") != NULL);
209 if (mkdtemp(tmpl) == NULL)
211 "with template '%s'", tmpl);
220 do_mkstemp(char *tmpl, int *fdout) argument
224 PRE(strstr(tmpl, "XXXXXX") != NULL);
226 *fdout = mkstemp(tmpl);
229 "with template '%s'", tmpl);

Completed in 1267 milliseconds