Home
last modified time | relevance | path

Searched refs:tempFile (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Tools/Scripts/
Dbisect-builds134 my $tempFile = createTempFile($testURL);
143 …tAndRunNightly($nightlies[$startIndex]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
156 …untAndRunNightly($nightlies[$endIndex]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
179 … mountAndRunNightly($nightlies[$index]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
203 unlink $tempFile if $tempFile;
213 my ($fh, $tempFile) = tempfile(
222 return $tempFile;
365 my ($filename, $directory, $safari, $tempFile) = @_;
397 $tempFile ||= "";
398 `DYLD_FRAMEWORK_PATH=$frameworkPath WEBKIT_UNSET_DYLD_FRAMEWORK_PATH=YES $safari $tempFile`;
/external/webkit/Source/WebCore/platform/wince/
DFileSystemWinCE.cpp206 …wchar_t tempFile[] = L"XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to… in openTemporaryFile() local
208 if (!CryptGenRandom(hCryptProv, randomPartLength * 2, reinterpret_cast<BYTE*>(tempFile))) in openTemporaryFile()
215 tempFile[i] = validChars[tempFile[i] % (sizeof(validChars) - 1)]; in openTemporaryFile()
217 ASSERT(wcslen(tempFile) * 2 == sizeof(tempFile) - 2); in openTemporaryFile()
219 proposedPath = pathByAppendingComponent(String(tempPath), String(tempFile)); in openTemporaryFile()
/external/webkit/Source/WebCore/platform/win/
DFileSystemWin.cpp209 …char tempFile[] = "XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to 8.3… in openTemporaryFile() local
211 if (!CryptGenRandom(hCryptProv, randomPartLength, reinterpret_cast<BYTE*>(tempFile))) in openTemporaryFile()
218 tempFile[i] = validChars[tempFile[i] % (sizeof(validChars) - 1)]; in openTemporaryFile()
220 ASSERT(strlen(tempFile) == sizeof(tempFile) - 1); in openTemporaryFile()
222 if (!PathCombineA(proposedPath, tempPath, tempFile)) in openTemporaryFile()
/external/webkit/Source/WebCore/platform/qt/
DFileSystemQt.cpp120 …QTemporaryFile* tempFile = new QTemporaryFile(QDir::tempPath() + QLatin1Char('/') + QString(prefix… in openTemporaryFile() local
121 tempFile->setAutoRemove(false); in openTemporaryFile()
122 QFile* temp = tempFile; in openTemporaryFile()
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
DFileLockTest.java58 File tempFile = File.createTempFile("testing", "tmp"); in setUp() local
59 tempFile.deleteOnExit(); in setUp()
60 RandomAccessFile randomAccessFile = new RandomAccessFile(tempFile, "rw"); in setUp()
/external/webkit/Source/WebCore/platform/brew/
DFileSystemBrew.cpp213 IFile* tempFile = IFILEMGR_OpenFile(fileMgr.get(), filename.utf8().data(), _OFM_CREATE); in openTemporaryFile() local
214 if (tempFile) { in openTemporaryFile()
215 handle = tempFile; in openTemporaryFile()
/external/svox/pico/src/com/svox/pico/
DCheckVoiceData.java114 File tempFile = new File(PICO_LINGWARE_PATH + filename); in fileExists() local
116 if ((!tempFile.exists()) && (!tempFileSys.exists())) { in fileExists()
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
DPropertyChangeSupportTest.java47 private File tempFile; field in PropertyChangeSupportTest
51 tempFile = File.createTempFile("beans", ".ser"); in setUp()
56 tempFile.delete(); in tearDown()
57 tempFile = null; in tearDown()
1467 oos = new ObjectOutputStream(new FileOutputStream(tempFile)); in writePropertyChangeListeners()
1495 ois = new ObjectInputStream(new FileInputStream(tempFile)); in readPropertyChangeListeners()
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
DPluginObject.cpp778 FILE* tempFile = fopen(path, "w"); in testPostURLFile() local
779 if (!tempFile) in testPostURLFile()
782 if (!fwrite(contentsString.UTF8Characters, contentsString.UTF8Length, 1, tempFile)) in testPostURLFile()
785 fclose(tempFile); in testPostURLFile()
/external/sonivox/arm-wt-22k/lib_src/
Deas_mdls.c814 EAS_FILE_HANDLE tempFile; in Parse_ptbl() local
836 …if ((result = EAS_HWDupHandle(pDLSData->hwInstData, pDLSData->fileHandle, &tempFile)) != EAS_SUCCE… in Parse_ptbl()
844 … if ((result = EAS_HWGetDWord(pDLSData->hwInstData, tempFile, &temp, EAS_FALSE)) != EAS_SUCCESS) in Parse_ptbl()
849 EAS_HWCloseFile(pDLSData->hwInstData, tempFile); in Parse_ptbl()
859 EAS_HWCloseFile(pDLSData->hwInstData, tempFile); in Parse_ptbl()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DScannerTest.java277 File tempFile = File.createTempFile("harmony", "test"); in test_ConstructorLjava_nio_channels_ReadableByteChannel() local
278 tempFile.deleteOnExit(); in test_ConstructorLjava_nio_channels_ReadableByteChannel()
279 FileOutputStream os = new FileOutputStream(tempFile); in test_ConstructorLjava_nio_channels_ReadableByteChannel()
283 FileInputStream is = new FileInputStream(tempFile); in test_ConstructorLjava_nio_channels_ReadableByteChannel()
/external/sqlite/dist/
Dsqlite3.c39074 u8 tempFile; /* zFilename is a temporary file */
39274 assert( p->tempFile==0 || p->eLock==EXCLUSIVE_LOCK );
39275 assert( p->tempFile==0 || pPager->changeCountDone );
39310 assert( sqlite3PcacheRefCount(pPager->pPCache)==0 || pPager->tempFile );
39428 , (int)p->tempFile, (int)p->memDb, (int)p->useJournal
39568 if( !pPager->tempFile ){
40242 pPager->changeCountDone = pPager->tempFile;
40394 if( !pPager->tempFile ){
40981 assert( isOpen(pPager->fd) || pPager->tempFile );
40983 if( pPager->tempFile
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c39046 u8 tempFile; /* zFilename is a temporary file */
39246 assert( p->tempFile==0 || p->eLock==EXCLUSIVE_LOCK );
39247 assert( p->tempFile==0 || pPager->changeCountDone );
39282 assert( sqlite3PcacheRefCount(pPager->pPCache)==0 || pPager->tempFile );
39400 , (int)p->tempFile, (int)p->memDb, (int)p->useJournal
39540 if( !pPager->tempFile ){
40214 pPager->changeCountDone = pPager->tempFile;
40366 if( !pPager->tempFile ){
40953 assert( isOpen(pPager->fd) || pPager->tempFile );
40955 if( pPager->tempFile
[all …]
/external/webkit/Tools/
DChangeLog-2011-02-1621543 returns with false as tempFile can't be opened.