HomeSort by relevance Sort by last modified time
    Searched full:tempfile (Results 1 - 25 of 543) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/mac/action-envvars/action/
action.gyp 14 '<(SHARED_INTERMEDIATE_DIR)/tempfile',
17 'action': ['./action.sh', '<(SHARED_INTERMEDIATE_DIR)/tempfile' ],
21 '<(SHARED_INTERMEDIATE_DIR)/tempfile',
27 'action': ['cp', '<(SHARED_INTERMEDIATE_DIR)/tempfile',
  /external/qemu/android/utils/
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...]
tempfile.h 24 ** create the file with tempfile_create(), which returns a reference to a TempFile
27 ** you can then call tempfile_path() to retrieve the TempFile's real path to open
28 ** it. the returned path is owned by the TempFile object and should not be freed.
34 typedef struct TempFile TempFile;
36 extern TempFile* tempfile_create( void );
37 extern const char* tempfile_path( TempFile* temp );
38 extern void tempfile_close( TempFile* temp );
  /external/chromium_org/native_client_sdk/src/tools/tests/
fix_deps_test.py 7 import tempfile namespace
26 self.tempfile = None
29 if self.tempfile:
30 os.remove(self.tempfile)
45 self.tempfile = tempfile.mktemp("_sdktest")
46 with open(self.tempfile, 'w') as out:
48 fix_deps.FixupDepFile(self.tempfile)
49 with open(self.tempfile) as infile:
58 self.tempfile = tempfile.mktemp("_sdktest"
    [all...]
  /external/nanohttpd/samples/src/main/java/fi/iki/elonen/
TempFilesServer.java 28 private final List<TempFile> tempFiles;
32 tempFiles = new ArrayList<TempFile>();
36 public TempFile createTempFile() throws Exception {
37 DefaultTempFile tempFile = new DefaultTempFile(tmpdir);
38 tempFiles.add(tempFile);
39 System.out.println("Created tempFile: " + tempFile.getName());
40 return tempFile;
48 for (TempFile file : tempFiles) {
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
temporary_file.cc 21 TempFile::TempFile(Plugin* plugin) : plugin_(plugin),
25 TempFile::~TempFile() { }
27 int32_t TempFile::Open(bool writeable) {
36 PLUGIN_PRINTF(("TempFile::Open failed w/ PP_kInvalidFileHandle\n"));
49 PLUGIN_PRINTF(("TempFile::Open failed to convert HANDLE to posix\n"));
59 PLUGIN_PRINTF(("TempFile::Open failed\n"));
66 PLUGIN_PRINTF(("TempFile::Open DUP failed\n"));
80 bool TempFile::Reset()
    [all...]
temporary_file.h 30 // TempFile represents a file used as a temporary between stages in
36 class TempFile {
38 // Create a TempFile.
39 explicit TempFile(Plugin* plugin);
40 ~TempFile();
62 NACL_DISALLOW_COPY_AND_ASSIGN(TempFile);
  /external/chromium_org/build/android/
adb_android_webview_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
adb_chrome_shell_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
adb_content_shell_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
  /external/chromium_org/tools/android/adb_profile_chrome/
trace_packager_unittest.py 8 import tempfile namespace
20 with tempfile.NamedTemporaryFile(delete=False) as f1, \
21 tempfile.NamedTemporaryFile(delete=False) as f2:
27 with tempfile.NamedTemporaryFile() as output:
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
TempFile.js 37 * @param {!function(?WebInspector.TempFile)} callback
39 WebInspector.TempFile = function(dirPath, name, callback)
46 * @this {WebInspector.TempFile}
55 * @this {WebInspector.TempFile}
64 * @this {WebInspector.TempFile}
74 * @this {WebInspector.TempFile}
79 * @this {WebInspector.TempFile}
112 * @this {WebInspector.TempFile}
118 WebInspector.TempFile._ensureTempStorageCleared(didClearTempStorage.bind(this));
121 WebInspector.TempFile.prototype =
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
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);
  /cts/tools/vm-tests-tf/src/util/build/
JarBuildStep.java 40 File tempFile = new File(inputFile.folder, destFileName);
42 if (!inputFile.fileName.equals(tempFile)) {
43 copyFile(inputFile.fileName, tempFile);
45 tempFile = null;
66 if (tempFile != null) {
67 tempFile.delete();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threadedtempfile.py 2 Create and delete FILES_PER_THREAD temp files (via tempfile.TemporaryFile)
4 failures. A failure is a bug in tempfile, and may be due to:
6 + Trying to create more than one tempfile with the same name.
7 + Trying to delete a tempfile that doesn't still exist.
19 import tempfile namespace
38 f = tempfile.TemporaryFile("w+b")
test_tempfile.py 0 # tempfile.py unit tests.
2 import tempfile namespace
25 has_textmode = (tempfile._text_openflags != tempfile._bin_openflags)
35 # This is organized as one test for each chunk of code in tempfile.py,
71 # There are no surprising symbols in the tempfile module
72 dict = tempfile.__dict__
102 self.r = tempfile._RandomNameSequence()
173 cand = tempfile._candidate_tempdir_list()
189 cand = tempfile._candidate_tempdir_list(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threadedtempfile.py 2 Create and delete FILES_PER_THREAD temp files (via tempfile.TemporaryFile)
4 failures. A failure is a bug in tempfile, and may be due to:
6 + Trying to create more than one tempfile with the same name.
7 + Trying to delete a tempfile that doesn't still exist.
19 import tempfile namespace
38 f = tempfile.TemporaryFile("w+b")
test_tempfile.py 0 # tempfile.py unit tests.
2 import tempfile namespace
25 has_textmode = (tempfile._text_openflags != tempfile._bin_openflags)
35 # This is organized as one test for each chunk of code in tempfile.py,
71 # There are no surprising symbols in the tempfile module
72 dict = tempfile.__dict__
102 self.r = tempfile._RandomNameSequence()
173 cand = tempfile._candidate_tempdir_list()
189 cand = tempfile._candidate_tempdir_list(
    [all...]
  /external/chromium_org/tools/perf/measurements/
screenshot_unittest.py 7 import tempfile namespace
19 self._options.png_outdir = tempfile.mkdtemp('_png_test')
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_systrace_profiler_unittest.py 6 import tempfile namespace
18 out_dir = tempfile.mkdtemp()
  /external/compiler-rt/test/asan/android_commands/
android_common.py 1 import os, subprocess, tempfile namespace
18 tmp = tempfile.mktemp()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
stones.py 29 import tempfile namespace
30 main(tempfile.NamedTemporaryFile().name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stones.py 29 import tempfile namespace
30 main(tempfile.NamedTemporaryFile().name)
  /external/chromium_org/build/android/gyp/util/
md5_check_test.py 5 import tempfile namespace
17 input_file1 = tempfile.NamedTemporaryFile()
18 input_file2 = tempfile.NamedTemporaryFile()
27 record_path = tempfile.NamedTemporaryFile(suffix='.stamp')

Completed in 316 milliseconds

1 2 3 4 5 6 7 8 91011>>