Lines Matching defs:tmpfile
169 static int create_localized_message_file(char **tmpfile);
637 char *tmpfile = NULL;
673 if ((error = create_localized_message_file(&tmpfile)) == 0) {
688 newsel = stralloccat(3, "document('", tmpfile, "')");
734 if (tmpfile != NULL) {
736 unlink(tmpfile);
738 free(tmpfile);
1256 * @param tmpfile
1263 char **tmpfile)
1271 *tmpfile = stralloccat(3, "/tmp/", ELEMENT_L10N, "XXXXXX");
1273 if (*tmpfile == NULL) {
1281 if ((fildes = mkstemp(*tmpfile)) != -1) {
1287 "could not open file for writing: %s"), *tmpfile);
1298 *tmpfile);