HomeSort by relevance Sort by last modified time
    Searched refs:tempPath (Results 1 - 24 of 24) sorted by null

  /external/webkit/Source/WebCore/platform/win/
FileSystemWin.cpp 198 char tempPath[MAX_PATH];
199 int tempPathLength = ::GetTempPathA(WTF_ARRAY_LENGTH(tempPath), tempPath);
200 if (tempPathLength <= 0 || tempPathLength > WTF_ARRAY_LENGTH(tempPath))
222 if (!PathCombineA(proposedPath, tempPath, tempFile))
305 WCHAR tempPath[MAX_PATH];
306 if (!GetTempFileNameW(tempDirPath, L"WEBKIT", 0, tempPath))
309 HANDLE tempFileHandle = CreateFileW(tempPath, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
322 if (!MoveFileExW(tempPath, destination.charactersWithNullTermination(), MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED))
ClipboardWin.cpp 208 WCHAR tempPath[MAX_PATH];
210 if (!::GetTempPath(WTF_ARRAY_LENGTH(tempPath), tempPath))
212 if (!::PathAppend(tempPath, fileName.charactersWithNullTermination()))
214 LPCWSTR foundExtension = ::PathFindExtension(tempPath);
220 ::PathRemoveExtension(tempPath);
222 if (swprintf_s(filePath, MAX_PATH, TEXT("%s-%d%s"), tempPath, i, extension) == -1)
  /packages/apps/Email/src/org/apache/james/mime4j/message/
TempFileBinaryBody.java 32 import org.apache.james.mime4j.util.TempPath;
56 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
57 tempFile = tempPath.createTempFile("attachment", ".bin");
TempFileTextBody.java 36 import org.apache.james.mime4j.util.TempPath;
61 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
62 tempFile = tempPath.createTempFile("attachment", ".txt");
MemoryBinaryBody.java 33 import org.apache.james.mime4j.util.TempPath;
57 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
MemoryTextBody.java 37 import org.apache.james.mime4j.util.TempPath;
62 TempPath tempPath = TempStorage.getInstance().getRootTempPath();
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/handler/
MethodProfilingHandler.java 127 final String tempPath = temp.getAbsolutePath();
135 sync.pullFile(remoteFilePath, tempPath, monitor);
146 open(tempPath);
156 protected void open(String tempPath) {
160 command[1] = tempPath;
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 194 wchar_t tempPath[MAX_PATH];
195 int tempPathLength = ::GetTempPath(WTF_ARRAY_LENGTH(tempPath), tempPath);
196 if (tempPathLength <= 0 || tempPathLength > WTF_ARRAY_LENGTH(tempPath))
219 proposedPath = pathByAppendingComponent(String(tempPath), String(tempFile));
  /external/webkit/Tools/Scripts/
svn-unapply 182 my ($fh, $tempPath) = tempfile(basename($fullPath) . "-XXXXXXXX",
187 rename($fullPath, $tempPath);
189 rename($tempPath, $fullPath);
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 149 SmallString<64> tempPath;
150 tempPath = path::filename(origFE->getName());
151 tempPath += "-%%%%%%%%";
152 tempPath += path::extension(origFE->getName());
154 if (fs::unique_file(tempPath.str(), fd, tempPath) != llvm::errc::success)
155 return report("Could not create file: " + tempPath.str(), Diag);
162 const FileEntry *newE = FileMgr->getFile(tempPath);
  /system/core/init/
property_service.c 323 const char *tempPath = PERSISTENT_PROPERTY_DIR "/.temp";
329 fd = open(tempPath, O_WRONLY|O_CREAT|O_TRUNC, 0600);
331 ERROR("Unable to write persistent property to temp file %s errno: %d\n", tempPath, errno);
337 if (rename(tempPath, path)) {
338 unlink(tempPath);
339 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path);
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 266 String tempPath = System.getProperty("java.io.tmpdir");
267 boolean tempPathHasSepEnd = (tempPath == null ? false : tempPath
294 sb.append(value, cur, next - cur - 1).append(tempPath);
  /external/webkit/Source/WebCore/platform/brew/
FileSystemBrew.cpp 193 String tempPath("fs:/~/tmp");
198 IFILEMGR_MkDir(fileMgr.get(), tempPath.utf8().data());
205 builder.append(tempPath);
  /external/webkit/Source/WebCore/platform/gtk/
FileSystemGtk.cpp 233 GOwnPtr<gchar> tempPath(g_build_filename(g_get_tmp_dir(), filename.get(), NULL));
234 GRefPtr<GFile> file = adoptGRef(g_file_new_for_path(tempPath.get()));
239 return String::fromUTF8(tempPath.get());
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DeviceView.java 170 final String tempPath = temp.getAbsolutePath();
177 sync.pullFile(remoteFilePath, tempPath, monitor);
189 open(tempPath);
259 String tempPath = temp.getAbsolutePath();
264 command[2] = tempPath;
269 IFileStore fileStore = EFS.getLocalFileSystem().getStore(new Path(tempPath));
525 protected void open(String tempPath) {
526 if (DdmsPlugin.getDefault().launchTraceview(tempPath) == false) {
527 super.open(tempPath);
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
FileSystemQt.cpp 120 QTemporaryFile* tempFile = new QTemporaryFile(QDir::tempPath() + QLatin1Char('/') + QString(prefix));
  /external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp 117 database->addSearchPath(QDir::tempPath());
119 QVERIFY(database->searchPaths().contains(QDir::tempPath()));
120 directories.append(QDir::tempPath());
  /external/webkit/Tools/DumpRenderTree/chromium/
LayoutTestController.cpp     [all...]
  /external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
tst_qdeclarativewebview.cpp 52 static QString tmpd = QDir::tempPath() + "/tst_qdeclarativewebview-"
  /frameworks/base/media/jni/mediaeditor/
VideoEditorMain.cpp 151 jstring tempPath,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /frameworks/base/media/java/android/media/videoeditor/
MediaArtistNativeHelper.java     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 610 milliseconds