HomeSort by relevance Sort by last modified time
    Searched refs:tmpfile (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
sendEmailAlert.sh 62 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/
lightRoutingUpdate.sh 42 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}2
    [all...]
  /external/toybox/tests/
cksum.test 10 echo -n "hello" > tmpfile
11 testing "cksum on file" "cksum tmpfile" "3287646509 5 tmpfile\n" "" ""
12 rm -f tmpfile
  /dalvik/opcode-gen/
opcode-gen 27 tmpfile="/tmp/$$.txt"
59 "$file" > "$tmpfile"
62 cp "$tmpfile" "$file"
63 rm "$tmpfile"
  /external/bison/lib/
stdio--.h 34 # undef tmpfile macro
35 # define tmpfile tmpfile_safer macro
  /external/elfutils/tests/
run-arsymtest.sh 23 tmpfile=arsymtest.tmp
26 tempfiles $okfile $tmpfile $testfile
36 testrun ${abs_builddir}/arsymtest $lib $tmpfile || exit 1
37 sort $tmpfile > $testfile
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileOutputStreamTest.java 286 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
287 tmpfile.deleteOnExit();
288 FileOutputStream fos = new FileOutputStream(tmpfile);
292 FileOutputStream f = new FileOutputStream(tmpfile, true);
297 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
298 tmpfile.deleteOnExit();
299 FileOutputStream fos = new FileOutputStream(tmpfile, true);
318 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
319 tmpfile.deleteOnExit();
320 FileOutputStream fos = new FileOutputStream(tmpfile, false)
339 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
353 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
367 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
381 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
    [all...]
  /system/extras/simpleperf/
cmd_record_test.cpp 39 std::unique_ptr<TemporaryFile> tmpfile; local
44 tmpfile.reset(new TemporaryFile);
45 out_file = tmpfile->path;
75 TemporaryFile tmpfile; local
76 ASSERT_TRUE(RecordCmd()->Run({"-o", tmpfile.path, "sleep", SLEEP_SEC}));
80 TemporaryFile tmpfile; local
81 ASSERT_TRUE(RunRecordCmd({}, tmpfile.path));
82 std::unique_ptr<RecordFileReader> reader = RecordFileReader::CreateInstance(tmpfile.path);
100 TemporaryFile tmpfile; local
101 ASSERT_TRUE(RunRecordCmd({}, tmpfile.path))
183 TemporaryFile tmpfile; local
    [all...]
  /external/chromium-trace/catapult/tracing/tracing_build/
vulcanize_trace_viewer_unittest.py 23 with codecs.open(raw_tmpfile.name, 'w', encoding='utf-8') as tmpfile:
24 vulcanize_trace_viewer.WriteTraceViewer(tmpfile)
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/autotest/server/self-test/
utils_test.py 32 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/
sanitizer_libc_test.cc 93 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/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/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
  /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...]
  /bionic/libc/bionic/
tmpfile.cpp 101 FILE* tmpfile() { function
115 __strong_alias(tmpfile64, tmpfile);
  /external/autotest/client/tests/spew/
spew.py 27 tmpfile = os.path.join(testdir, 'spew-test.%d' % os.getpid())
30 (type, pattern, filesize, tmpfile)
  /external/clang/test/Analysis/
stream.c 9 extern FILE *tmpfile(void);
57 FILE *p = tmpfile();
  /external/libpng/tests/
pngstest 54 exec ./pngstest --tmpfile "${gamma}-${alpha}-" --log ${1+"$@"} $args
  /external/v8/tools/gyp/test/win/
gyptest-link-pgo.py 25 tmpfile = test.read(test.built_file_path('linker_options.txt', chdir=CHDIR))
26 return any(line.find('PGOPTIMIZE') for line in tmpfile)
  /external/ltrace/
memstream.c 38 memstream->stream = tmpfile();
  /external/scrypt/
import_scrypt.sh 183 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
  /ndk/sources/cxx-stl/gabi++/include/
cstdio 80 using ::tmpfile;
  /ndk/sources/cxx-stl/system/include/
cstdio 80 using ::tmpfile;
  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
cstdio 80 using ::tmpfile;

Completed in 791 milliseconds

1 2 3 4 5 6