/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 | 147 SmallString<64> tempPath; 148 tempPath = path::filename(origFE->getName()); 149 tempPath += "-%%%%%%%%"; 150 tempPath += path::extension(origFE->getName()); 152 if (fs::unique_file(tempPath.str(), fd, tempPath) != llvm::errc::success) 153 return report("Could not create file: " + tempPath.str(), Diag); 160 const FileEntry *newE = FileMgr->getFile(tempPath);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
DeviceView.java | 150 final String tempPath = temp.getAbsolutePath(); 157 sync.pullFile(remoteFilePath, tempPath, monitor); 169 open(tempPath); 239 String tempPath = temp.getAbsolutePath(); 244 command[2] = tempPath; 249 IFileStore fileStore = EFS.getLocalFileSystem().getStore(new Path(tempPath)); 481 protected void open(String tempPath) { 482 if (DdmsPlugin.getDefault().launchTraceview(tempPath) == false) { 483 super.open(tempPath);
|
/system/core/init/ |
property_service.c | 261 const char *tempPath = PERSISTENT_PROPERTY_DIR "/.temp"; 267 fd = open(tempPath, O_WRONLY|O_CREAT|O_TRUNC, 0600); 269 ERROR("Unable to write persistent property to temp file %s errno: %d\n", tempPath, errno); 275 if (rename(tempPath, path)) { 276 unlink(tempPath); 277 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path);
|
/libcore/luni/src/main/java/java/util/logging/ |
FileHandler.java | 264 String tempPath = System.getProperty("java.io.tmpdir"); 265 boolean tempPathHasSepEnd = (tempPath == null ? false : tempPath 292 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());
|
/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...] |