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

1 23 4 5 6

  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
obj6_test.go 89 tmpfile, err := os.Create(filepath.Join(tmpdir, "input.s"))
93 defer tmpfile.Close()
94 _, err = tmpfile.WriteString(s)
100 "-o", filepath.Join(tmpdir, "output.6"), tmpfile.Name())
  /prebuilts/go/linux-x86/src/cmd/internal/obj/x86/
obj6_test.go 89 tmpfile, err := os.Create(filepath.Join(tmpdir, "input.s"))
93 defer tmpfile.Close()
94 _, err = tmpfile.WriteString(s)
100 "-o", filepath.Join(tmpdir, "output.6"), tmpfile.Name())
  /external/libpng/contrib/libtests/
timepng.c 423 fp = tmpfile();
425 /* Experimental. Coverity says tmpfile() is insecure because it
429 * any platform supporting mkstemp() undoubtedly has a secure tmpfile()
435 * says that most historic implementations of tmpfile() provide
440 char tmpfile[] = "timepng-XXXXXX";
443 filedes = mkstemp(tmpfile);
452 (void) unlink(tmpfile);
458 perror("tmpfile");
  /external/autotest/client/common_lib/cros/
arc.py 304 with tempfile.NamedTemporaryFile() as tmpfile:
306 pipes.quote(tmpfile.name)))
307 with open(tmpfile.name) as f:
319 with tempfile.NamedTemporaryFile() as tmpfile:
320 tmpfile.write(data)
321 tmpfile.flush()
323 adb_cmd('push %s %s' % (pipes.quote(tmpfile.name),
  /external/toybox/toys/pending/
syslogd.c 241 char *p, *tmpfile; local
247 tmpfile = xstrdup(tfd->filename + 1);
248 if ((p = strchr(tmpfile, ':'))) {
261 if (getaddrinfo(tmpfile, NULL, &rp, &info) || !info)
262 perror_exit("BAD ADDRESS: can't find : %s ", tmpfile);
268 free(tmpfile);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Stdio.inf 66 tmpfile.c #
  /external/autotest/site_utils/lxc/
container_factory_unittest.py 121 tmpfile = container0.attach_run('mktemp').stdout
122 exists = 'test -e %s' % tmpfile
  /external/e2fsprogs/lib/ext2fs/
tst_badblocks.c 178 f = tmpfile();
233 f = tmpfile();
  /external/skia/tools/skpbench/
sheet.py 158 with open(pathname, mode='w') as tmpfile:
159 parser.print_csv(outfile=tmpfile)
  /external/skqp/tools/skpbench/
sheet.py 158 with open(pathname, mode='w') as tmpfile:
159 parser.print_csv(outfile=tmpfile)
  /external/libpng/contrib/gregbook/
wpng.c 161 FILE *tmpfile; /* or we could just use keybd, since no overlap */ local
210 tmpfile = fopen("/etc/config/system.glGammaVal", "r");
211 if (tmpfile) {
214 fgets(tmpline, 80, tmpfile);
215 fclose(tmpfile);
  /external/perf_data_converter/src/quipper/
perf_parser_test.cc 653 const string tmpfile = tmpdir.path() + "file_in_namespace"; local
656 testing::WriteElfWithBuildid(tmpfile, ".note.gnu.build-id",
660 ASSERT_EQ(stat(tmpfile.c_str(), &tmp_stat), 0);
791 const string tmpfile = tmpdir.path() + "file_in_namespace"; local
794 testing::WriteElfWithBuildid(tmpfile, ".note.gnu.build-id",
800 ASSERT_EQ(stat(tmpfile.c_str(), &tmp_stat), 0);
874 const string tmpfile = tmpdir.path() + "file_in_namespace"; local
877 testing::WriteElfWithBuildid(tmpfile, ".note.gnu.build-id",
883 ASSERT_EQ(stat(tmpfile.c_str(), &tmp_stat), 0);
900 testing::ExampleMmap2Event(pid, pid, 0x1c1000, 0x1000, 0, tmpfile
959 const string tmpfile = tmpdir.path() + "file_in_namespace"; local
1048 const string tmpfile = tmpdir.path() + "file_in_namespace"; local
1145 const string tmpfile = tmpdir.path() + "file_in_namespace"; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
platform.py 376 tmpfile = '' variable in class:_popen
386 self.tmpfile = tmpfile = tempfile.mktemp()
387 os.system(cmd + ' > %s' % tmpfile)
388 self.pipe = open(tmpfile,'rb')
409 if self.tmpfile:
411 remove(self.tmpfile)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
platform.py 376 tmpfile = '' variable in class:_popen
386 self.tmpfile = tmpfile = tempfile.mktemp()
387 os.system(cmd + ' > %s' % tmpfile)
388 self.pipe = open(tmpfile,'rb')
409 if self.tmpfile:
411 remove(self.tmpfile)
    [all...]
  /external/python/cpython2/Lib/
platform.py 378 tmpfile = '' variable in class:_popen
388 self.tmpfile = tmpfile = tempfile.mktemp()
389 os.system(cmd + ' > %s' % tmpfile)
390 self.pipe = open(tmpfile,'rb')
411 if self.tmpfile:
413 remove(self.tmpfile)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
platform.py 376 tmpfile = '' variable in class:_popen
386 self.tmpfile = tmpfile = tempfile.mktemp()
387 os.system(cmd + ' > %s' % tmpfile)
388 self.pipe = open(tmpfile,'rb')
409 if self.tmpfile:
411 remove(self.tmpfile)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
platform.py 376 tmpfile = '' variable in class:_popen
386 self.tmpfile = tmpfile = tempfile.mktemp()
387 os.system(cmd + ' > %s' % tmpfile)
388 self.pipe = open(tmpfile,'rb')
409 if self.tmpfile:
411 remove(self.tmpfile)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 376 tmpfile = '' variable in class:_popen
386 self.tmpfile = tmpfile = tempfile.mktemp()
387 os.system(cmd + ' > %s' % tmpfile)
388 self.pipe = open(tmpfile,'rb')
409 if self.tmpfile:
411 remove(self.tmpfile)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 376 tmpfile = '' variable in class:_popen
386 self.tmpfile = tmpfile = tempfile.mktemp()
387 os.system(cmd + ' > %s' % tmpfile)
388 self.pipe = open(tmpfile,'rb')
409 if self.tmpfile:
411 remove(self.tmpfile)
    [all...]
  /external/ImageMagick/scripts/
format_c_api_docs 329 my($infile, $tmpfile) = @_;
338 open( TMP, ">$tmpfile" ) || die("Failed to open \"$tmpfile\" for write\n" );
  /external/python/cpython2/
setup.py 382 tmpfile = os.path.join(self.build_temp, 'multiarch')
386 '%s -print-multiarch > %s 2> /dev/null' % (cc, tmpfile))
390 with open(tmpfile) as fp:
393 os.unlink(tmpfile)
407 tmpfile = os.path.join(self.build_temp, 'multiarch')
412 (opt, tmpfile))
415 with open(tmpfile) as fp:
422 os.unlink(tmpfile)
426 tmpfile = os.path.join(self.build_temp, 'gccpaths')
429 ret = os.system('%s -E -v - </dev/null 2>%s 1>/dev/null' % (gcc, tmpfile))
    [all...]
  /external/libvpx/libvpx/test/
video_source.h 75 return tmpfile();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 196 extern FILE *tmpfile (void) __wur;
199 extern FILE *__REDIRECT (tmpfile, (void), tmpfile64) __wur;
201 # define tmpfile tmpfile64
  /system/extras/simpleperf/
cmd_report_test.cpp 524 TemporaryFile tmpfile; local
526 "--duration", "2", "-o", tmpfile.path, "-g"}));
527 ReportRaw(tmpfile.path, {"-g"});
environment.cpp 490 std::unique_ptr<TemporaryFile> tmpfile = ScopedTempFiles::CreateTempFile(); local
491 if (!android::base::WriteStringToFd(s, tmpfile->release())) {
494 Dso::SetVdsoFile(tmpfile->path, sizeof(size_t) == sizeof(uint64_t));

Completed in 1034 milliseconds

1 23 4 5 6