OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tempPath
(Results
1 - 14
of
14
) sorted by null
/external/webkit/WebCore/platform/win/
FileSystemWin.cpp
194
char
tempPath
[MAX_PATH];
195
int tempPathLength = ::GetTempPathA(_countof(
tempPath
),
tempPath
);
196
if (tempPathLength <= 0 || tempPathLength > _countof(
tempPath
))
218
if (!PathCombineA(proposedPath,
tempPath
, tempFile))
280
WCHAR
tempPath
[MAX_PATH];
281
if (!GetTempFileNameW(tempDirPath, L"WEBKIT", 0,
tempPath
))
284
HANDLE tempFileHandle = CreateFileW(
tempPath
, GENERIC_READ | GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
297
if (!MoveFileExW(
tempPath
, destination.charactersWithNullTermination(), MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED))
ClipboardWin.cpp
235
WCHAR
tempPath
[MAX_PATH];
237
if (!::GetTempPath(ARRAYSIZE(
tempPath
),
tempPath
))
239
if (!::PathAppend(
tempPath
, fileName.charactersWithNullTermination()))
241
LPCWSTR foundExtension = ::PathFindExtension(
tempPath
);
247
::PathRemoveExtension(
tempPath
);
249
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
116
String
tempPath
= temp.getAbsolutePath();
119
SyncResult result = pull(sync,
tempPath
, remoteFilePath);
123
openInTraceview(
tempPath
);
134
private void openInTraceview(String
tempPath
) {
138
command[1] =
tempPath
;
/external/webkit/WebCore/platform/gtk/
FileSystemGtk.cpp
229
gchar*
tempPath
= g_build_filename(g_get_tmp_dir(), filename, NULL);
232
int fileDescriptor = g_mkstemp(
tempPath
);
235
g_free(
tempPath
);
238
CString tempFilePath =
tempPath
;
239
g_free(
tempPath
);
/external/webkit/WebCore/platform/wince/
FileSystemWince.cpp
175
wchar_t
tempPath
[MAX_PATH];
176
int tempPathLength = ::GetTempPath(_countof(
tempPath
),
tempPath
);
177
if (tempPathLength <= 0 || tempPathLength > _countof(
tempPath
))
200
proposedPath = pathByAppendingComponent(String(
tempPath
), String(tempFile));
/system/core/init/
property_service.c
265
const char *
tempPath
= PERSISTENT_PROPERTY_DIR "/.temp";
271
fd = open(
tempPath
, O_WRONLY|O_CREAT|O_TRUNC, 0600);
273
ERROR("Unable to write persistent property to temp file %s errno: %d\n",
tempPath
, errno);
279
if (rename(
tempPath
, path)) {
280
unlink(
tempPath
);
281
ERROR("Unable to rename persistent property file %s to %s\n",
tempPath
, path);
/libcore/luni/src/main/java/java/util/logging/
FileHandler.java
276
String
tempPath
= System.getProperty("java.io.tmpdir");
277
boolean tempPathHasSepEnd = (
tempPath
== null ? false :
tempPath
304
sb.append(value, cur, next - cur - 1).append(
tempPath
);
/external/webkit/WebKitTools/Scripts/
svn-unapply
210
my ($fh, $
tempPath
) = tempfile(basename($fullPath) . "-XXXXXXXX",
215
rename($fullPath, $
tempPath
);
217
rename($
tempPath
, $fullPath);
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DeviceView.java
138
String
tempPath
= temp.getAbsolutePath();
139
result = pull(sync,
tempPath
, remoteFilePath);
141
open(
tempPath
);
203
String
tempPath
= temp.getAbsolutePath();
208
command[2] =
tempPath
;
213
IFileStore fileStore = EFS.getLocalFileSystem().getStore(new Path(
tempPath
));
/external/webkit/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp
117
database->addSearchPath(QDir::
tempPath
());
119
QVERIFY(database->searchPaths().contains(QDir::
tempPath
()));
120
directories.append(QDir::
tempPath
());
Completed in 877 milliseconds