OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TempPath
(Results
1 - 12
of
12
) sorted by null
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempPath.java
26
* @version $Id:
TempPath
.java,v 1.2 2004/10/02 12:41:11 ntherning Exp $
28
public interface
TempPath
{
29
TempPath
createTempPath() throws IOException;
30
TempPath
createTempPath(String prefix) throws IOException;
SimpleTempStorage.java
44
private
TempPath
rootPath = null;
54
private
TempPath
createTempPath(
TempPath
parent, String prefix)
78
private TempFile createTempFile(
TempPath
parent, String prefix,
117
public
TempPath
getRootTempPath() {
121
private class SimpleTempPath implements
TempPath
{
133
* @see org.apache.james.mime4j.util.
TempPath
#createTempFile()
140
* @see org.apache.james.mime4j.util.
TempPath
#createTempFile(java.lang.String, java.lang.String)
149
* @see org.apache.james.mime4j.util.
TempPath
#createTempFile(java.lang.String, java.lang.String, boolean)
159
* @see org.apache.james.mime4j.util.
TempPath
#getAbsolutePath()
[
all
...]
TempStorage.java
60
public abstract
TempPath
getRootTempPath();
/external/llvm/include/llvm/Support/
FileOutputBuffer.h
84
StringRef Path, StringRef
TempPath
);
88
SmallString<128>
TempPath
;
/external/llvm/lib/Support/
FileOutputBuffer.cpp
27
,
TempPath
(TmpPath) {
32
sys::fs::remove(Twine(
TempPath
), Existed);
96
error_code EC = sys::fs::resize_file(Twine(
TempPath
), NewSmallerSize);
102
return sys::fs::rename(Twine(
TempPath
), Twine(FinalPath));
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
MemoryBinaryBody.java
33
import org.apache.james.mime4j.util.
TempPath
;
57
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");
MemoryTextBody.java
37
import org.apache.james.mime4j.util.
TempPath
;
62
TempPath
tempPath
= TempStorage.getInstance().getRootTempPath();
TempFileTextBody.java
36
import org.apache.james.mime4j.util.
TempPath
;
61
TempPath
tempPath
= TempStorage.getInstance().getRootTempPath();
62
tempFile =
tempPath
.createTempFile("attachment", ".txt");
/external/llvm/unittests/Support/
Path.cpp
167
SmallString<64>
TempPath
;
169
fs::createTemporaryFile("prefix", "temp", FileDescriptor,
TempPath
));
173
ASSERT_NO_ERROR(fs::getUniqueID(Twine(
TempPath
), F1));
174
ASSERT_NO_ERROR(fs::getUniqueID(Twine(
TempPath
), F2));
192
ASSERT_NO_ERROR(fs::create_hard_link(Twine(
TempPath
), Twine(TempPath2)));
216
SmallString<64>
TempPath
;
218
fs::createTemporaryFile("prefix", "temp", FileDescriptor,
TempPath
));
222
ASSERT_NO_ERROR(sys::fs::exists(Twine(
TempPath
), TempFileExists));
230
ASSERT_NE(
TempPath
.str(), TempPath2.str());
233
ASSERT_NO_ERROR(fs::status(Twine(
TempPath
), A))
[
all
...]
/external/clang/lib/Frontend/
CompilerInstance.cpp
543
SmallString<128>
TempPath
;
544
TempPath
= OutFile;
545
TempPath
+= "-%%%%%%%%";
548
llvm::sys::fs::createUniqueFile(
TempPath
.str(), fd,
TempPath
);
555
EC = llvm::sys::fs::createUniqueFile(
TempPath
.str(), fd,
TempPath
);
561
OSFile = TempFile =
TempPath
.str();
[
all
...]
ASTUnit.cpp
[
all
...]
Completed in 384 milliseconds