Home | History | Annotate | Download | only in webkitperl

Lines Matching refs:tmpDir

62 my $tmpDir = "/tmp";
65 my $exclusiveLockFile = File::Spec->catfile($tmpDir, "WebKit.lock");
66 my $httpdPidDir = File::Spec->catfile($tmpDir, "WebKit");
280 opendir(TMPDIR, $tmpDir) or die "Could not open " . $tmpDir . ".";
281 my @lockFiles = grep {m/^$httpdLockPrefix\d+$/} readdir(TMPDIR);
283 closedir(TMPDIR);
307 my $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning());
311 $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning());
331 $myLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getNextAvailableLockNumber());