Home
last modified time | relevance | path

Searched refs:tmpDir (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Tools/Scripts/webkitperl/
Dhttpd.pm61 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 . ".";
292 …my $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRun…
296 …$currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunnin…
316 $myLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getNextAvailableLockNumber());
/external/webkit/Source/WebCore/platform/efl/
DFileSystemEfl.cpp73 const char* tmpDir = getenv("TMPDIR"); in openTemporaryFile() local
75 if (!tmpDir) in openTemporaryFile()
76 tmpDir = "/tmp"; in openTemporaryFile()
78 if (snprintf(buffer, PATH_MAX, "%s/%sXXXXXX", tmpDir, prefix.utf8().data()) >= PATH_MAX) in openTemporaryFile()
/external/webkit/Source/WebKit/gtk/tests/
Dtestdownload.c37 gchar* tmpDir; in test_webkit_download_create() local
50 tmpDir = g_filename_to_uri(g_get_tmp_dir(), NULL, NULL); in test_webkit_download_create()
51 webkit_download_set_destination_uri(download, tmpDir); in test_webkit_download_create()
52 g_assert_cmpstr(tmpDir, ==, webkit_download_get_destination_uri(download));; in test_webkit_download_create()
53 g_free(tmpDir); in test_webkit_download_create()
/external/icu4c/tools/pkgdata/
Dpkgdata.cpp414 o.tmpDir = options[TEMPDIR].value; in main()
416 o.tmpDir = o.targetDir; in main()
533 char tmpDir[SMALL_BUFFER_MAX_SIZE] = ""; in pkg_executeOptions() local
559 uprv_strcpy(tmpDir, o->tmpDir); in pkg_executeOptions()
560 uprv_strcat(tmpDir, PKGDATA_FILE_SEP_STRING); in pkg_executeOptions()
562 uprv_strcpy(datFileNamePath, tmpDir); in pkg_executeOptions()
672 writeAssemblyCode(datFileNamePath, o->tmpDir, o->entryName, NULL, gencFilePath); in pkg_executeOptions()
696 writeObjectCode(datFileNamePath, o->tmpDir, o->entryName, NULL, NULL, gencFilePath); in pkg_executeOptions()
1301 o->tmpDir, in pkg_createWithoutAssemblyCode()
1333 …createCommonDataFile(o->tmpDir, o->shortName, o->entryName, NULL, o->srcDir, o->comment, o->fileLi… in pkg_createWithoutAssemblyCode()
[all …]
Dpkgtypes.h116 const char *tmpDir; member
/external/chromium/base/mac/
Dmac_util.mm252 NSString* tmpDir = NSTemporaryDirectory();
254 if (tmpDir && ![tmpDir hasSuffix:@"/"])
255 tmpDir = [tmpDir stringByAppendingString:@"/"];
258 if ([tmpDir hasPrefix:@"/var/"])
259 privateTmpDir = [@"/private" stringByAppendingString:tmpDir];
261 if ((tmpDir && [filePath hasPrefix:tmpDir]) ||
/external/llvm/utils/lit/lit/
DTestRunner.py455 tmpDir = os.path.join(execdir, 'Output')
456 tmpBase = os.path.join(tmpDir, execbase)
464 tmpDir = tmpDir.replace('\\', '/')
476 ('%T', tmpDir),
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
Dtst_qdeclarativewebview.cpp50 QString tmpDir() const in tmpDir() function in tst_QDeclarativeWebView
90 removeRecursive(tmpDir()); in cleanupTestCase()
98 QWebSettings::enablePersistentStorage(tmpDir()); in basicProperties()
163 QWebSettings::enablePersistentStorage(tmpDir()); in historyNav()
252 QWebSettings::enablePersistentStorage(tmpDir()); in loadError()
/external/webkit/Tools/Scripts/
Dold-run-webkit-tests165 my $tmpDir = "/tmp";
166 my $testResultsDirectory = File::Spec->catdir($tmpDir, "layout-test-results");
/external/webkit/Source/WebKit/qt/
DChangeLog120 (tst_QDeclarativeWebView::tmpDir):