OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TempFile
(Results
1 - 5
of
5
) 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
...]
/packages/apps/Email/emailcommon/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
469
std::string OutFile,
TempFile
;
493
TempFile
= TempPath.str();
498
if (!
TempFile
.empty())
499
OSFile =
TempFile
;
514
*TempPathName =
TempFile
;
/prebuilt/common/ant/
ant.jar
Completed in 241 milliseconds