HomeSort by relevance Sort by last modified time
    Searched full:tmpfile (Results 51 - 75 of 667) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/bison/lib/
stdio--.h 34 # undef tmpfile macro
35 # define tmpfile tmpfile_safer macro
  /external/chromium-trace/catapult/tracing/tracing_build/
trace2html_unittest.py 23 with codecs.open(raw_tmpfile.name, 'w', encoding='utf-8') as tmpfile:
34 [big_trace_path, simple_trace_path, non_json_trace_path], tmpfile)
  /external/e2fsprogs/tests/
run_e2fsck 43 gunzip < $IMAGE > $TMPFILE
50 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT1.new 2>&1
53 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT1.new >> $OUT1
57 $FSCK $SECOND_FSCK_OPT -N test_filesys $TMPFILE > $OUT2.new 2>&1
60 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT2.new > $OUT2
test_one.in 31 TMPFILE=$(mktemp -t e2fsprogs-tmp.XXXXXX)
67 rm -f $TMPFILE
  /art/test/577-profile-foreign-dex/src/
Main.java 34 File tmpFile = null;
41 tmpFile = createTempFile();
42 appDir = new File(tmpFile.getParent(), APP_DIR_PREFIX + tmpFile.getName());
44 foreignDexProfileDir = new File(tmpFile.getParent(), FOREIGN_DEX_PROFILE_DIR);
58 if (tmpFile != null) {
59 tmpFile.delete();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ChannelsTest.java 61 private File tmpFile;
66 tmpFile = File.createTempFile("test","tmp");
67 tmpFile.deleteOnExit();
81 tmpFile.delete();
87 this.fouts = new FileOutputStream(tmpFile);
129 this.fins = new FileInputStream(tmpFile);
156 this.fins = new FileInputStream(tmpFile);
207 this.fouts = new FileOutputStream(tmpFile);
231 this.fouts = new FileOutputStream(tmpFile);
242 this.fins = new FileInputStream(tmpFile);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
check_lint.sh 119 TMPFILE="$(${MKTEMP}).$(basename ${FILE}).cc"
120 cp -f $FILE $TMPFILE
121 run_lint ${COMMON_RTL_INC_LINT_FILTER} $TMPFILE &
122 TMPFILES="$TMPFILES $TMPFILE"
  /external/elfutils/tests/
lfs-symbols 71 tmpfile
  /external/opencv3/3rdparty/libjpeg/
jmemansi.c 10 * assumes that you have the ANSI-standard library routine tmpfile().
126 /* Since this implementation uses tmpfile() to create the file,
135 * This version uses tmpfile(), which constructs a suitable file name
144 if ((info->temp_file = tmpfile()) == NULL)
  /external/parameter-framework/upstream/test/functional-tests/include/
ConfigFiles.hpp 32 #include "TmpFile.hpp"
122 utility::TmpFile mStructureFile;
123 utility::TmpFile mDomainsFile;
124 utility::TmpFile mConfigFile;
  /external/vulkan-validation-layers/demos/smoke/
glsl-to-spirv 49 def compile_glsl(filename, tmpfile):
52 args = [validator, "-V", "-H", "-o", tmpfile, filename]
60 with open(tmpfile, "rb") as f:
73 os.remove(tmpfile)
  /external/parameter-framework/upstream/test/tmpfile/posix/
TmpFile.cpp 31 #include "TmpFile.hpp"
41 std::string TmpFile::mktmp()
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
SwatDeprecated.java 173 File tmpFile = null;
179 tmpFile = File.createTempFile(inFile.getName(), null, inFile.getParentFile());
182 tmpFile = outFile;
183 File parent = tmpFile.getParentFile();
185 tmpFile.createNewFile();
188 String tmpPath = tmpFile.getPath();
190 pw.println("tmpFile: " + tmpPath);
194 OutputStream os = new FileOutputStream(tmpFile);
281 if (!tmpFile.delete()) {
292 if (!tmpFile.renameTo(bakFile))
    [all...]
  /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
CertBlacklistTest.java 42 private File tmpFile;
131 tmpFile = File.createTempFile("test", "");
134 tmpFile.delete();
140 tmpFile = File.createTempFile("test", "");
146 tmpFile.delete();
194 return getPubkeyBlacklist(tmpFile.getCanonicalPath());
198 return getSerialBlacklist(tmpFile.getCanonicalPath());
202 FileOutputStream out = new FileOutputStream(tmpFile);
252 CertBlacklist bl = new CertBlacklist(tmpFile.getCanonicalPath(), "");
267 CertBlacklist bl = new CertBlacklist(tmpFile.getCanonicalPath(), "")
    [all...]
  /external/autotest/server/
base_utils.py 70 tmpfile = os.path.join(tmpdir, "file")
71 tmpfileobj = file(tmpfile, 'w')
74 return tmpfile
79 tmpfile = os.path.join(tmpdir, os.path.basename(location))
80 utils.urlretrieve(location, tmpfile)
81 return tmpfile
89 tmpfile = os.path.join(tmpdir, os.path.basename(location))
91 tmpfile += '/'
92 shutil.copytree(location, tmpfile, symlinks=True)
93 return tmpfile
    [all...]
  /external/parameter-framework/upstream/bindings/c/
Test.cpp 33 #include "TmpFile.hpp"
76 /** Wrap utility::TmpFile to add an implicit convertion to the temporary file.
79 class TmpFile : private parameterFramework::utility::TmpFile
82 using Base = parameterFramework::utility::TmpFile;
85 using Base::TmpFile;
128 TmpFile system("<?xml version='1.0' encoding='UTF-8'?>\
136 TmpFile libraries("<?xml version='1.0' encoding='UTF-8'?>\
141 TmpFile config("<?xml version='1.0' encoding='UTF-8'?>\
  /external/parameter-framework/support/android/asio/
asio_shrinker.sh 100 tmpfile=$(mktemp)
106 list_compiled_files "$ANDROID_PRODUCT_OUT" $tmpfile
109 list_compiled_files "$ANDROID_HOST_OUT" $tmpfile
115 -e 's@ @\n@' $tmpfile | \
118 rm $tmpfile
  /prebuilts/go/darwin-x86/src/mime/multipart/
formdata.go 84 fh.tmpfile = file.Name()
110 if fh.tmpfile != "" {
111 e := os.Remove(fh.tmpfile)
127 tmpfile string
136 return os.Open(fh.tmpfile)
  /prebuilts/go/linux-x86/src/mime/multipart/
formdata.go 84 fh.tmpfile = file.Name()
110 if fh.tmpfile != "" {
111 e := os.Remove(fh.tmpfile)
127 tmpfile string
136 return os.Open(fh.tmpfile)
  /cts/hostsidetests/aadb/src/android/aadb/cts/
TestDeviceStressTest.java 53 File tmpFile = null;
59 tmpFile = FileUtil.createTempFile(String.format("tmp_%d", i), ".txt", tmpDir);
60 FileUtil.writeToFile(fileContents, tmpFile);
  /external/deqp/framework/qphelper/
qpCrashHandler.c 536 int tmpFile = mkstemp(tmpFileName);
538 if (tmpFile == -1)
540 writeInfoFormat(writeInfo, userPtr, "Failed to create tmpfile '%s' for the backtrace %s.", tmpFileName, strerror(errno));
553 backtrace_symbols_fd(symbols, symbolCount, tmpFile);
555 if (lseek(tmpFile, 0, SEEK_SET) < 0)
558 close(tmpFile);
587 if (read(tmpFile, &c, 1) == 1)
614 close(tmpFile);
615 tmpFile = -1;
621 if (tmpFile == -1
    [all...]
  /external/clang/test/Analysis/
stream.c 9 extern FILE *tmpfile(void);
57 FILE *p = tmpfile();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 70 private File tmpFile;
81 this.tmpFile = new File(file + ".tmp"); //$NON-NLS-1$
127 downloadFeed(tmpFile,debug>0);
130 if (tmpFile.isFile()) {
131 if (debug>0) { System.out.println(Messages.getString("RSSFeedWatcherTask.Compare") + SP + file + Messages.getString("RSSFeedWatcherTask.with") + tmpFile + CL); } //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
151 newFeedWatcher.setFile(tmpFile.toString());
210 RSSFeedUtil.transferData(new FileInputStream(tmpFile), new FileOutputStream(file));
211 tmpFile.deleteOnExit();
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostResultTest.java 122 File tmpFile = FileUtil.createTempFile("tmp", "txt");
128 assertTrue("Could not pull file", device.pullFile(devicePath, tmpFile));
129 assertFilesAreEqual(testFile, tmpFile);
132 tmpFile.delete();
  /external/autotest/server/site_tests/audio_AudioQualityAfterSuspend/
audio_AudioQualityAfterSuspend.py 79 with tempfile.NamedTemporaryFile() as tmpfile:
80 file_utils.download_file(self.test_playback_file, tmpfile.name)
81 os.chmod(tmpfile.name, 0444)
82 self.host.send_file(tmpfile.name, host_file)

Completed in 3479 milliseconds

1 23 4 5 6 7 8 91011>>