Home
last modified time | relevance | path

Searched refs:tpath (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebKitTools/Scripts/
Dmake-script-test-wrappers64 my $tpath = $tfile;
67 if ($tpath =~ s:/(script-tests)/TEMPLATE.html$::) {
71 print "Inappropriate position of a template: ${tpath}\n";
75 print "${tpath}\n";
78 chdir($tpath);
/external/clearsilver/python/examples/base/
Dhandle_error.py99 tpath = os.path.join (DUMP_DIR, "tmp", fname)
101 hdf.writeFile(tpath)
102 os.rename(tpath, npath)
/external/clearsilver/util/
Dneo_hdf.c1296 char tpath[_POSIX_PATH_MAX]; in hdf_write_file_atomic() local
1299 snprintf(tpath, sizeof(tpath), "%s.%5.5f.%d", path, ne_timef(), count++); in hdf_write_file_atomic()
1301 fp = fopen(tpath, "w"); in hdf_write_file_atomic()
1303 return nerr_raise_errno (NERR_IO, "Unable to open %s for writing", tpath); in hdf_write_file_atomic()
1311 unlink(tpath); in hdf_write_file_atomic()
1314 if (rename(tpath, path) == -1) in hdf_write_file_atomic()
1316 unlink (tpath); in hdf_write_file_atomic()
1318 tpath, path); in hdf_write_file_atomic()