Home
last modified time | relevance | path

Searched refs:tempPath (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/platform/win/
DFileSystemWin.cpp193 char tempPath[MAX_PATH]; in openTemporaryFile() local
194 int tempPathLength = ::GetTempPathA(_countof(tempPath), tempPath); in openTemporaryFile()
195 if (tempPathLength <= 0 || tempPathLength > _countof(tempPath)) in openTemporaryFile()
217 if (!PathCombineA(proposedPath, tempPath, tempFile)) in openTemporaryFile()
279 WCHAR tempPath[MAX_PATH]; in safeCreateFile() local
280 if (!GetTempFileNameW(tempDirPath, L"WEBKIT", 0, tempPath)) in safeCreateFile()
283 …HANDLE tempFileHandle = CreateFileW(tempPath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, F… in safeCreateFile()
296 …if (!MoveFileExW(tempPath, destination.charactersWithNullTermination(), MOVEFILE_REPLACE_EXISTING … in safeCreateFile()
DClipboardWin.cpp242 WCHAR tempPath[MAX_PATH]; in createGlobalHDropContent() local
244 if (!::GetTempPath(ARRAYSIZE(tempPath), tempPath)) in createGlobalHDropContent()
246 if (!::PathAppend(tempPath, fileName.charactersWithNullTermination())) in createGlobalHDropContent()
248 LPCWSTR foundExtension = ::PathFindExtension(tempPath); in createGlobalHDropContent()
254 ::PathRemoveExtension(tempPath); in createGlobalHDropContent()
256 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1) in createGlobalHDropContent()
/external/webkit/WebCore/platform/gtk/
DFileSystemGtk.cpp229 gchar* tempPath = g_build_filename(g_get_tmp_dir(), filename, NULL); in openTemporaryFile() local
232 int fileDescriptor = g_mkstemp(tempPath); in openTemporaryFile()
235 g_free(tempPath); in openTemporaryFile()
238 CString tempFilePath = tempPath; in openTemporaryFile()
239 g_free(tempPath); in openTemporaryFile()
/external/webkit/WebKitTools/Scripts/
Dsvn-unapply262 my ($fh, $tempPath) = tempfile(basename($fullPath) . "-XXXXXXXX",
267 rename($fullPath, $tempPath);
269 rename($tempPath, $fullPath);
/external/webkit/WebKit/qt/tests/qwebplugindatabase/
Dtst_qwebplugindatabase.cpp115 database->addSearchPath(QDir::tempPath()); in searchPaths()
117 QVERIFY(database->searchPaths().contains(QDir::tempPath())); in searchPaths()
118 directories.append(QDir::tempPath()); in searchPaths()
/external/sqlite/dist/
Dsqlite3.c18238 tempPath[CCHMAXPATH]; in convertUtf8PathToCp() local
18247 rc = UniStrToUcs(uconv, tempPath, (char *)in, CCHMAXPATH); in convertUtf8PathToCp()
18252 rc = UniStrFromUcs(uconv, out, tempPath, CCHMAXPATH); in convertUtf8PathToCp()
18268 tempPath[CCHMAXPATH]; in convertCpPathToUtf8() local
18276 rc = UniStrToUcs(uconv, tempPath, (char *)in, CCHMAXPATH); in convertCpPathToUtf8()
18282 rc = UniStrFromUcs(uconv, out, tempPath, CCHMAXPATH); in convertCpPathToUtf8()