Searched refs:tmpfile (Results 1 - 25 of 47) sorted by relevance

12

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
H A DsendEmailAlert.sh62 tmpfile="/tmp/sendEmailAlert.sh.tmp";
63 echo "" > $tmpfile;
66 echo "Eclipse RSS Feed has been updated." >> $tmpfile;
67 echo "" >> $tmpfile;
68 echo "Here's what happened:" >> $tmpfile;
69 echo "" >> $tmpfile;
71 if [ "x$xpath" != "x" ]; then echo "Changed Node: "$xpath >> $tmpfile; fi
72 if [ "x$oldvalue" != "x" ]; then echo "Old Value: "$oldvalue >> $tmpfile; fi
73 if [ "x$newvalue" != "x" ]; then echo "New Value: "$newvalue >> $tmpfile; fi
74 if [ "x$feedURL" != "x" ]; then echo "Feed URL: "$feedURL >> $tmpfile; f
[all...]
/external/parameter-framework/upstream/tools/xmlGenerator/
H A DlightRoutingUpdate.sh42 tmpfile="/tmp/pfw_commands"
80 echo > "${tmpfile}"
86 echo "setTuningMode on" >> "${tmpfile}"
87 echo "setAutoSync off" >> "${tmpfile}"
94 echo "deleteDomain $domain" >> "${tmpfile}"
103 | $(dirname $0)/PFWScriptGenerator.py --output-kind pfw >> "${tmpfile}"
106 echo "setAutoSync off" >> "${tmpfile}"
107 echo "setTuningMode off" >> "${tmpfile}"
128 "${tmpfile}"
130 echo "set -xeu" > "${tmpfile}
[all...]
/external/toybox/tests/
H A Dcksum.test10 echo -n "hello" > tmpfile
11 testing "cksum on file" "cksum tmpfile" "3287646509 5 tmpfile\n" "" ""
12 rm -f tmpfile
/external/bison/lib/
H A Dstdio--.h34 # undef tmpfile macro
35 # define tmpfile tmpfile_safer macro
/external/elfutils/tests/
H A Drun-arsymtest.sh23 tmpfile=arsymtest.tmp
26 tempfiles $okfile $tmpfile $testfile
36 testrun ${abs_builddir}/arsymtest $lib $tmpfile || exit 1
37 sort $tmpfile > $testfile
/external/chromium-trace/catapult/tracing/tracing_build/
H A Dvulcanize_trace_viewer_unittest.py23 with codecs.open(raw_tmpfile.name, 'w', encoding='utf-8') as tmpfile:
24 vulcanize_trace_viewer.WriteTraceViewer(tmpfile)
H A Dtrace2html_unittest.py23 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/autotest/server/self-test/
H A Dutils_test.py32 tmpfile = file(tmppath, 'w')
33 print >> tmpfile, 'Test string'
34 tmpfile.close()
35 tmpfile = file(tmppath)
36 newtmppath = utils.get(tmpfile)
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_libc_test.cc93 char tmpfile[128]; local
94 temp_file_name(tmpfile, sizeof(tmpfile), "sanitizer_common.fileops.tmp.");
95 fd_t fd = OpenFile(tmpfile, WrOnly);
104 EXPECT_TRUE(FileExists(tmpfile));
106 fd = OpenFile(tmpfile, RdOnly);
115 EXPECT_EQ(0u, internal_stat(tmpfile, &st1));
116 EXPECT_EQ(0u, internal_lstat(tmpfile, &st2));
145 ::DeleteFileA(&tmpfile[0]);
147 internal_unlink(tmpfile);
215 char tmpfile[128]; local
[all...]
/external/chromium-trace/catapult/perf_insights/perf_insights_build/
H A Dpi_report_to_html_unittest.py33 with codecs.open(raw_tmpfile.name, 'w', encoding='utf-8') as tmpfile:
37 tmpfile, corpus_driver,
/external/vulkan-validation-layers/demos/smoke/
H A Dglsl-to-spirv49 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/support/android/asio/
H A Dasio_shrinker.sh100 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
/external/autotest/server/
H A Dbase_utils.py70 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/autotest/client/tests/spew/
H A Dspew.py27 tmpfile = os.path.join(testdir, 'spew-test.%d' % os.getpid())
30 (type, pattern, filesize, tmpfile)
/external/clang/test/Analysis/
H A Dstream.c9 extern FILE *tmpfile(void);
57 FILE *p = tmpfile();
/external/libpng/tests/
H A Dpngstest54 exec ./pngstest --tmpfile "${gamma}-${alpha}-" --log ${1+"$@"} $args
/external/ltrace/
H A Dmemstream.c38 memstream->stream = tmpfile();
/external/scrypt/
H A Dimport_scrypt.sh183 declare -r tmpfile=$(mktemp)
184 (grep -e -D Makefile | grep -v CONFIGURE_ARGS= | grep -v OPTIONS=) > $tmpfile
186 declare -r cflags=$(filter_by_egrep "^-D" $(grep -e "^CFLAG=" $tmpfile))
187 declare -r depflags=$(filter_by_egrep "^-D" $(grep -e "^DEPFLAG=" $tmpfile))
188 rm -f $tmpfile
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
H A Doutput_writers.py859 self.tmpfile = None
871 # Each slice writes to a new tmpfile in GCS. When the slice is finished
874 # - append the contents of N-1's tmpfile to the mainfile
875 # - remove N-2's tmpfile
882 # to the mainfile (rewriting tmpfile is an idempotent operation).
895 status: an instance of _ConsistentStatus with initialized tmpfile
903 if not self.status.tmpfile:
906 return self.status.tmpfile
938 def _rewrite_tmpfile(self, mainfile, tmpfile, writer_spec):
939 """Copies contents of tmpfile (nam
[all...]
/external/autotest/server/site_tests/audio_AudioQualityAfterSuspend/
H A Daudio_AudioQualityAfterSuspend.py79 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)
/external/opencv3/3rdparty/libjpeg/
H A Djmemansi.c10 * 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/toybox/toys/pending/
H A Dsyslogd.c242 char *p, *tmpfile; local
248 tmpfile = xstrdup(tfd->filename + 1);
249 if ((p = strchr(tmpfile, ':'))) {
262 if (getaddrinfo(tmpfile, NULL, &rp, &info) || !info)
263 perror_exit("BAD ADDRESS: can't find : %s ", tmpfile);
269 free(tmpfile);
/external/chromium-trace/catapult/third_party/Paste/tests/
H A Dtest_fileapp.py141 tmpfile = os.path.join(tmpdir, 'file')
143 fp = open(tmpfile, 'w')
155 os.remove(tmpfile)
/external/e2fsprogs/lib/ext2fs/
H A Dtst_badblocks.c177 f = tmpfile();
232 f = tmpfile();
/external/libpng/contrib/gregbook/
H A Dwpng.c160 FILE *tmpfile; /* or we could just use keybd, since no overlap */ local
209 tmpfile = fopen("/etc/config/system.glGammaVal", "r");
210 if (tmpfile) {
213 fgets(tmpline, 80, tmpfile);
214 fclose(tmpfile);

Completed in 993 milliseconds

12