/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/emailcommon/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 | 122 final String tempPath = temp.getAbsolutePath(); 129 sync.pullFile(remoteFilePath, tempPath, monitor); 139 open(tempPath); 149 protected void open(String tempPath) { 153 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 | 135 llvm::SmallString<64> tempPath; 136 tempPath = path::filename(origFE->getName()); 137 tempPath += "-%%%%%%%%"; 138 tempPath += path::extension(origFE->getName()); 140 if (fs::unique_file(tempPath.str(), fd, tempPath) != llvm::errc::success) 141 return report(std::string("Could not create file: ") + tempPath.c_str(), 149 const FileEntry *newE = FileMgr->getFile(tempPath);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
DeviceView.java | 146 final String tempPath = temp.getAbsolutePath(); 152 sync.pullFile(remoteFilePath, tempPath, monitor); 163 open(tempPath); 231 String tempPath = temp.getAbsolutePath(); 236 command[2] = tempPath; 241 IFileStore fileStore = EFS.getLocalFileSystem().getStore(new Path(tempPath)); 469 protected void open(String tempPath) { 470 if (DdmsPlugin.getDefault().launchTraceview(tempPath) == false) { 471 super.open(tempPath);
|
/system/core/init/ |
property_service.c | 260 const char *tempPath = PERSISTENT_PROPERTY_DIR "/.temp"; 266 fd = open(tempPath, O_WRONLY|O_CREAT|O_TRUNC, 0600); 268 ERROR("Unable to write persistent property to temp file %s errno: %d\n", tempPath, errno); 274 if (rename(tempPath, path)) { 275 unlink(tempPath); 276 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 | 152 jstring tempPath, [all...] |
/frameworks/base/media/java/android/media/videoeditor/ |
MediaArtistNativeHelper.java | [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |
sqlite3.c.orig | [all...] |