HomeSort by relevance Sort by last modified time
    Searched refs:TempFile (Results 1 - 25 of 27) sorted by null

1 2

  /external/qemu/android/utils/
tempfile.h 20 ** create the file with tempfile_create(), which returns a reference to a TempFile
23 ** you can then call tempfile_path() to retrieve the TempFile's real path to open
24 ** it. the returned path is owned by the TempFile object and should not be freed.
30 typedef struct TempFile TempFile;
32 extern TempFile* tempfile_create( void );
33 extern const char* tempfile_path( TempFile* temp );
34 extern void tempfile_close( TempFile* temp );
tempfile.c 13 #include "android/utils/tempfile.h"
34 ** create the file with tempfile_create(), which returns a reference to a TempFile
37 ** you can then call tempfile_path() to retrieve the TempFile's real path to open
38 ** it. the returned path is owned by the TempFile object and should not be freed.
44 struct TempFile
47 TempFile* next;
51 static TempFile* _all_tempfiles;
53 TempFile*
56 TempFile* tempfile; local
192 TempFile* tempfile; local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempPath.java 40 TempFile createTempFile() throws IOException;
52 TempFile createTempFile(String prefix, String suffix) throws IOException;
69 TempFile createTempFile(String prefix, String suffix,
TempFile.java 27 * @version $Id: TempFile.java,v 1.3 2004/10/02 12:41:11 ntherning Exp $
29 public interface TempFile {
34 * <code>TempFile</code> creates a <code>FileInputStream</code> or any
36 * <code>TempFile</code>'s responsibility to wrap it.
47 * <code>TempFile</code> creates a <code>FileOutputStream</code> or any
49 * <code>TempFile</code>'s responsibility to wrap it.
58 * <code>TempFile</code>. The path may be <code>null</code> if this is
SimpleTempStorage.java 78 private TempFile createTempFile(TempPath parent, String prefix,
135 public TempFile createTempFile() throws IOException {
142 public TempFile createTempFile(String prefix, String suffix)
151 public TempFile createTempFile(String prefix, String suffix,
187 private class SimpleTempFile implements TempFile {
196 * @see org.apache.james.mime4j.util.TempFile#getInputStream()
203 * @see org.apache.james.mime4j.util.TempFile#getOutputStream()
210 * @see org.apache.james.mime4j.util.TempFile#getAbsolutePath()
224 * @see org.apache.james.mime4j.util.TempFile#isInMemory()
231 * @see org.apache.james.mime4j.util.TempFile#length()
    [all...]
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
temporary_file.h 32 // TempFile represents a file used as a temporary between stages in
38 class TempFile {
40 // Create a TempFile.
41 explicit TempFile(Plugin* plugin);
42 ~TempFile();
68 NACL_DISALLOW_COPY_AND_ASSIGN(TempFile);
temporary_file.cc 26 uint32_t TempFile::next_identifier = 0;
28 TempFile::TempFile(Plugin* plugin) : plugin_(plugin),
30 PLUGIN_PRINTF(("TempFile::TempFile\n"));
36 TempFile::~TempFile() {
37 PLUGIN_PRINTF(("TempFile::~TempFile\n"));
40 bool TempFile::SetExistingFd(PP_FileHandle handle)
    [all...]
pnacl_translate_thread.h 35 class TempFile;
53 TempFile* obj_file,
54 TempFile* nexe_file,
124 TempFile* obj_file_;
125 TempFile* nexe_file_;
pnacl_coordinator.h 40 class TempFile;
239 nacl::scoped_ptr<TempFile> obj_file_;
241 nacl::scoped_ptr<TempFile> temp_nexe_file_;
pnacl_translate_thread.cc 36 TempFile* obj_file,
37 TempFile* nexe_file,
pnacl_coordinator.cc 825 obj_file_.reset(new TempFile(plugin_));
    [all...]
  /external/chromium_org/courgette/
memory_allocator.cc 16 // TempFile
18 TempFile::TempFile() : file_(base::kInvalidPlatformFileValue) {
21 TempFile::~TempFile() {
25 void TempFile::Close() {
32 bool TempFile::Create() {
51 bool TempFile::valid() const {
55 base::PlatformFile TempFile::handle() const {
59 bool TempFile::SetSize(size_t size)
    [all...]
memory_allocator.h 64 class TempFile {
66 TempFile();
67 ~TempFile();
133 TempFile file_;
  /external/llvm/runtime/libprofile/
Makefile 48 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/profile_rt-lto.XXXXXX)
50 -Wl,-object_path_lto -Wl,$(TempFile)
  /external/clang/tools/libclang/
Makefile 61 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/clang-lto.XXXXXX)
62 LLVMLibsOptions += -Wl,-object_path_lto -Wl,$(TempFile)
  /external/llvm/tools/lto/
Makefile 54 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
56 -Wl,-object_path_lto -Wl,$(TempFile)
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
TempFileBinaryBody.java 31 import org.apache.james.mime4j.util.TempFile;
37 * Binary body backed by a {@link org.apache.james.mime4j.util.TempFile}.
46 private TempFile tempFile = null;
57 tempFile = tempPath.createTempFile("attachment", ".bin");
59 OutputStream out = tempFile.getOutputStream();
82 return tempFile.getInputStream();
TempFileTextBody.java 35 import org.apache.james.mime4j.util.TempFile;
41 * Text body backed by a {@link org.apache.james.mime4j.util.TempFile}.
50 private TempFile tempFile = null;
62 tempFile = tempPath.createTempFile("attachment", ".txt");
64 OutputStream out = tempFile.getOutputStream();
104 return new InputStreamReader(tempFile.getInputStream());
107 return new InputStreamReader(tempFile.getInputStream(), javaCharset);
115 IOUtils.copy(tempFile.getInputStream(), out);
  /external/v8/test/sputnik/
testcfg.py 54 self.tmpfile = sputnik.TempFile(suffix='.js', prefix='sputnik-', text=True)
  /external/clang/lib/Frontend/
CompilerInstance.cpp 506 std::string OutFile, TempFile;
561 OSFile = TempFile = TempPath.str();
584 *TempPathName = TempFile;
    [all...]
ASTUnit.cpp 203 void ASTUnit::addTemporaryFile(StringRef TempFile) {
204 getOnDiskData(this).TemporaryFiles.push_back(TempFile);
    [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 481 void addTemporaryFile(StringRef TempFile);
    [all...]
  /external/qemu/android/
main.c 44 #include "android/utils/tempfile.h"
    [all...]
  /external/qemu/hw/
goldfish_nand.c 16 #include "android/utils/tempfile.h"
764 TempFile* tmp = tempfile_create();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 

Completed in 733 milliseconds

1 2