HomeSort by relevance Sort by last modified time
    Searched defs:tmpfile (Results 1 - 24 of 24) sorted by null

  /external/bison/lib/
stdio--.h 34 # undef tmpfile macro
35 # define tmpfile tmpfile_safer macro
  /system/extras/simpleperf/
cmd_report_sample_test.cpp 35 TemporaryFile tmpfile; local
37 {"-i", GetTestData(PERF_DATA_WITH_SYMBOLS), "-o", tmpfile.path}));
41 TemporaryFile tmpfile; local
43 "-o", tmpfile.path, "--show-callchain"}));
47 TemporaryFile tmpfile; local
50 "-o", tmpfile.path, "--protobuf"}));
52 {"--dump-protobuf-report", tmpfile.path, "-o", tmpfile2.path}));
59 TemporaryFile tmpfile; local
62 "-o", tmpfile.path, "--protobuf"}));
63 ASSERT_TRUE(ReportSampleCmd()->Run({"--dump-protobuf-report", tmpfile.path, "-o"
72 TemporaryFile tmpfile; local
84 TemporaryFile tmpfile; local
    [all...]
cmd_kmem_test.cpp 76 std::unique_ptr<TemporaryFile> tmpfile; local
81 tmpfile.reset(new TemporaryFile);
82 out_file = tmpfile->path;
cmd_record_test.cpp 48 std::unique_ptr<TemporaryFile> tmpfile; local
53 tmpfile.reset(new TemporaryFile);
54 out_file = tmpfile->path;
80 TemporaryFile tmpfile; local
81 ASSERT_TRUE(RecordCmd()->Run({"-o", tmpfile.path, "sleep", SLEEP_SEC}));
85 TemporaryFile tmpfile; local
86 ASSERT_TRUE(RunRecordCmd({}, tmpfile.path));
88 RecordFileReader::CreateInstance(tmpfile.path);
108 TemporaryFile tmpfile; local
109 ASSERT_TRUE(RunRecordCmd({}, tmpfile.path))
269 TemporaryFile tmpfile; local
320 TemporaryFile tmpfile; local
346 TemporaryFile tmpfile; local
376 TemporaryFile tmpfile; local
393 TemporaryFile tmpfile; local
403 TemporaryFile tmpfile; local
419 TemporaryFile tmpfile; local
444 TemporaryFile tmpfile; local
458 TemporaryFile tmpfile; local
471 TemporaryFile tmpfile; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
tmpfile.c 42 tmpfile.c 8.1 (Berkeley) 6/4/93
43 NetBSD: tmpfile.c,v 1.11 2003/08/07 16:43:33 agc Exp
61 tmpfile() function
  /bionic/libc/bionic/
tmpfile.cpp 101 FILE* tmpfile() { function
115 __strong_alias(tmpfile64, tmpfile);
  /external/linux-kselftest/tools/testing/selftests/powerpc/tm/
tm-vmxcopy.c 43 char tmpfile[] = "/tmp/page_faultXXXXXX"; local
50 fd = mkstemp(tmpfile);
57 unlink(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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileOutputStreamTest.java 291 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
292 tmpfile.deleteOnExit();
293 try (FileOutputStream fos = new FileOutputStream(tmpfile)) {
297 try (FileOutputStream f = new FileOutputStream(tmpfile, true)) {
303 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
304 tmpfile.deleteOnExit();
305 FileOutputStream fos = new FileOutputStream(tmpfile, true);
324 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
325 tmpfile.deleteOnExit();
326 FileOutputStream fos = new FileOutputStream(tmpfile, false)
345 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
359 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
373 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
387 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
    [all...]
  /external/libpng/contrib/gregbook/
wpng.c 160 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);
  /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/bison/darwin-lib/
stdio.h 1405 # undef tmpfile macro
    [all...]
  /external/bison/linux-lib/
stdio.h 1405 # undef tmpfile macro
    [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...]
  /external/toybox/toys/pending/
syslogd.c 242 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);
  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
FileChannelTest.java 1708 File tmpfile = File.createTempFile("FileOutputStream", "tmp"); local
    [all...]
  /system/core/fastboot/
fastboot.cpp 521 // Windows' tmpfile(3) requires administrator rights because
540 #define tmpfile win32_tmpfile macro
549 return fileno(tmpfile());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 662 #define tmpfile macro
    [all...]
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 863 milliseconds