Home | History | Annotate | Download | only in webkitperl

Lines Matching refs:tmpDir

61 my $tmpDir = "/tmp";
62 $tmpDir = convertMsysPath($tmpDir) if isMsys();
65 my $exclusiveLockFile = File::Spec->catfile($tmpDir, "WebKit.lock");
66 my $httpdPidDir = File::Spec->catfile($tmpDir, "WebKit");
265 opendir(TMPDIR, $tmpDir) or die "Could not open " . $tmpDir . ".";
266 my @lockFiles = grep {m/^$httpdLockPrefix\d+$/} readdir(TMPDIR);
268 closedir(TMPDIR);
292 my $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning());
296 $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning());
316 $myLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getNextAvailableLockNumber());