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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
elfedit.exp 24 set tempfile tmpdir/bintest.o
27 set tempfile [remote_download host tmpdir/bintest.o]
readelf.exp 155 set tempfile [remote_download host tmpdir/testprog.o]
158 set got [remote_exec host "$READELF $READELFFLAGS -wi $tempfile" "" "/dev/null" "readelf.out"]
163 file_on_host delete $tempfile
231 set tempfile [remote_download host tmpdir/dw2-compressed.o]
234 set got [remote_exec host "$READELF $READELFFLAGS -wa $tempfile" "" "/dev/null" "readelf.out"]
239 file_on_host delete $tempfile
265 set tempfile [remote_download host tmpdir/dumptest.o]
270 set got [remote_exec host "$READELF $READELFFLAGS -p[lindex $sect_names 1] $tempfile" "" "/dev/null" "readelf.out"]
272 set got [remote_exec host "$READELF $READELFFLAGS -p.data $tempfile" "" "/dev/null" "readelf.out"]
301 file_on_host delete $tempfile
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/x86-64/
x86-64.exp 23 global tempfile
25 set tempfile tmpdir/x86-64temp.o
  /external/ltp/testcases/kernel/fs/stream/
stream05.c 52 char tempfile[40] = ""; variable
73 sprintf(tempfile, "stream05.%d", getpid());
76 if ((stream = fopen(tempfile, "a+")) == NULL) {
78 tempfile,
84 if ((stream = fopen(tempfile, "r+")) == NULL) {
86 tempfile,
135 if ((stream = fopen(tempfile, "r+")) == NULL) {
137 tempfile,
182 if ((stream = fopen(tempfile, "rb")) == NULL) {
184 tempfile,
    [all...]
  /development/gsi/gsi_util/gsi_util/utils/
file_utils.py 19 import tempfile
26 This function is similar to tempfile.TemporaryFile, except that an
31 **kwargs: Any keyward arguments passed to tempfile.mkstemp (e.g., dir,
37 fd, path = tempfile.mkstemp(**kwargs)
  /external/chromium-trace/catapult/common/py_utils/py_utils/
tempfile_ext.py 8 import tempfile
15 This is a context manager version of tempfile.mkdtemp. The arguments to this
26 d = tempfile.mkdtemp(suffix=suffix, prefix=prefix, dir=dir)
  /external/linux-kselftest/tools/testing/selftests/powerpc/mm/
Makefile 6 TEST_GEN_FILES := tempfile
14 $(OUTPUT)/tempfile:
  /external/ltp/testcases/kernel/syscalls/open/
open09.c 38 static char tempfile[40] = ""; variable
57 fildes = open(tempfile, O_WRONLY);
69 fildes = open(tempfile, O_RDONLY);
94 sprintf(tempfile, "open09.%d", getpid());
96 fildes = creat(tempfile, 0600);
99 tempfile);
107 unlink(tempfile);
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/i386/
i386.exp 27 global tempfile
29 set tempfile tmpdir/i386temp.o
  /external/autotest/client/common_lib/cros/
power_load_util.py 5 import tempfile
25 with tempfile.NamedTemporaryFile() as named_file:
  /external/llvm/utils/release/
merge.sh 76 tempfile=`mktemp /tmp/merge.XXXXXX` || exit 1
79 echo "Reverting r$rev:" > $tempfile
81 echo "Merging r$rev:" > $tempfile
83 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1
99 echo svn commit -F $tempfile
  /external/python/cpython3/Lib/test/
test_tempfile.py 0 # tempfile.py unit tests.
2 import tempfile
25 has_textmode = (tempfile._text_openflags != tempfile._bin_openflags)
35 # This is organized as one test for each chunk of code in tempfile.py,
41 self.assertIs(str, tempfile._infer_return_type(''))
42 self.assertIs(bytes, tempfile._infer_return_type(b''))
43 self.assertIs(str, tempfile._infer_return_type(None))
46 self.assertIs(str, tempfile._infer_return_type('', ''))
47 self.assertIs(bytes, tempfile._infer_return_type(b'', b'')
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
device_blacklist_test.py 7 import tempfile
16 with tempfile.NamedTemporaryFile() as blacklist_file:
25 with tempfile.NamedTemporaryFile(delete=False) as blacklist_file:
  /external/toybox/toys/other/
dos2unix.c 31 char *tempfile;
39 if (fd) outfd = copy_tempfile(fd, name, &TT.tempfile);
65 if (fd) replace_tempfile(-1, outfd, &TT.tempfile);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
threaded_import_hangers.py 12 import tempfile
32 ("tempfile.TemporaryFile", tempfile.TemporaryFile, ()),
  /external/autotest/client/site_tests/kernel_SchedCgroups/
kernel_SchedCgroups.py 7 import os, tempfile
26 self._tmpdir = tempfile.mkdtemp()
  /external/autotest/client/site_tests/security_Minijail0/src/
mountns-enter.py 8 import tempfile
14 tmpdir = tempfile.mkdtemp(prefix="newns-", dir="/tmp")
  /external/chromium-trace/catapult/common/eslint/eslint/
smoke_test.py 7 import tempfile
27 tmp_file = tempfile.NamedTemporaryFile(
  /external/icu/tools/
i18nutil.py 3 import tempfile
32 tmp_dir = tempfile.mkdtemp('-i18n')
  /external/perfetto/src/ftrace_reader/test/
test_proto_gen.py 20 import tempfile
32 tmpdir = tempfile.mkdtemp()
  /external/python/cpython2/Lib/test/
threaded_import_hangers.py 12 import tempfile
32 ("tempfile.TemporaryFile", tempfile.TemporaryFile, ()),
  /external/python/cpython3/Lib/test/test_tools/
test_pdeps.py 5 import tempfile
20 with tempfile.TemporaryDirectory() as tmpdir:
  /external/tensorflow/tensorflow/contrib/lite/schema/
upgrade_schema_test.py 22 import tempfile
257 non_existent = tempfile.mktemp(suffix=".json")
263 invalid_extension = tempfile.mktemp(suffix=".foo")
266 with tempfile.NamedTemporaryFile(suffix=".json", mode="w+") as in_json:
279 with tempfile.NamedTemporaryFile(suffix=".json", mode="w+") as in_json, \
280 tempfile.NamedTemporaryFile(
282 tempfile.NamedTemporaryFile(
284 tempfile.NamedTemporaryFile(
  /external/toolchain-utils/crosperf/
crosperf_test.py 9 import tempfile
36 filehandle, filename = tempfile.mkstemp()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
threaded_import_hangers.py 12 import tempfile
32 ("tempfile.TemporaryFile", tempfile.TemporaryFile, ()),

Completed in 1026 milliseconds

1 2 3 4 5 6 7 8 91011>>