HomeSort by relevance Sort by last modified time
    Searched defs:TempFile (Results 1 - 14 of 14) sorted by null

  /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...]
  /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/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/llvm/tools/lto/
Makefile 54 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
56 -Wl,-object_path_lto -Wl,$(TempFile)
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
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...]
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);
  /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_;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
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
  /external/clang/lib/Frontend/
CompilerInstance.cpp 506 std::string OutFile, TempFile;
561 OSFile = TempFile = TempPath.str();
584 *TempPathName = TempFile;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 1143 milliseconds