OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tempPath
(Results
1 - 12
of
12
) sorted by null
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
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();
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");
/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/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/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))
/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));
/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);
/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
);
/external/webkit/Tools/DumpRenderTree/chromium/
LayoutTestController.cpp
[
all
...]
/external/sqlite/dist/
sqlite3.c
[
all
...]
Completed in 4633 milliseconds