Home | History | Annotate | Download | only in util

Lines Matching refs:tpath

1296   char tpath[_POSIX_PATH_MAX];
1299 snprintf(tpath, sizeof(tpath), "%s.%5.5f.%d", path, ne_timef(), count++);
1301 fp = fopen(tpath, "w");
1303 return nerr_raise_errno (NERR_IO, "Unable to open %s for writing", tpath);
1311 unlink(tpath);
1314 if (rename(tpath, path) == -1)
1316 unlink (tpath);
1318 tpath, path);