Searched refs:tempFile (Results 1 - 10 of 10) sorted by relevance

/external/webkit/WebCore/platform/win/
H A DFileSystemWin.cpp205 char tempFile[] = "XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to 8.3 short file names) local
207 if (!CryptGenRandom(hCryptProv, randomPartLength, reinterpret_cast<BYTE*>(tempFile)))
214 tempFile[i] = validChars[tempFile[i] % (sizeof(validChars) - 1)];
216 ASSERT(strlen(tempFile) == sizeof(tempFile) - 1);
218 if (!PathCombineA(proposedPath, tempPath, tempFile))
/external/webkit/WebCore/platform/wince/
H A DFileSystemWince.cpp187 wchar_t tempFile[] = L"XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to 8.3 short file names) local
189 if (!CryptGenRandom(hCryptProv, randomPartLength * 2, reinterpret_cast<BYTE*>(tempFile)))
196 tempFile[i] = validChars[tempFile[i] % (sizeof(validChars) - 1)];
198 ASSERT(wcslen(tempFile) * 2 == sizeof(tempFile) - 2);
200 proposedPath = pathByAppendingComponent(String(tempPath), String(tempFile));
/external/webkit/WebCore/platform/qt/
H A DFileSystemQt.cpp120 QTemporaryFile* tempFile = new QTemporaryFile(QLatin1String(prefix)); local
121 tempFile->setAutoRemove(false);
122 QFile* temp = tempFile;
/external/webkit/WebKitTools/Scripts/
H A Dbisect-builds133 my $tempFile = createTempFile($testURL);
142 mountAndRunNightly($nightlies[$startIndex]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
155 mountAndRunNightly($nightlies[$endIndex]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
178 mountAndRunNightly($nightlies[$index]->{file}, $nightlyDownloadDirectory, $safariPath, $tempFile);
200 unlink $tempFile if $tempFile;
210 my ($fh, $tempFile) = tempfile(
219 return $tempFile;
362 my ($filename, $directory, $safari, $tempFile) = @_;
394 $tempFile ||
[all...]
/external/webkit/JavaScriptCore/pcre/
H A Ddftables245 my ($fh, $tempFile) = tempfile(
266 open(CPP, "$preprocessor \"$tempFile\" |") or die "$!";
272 unlink $tempFile;
/external/svox/pico/src/com/svox/pico/
H A DCheckVoiceData.java114 File tempFile = new File(PICO_LINGWARE_PATH + filename);
116 if ((!tempFile.exists()) && (!tempFileSys.exists())) {
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
H A DPluginObject.cpp655 FILE* tempFile = fopen(path, "w"); local
656 if (!tempFile)
659 fwrite(contentsString.UTF8Characters, contentsString.UTF8Length, 1, tempFile);
660 fclose(tempFile);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.c814 EAS_FILE_HANDLE tempFile; local
836 if ((result = EAS_HWDupHandle(pDLSData->hwInstData, pDLSData->fileHandle, &tempFile)) != EAS_SUCCESS)
844 if ((result = EAS_HWGetDWord(pDLSData->hwInstData, tempFile, &temp, EAS_FALSE)) != EAS_SUCCESS)
849 EAS_HWCloseFile(pDLSData->hwInstData, tempFile);
859 EAS_HWCloseFile(pDLSData->hwInstData, tempFile);
/external/sqlite/dist/
H A Dsqlite3.c.orig[all...]
H A Dsqlite3.c31685 u8 tempFile; /* zFilename is a temporary file */ member in struct:Pager
34549 int tempFile = 0; /* True for temp files (incl. in-memory files) */ local
[all...]

Completed in 6677 milliseconds