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

1 2

  /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
96 TemporaryFile tmpfile; local
108 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_report_test.cpp 524 TemporaryFile tmpfile; local
526 "--duration", "2", "-o", tmpfile.path, "-g"}));
527 ReportRaw(tmpfile.path, {"-g"});
CallChainJoiner.cpp 262 std::unique_ptr<TemporaryFile> tmpfile = ScopedTempFiles::CreateTempFile(); local
263 FILE* fp = fdopen(tmpfile->release(), "web+");
cmd_record_test.cpp 48 std::unique_ptr<TemporaryFile> tmpfile; local
53 tmpfile.reset(new TemporaryFile);
54 out_file = tmpfile->path;
89 TemporaryFile tmpfile; local
90 ASSERT_TRUE(RunRecordCmd({"-c", "100000"}, tmpfile.path));
91 CheckEventType(tmpfile.path, "cpu-cycles", 100000u, 0);
99 TemporaryFile tmpfile; local
100 ASSERT_TRUE(RunRecordCmd({"-f", "99"}, tmpfile.path));
101 CheckEventType(tmpfile.path, "cpu-cycles", 0, 99u);
102 ASSERT_TRUE(RunRecordCmd({"-e", "cpu-clock", "-f", "99"}, tmpfile.path))
108 TemporaryFile tmpfile; local
116 TemporaryFile tmpfile; local
121 TemporaryFile tmpfile; local
144 TemporaryFile tmpfile; local
305 TemporaryFile tmpfile; local
356 TemporaryFile tmpfile; local
382 TemporaryFile tmpfile; local
412 TemporaryFile tmpfile; local
429 TemporaryFile tmpfile; local
439 TemporaryFile tmpfile; local
455 TemporaryFile tmpfile; local
480 TemporaryFile tmpfile; local
499 TemporaryFile tmpfile; local
517 TemporaryFile tmpfile; local
535 TemporaryFile tmpfile; local
548 TemporaryFile tmpfile; local
569 TemporaryFile tmpfile; local
    [all...]
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));
  /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 86 FILE* tmpfile() { function
100 __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...]
  /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);
  /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...]
  /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/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...]
  /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 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);
  /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 522 // Windows' tmpfile(3) requires administrator rights because
539 #define tmpfile win32_tmpfile macro
547 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...]
  /external/annotation-tools/annotation-file-utilities/lib/
plume-core.jar 

Completed in 844 milliseconds

1 2