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

  /external/autotest/client/common_lib/
autotemp.py 2 Autotest tempfile wrapper for mkstemp (known as tempfile here) and
16 import tempfile as module_tempfile
21 class tempfile(object): class in inherits:object
23 A wrapper for tempfile.mkstemp
26 part of code created the tempfile.
29 @return a tempfile object
31 t = autotemp.tempfile(unique_id='fig')
75 A wrapper for tempfile.mkdtemp
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/tempfile/
tempfile.go 5 // Package tempfile provides tools to create and delete temporary files
6 package tempfile package
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/tempfile/
tempfile.go 5 // Package tempfile provides tools to create and delete temporary files
6 package tempfile package
  /system/extras/simpleperf/
environment_test.cpp 54 TemporaryFile tempfile; local
55 ASSERT_TRUE(android::base::WriteStringToFile(data, tempfile.path));
62 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol)));
69 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol)));
73 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol)));
  /bionic/tests/
sys_mman_test.cpp 178 TemporaryFile tempfile; local
183 ASSERT_EQ(static_cast<ssize_t>(pagesize), write(tempfile.fd, buf, pagesize));
184 void* map = mmap(NULL, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, tempfile.fd, 0);
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest.cc 265 string tempfile = temp_dir.path() + "/minidump-writer-unittest-temp"; local
266 int fd = open(tempfile.c_str(), O_RDWR | O_CREAT, 0);
268 unlink(tempfile.c_str());
  /external/libchrome/sandbox/linux/syscall_broker/
broker_process_unittest.cc 385 ScopedTemporaryFile tempfile; local
386 const char* tempfile_name = tempfile.full_file_name();
410 len = read(tempfile.fd(), buf, sizeof(buf));
  /external/libedit/src/
vi.c 1008 char tempfile[] = "/tmp/histedit.XXXXXXXXXX"; local
1018 fd = mkstemp(tempfile);
1042 execlp("vi", "vi", tempfile, (char *)NULL);
1067 unlink(tempfile);
1074 unlink(tempfile);
  /external/opencv3/modules/core/src/
system.cpp 542 String tempfile( const char* suffix ) function in namespace:cv
    [all...]
  /external/toybox/generated/
globals.h 146 char *tempfile; member in struct:dos2unix_data

Completed in 350 milliseconds