/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
|
/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...] |
/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);
|
/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/ltp/testcases/kernel/syscalls/fsync/ |
fsync02.c | 68 char tempfile[40] = ""; variable 165 sprintf(tempfile, "%s.%d", TCID, pid = getpid()); 168 if ((fd = open(tempfile, O_RDWR | O_CREAT | O_TRUNC, 0777)) == -1)
|
/external/libcups/cups/ |
dest-localization.c | 296 tempfile[1024]; /* Temporary filename */ local 374 if ((temp = cupsTempFile2(tempfile, sizeof(tempfile))) == NULL) 432 unlink(tempfile);
|
ppd-util.c | 144 char tempfile[1024] = ""; /* Temporary filename */ local 354 fd = cupsTempFd(tempfile, sizeof(tempfile)); 392 if (tempfile[0]) 393 strlcpy(buffer, tempfile, bufsize); 401 else if (tempfile[0]) 402 unlink(tempfile); 404 else if (tempfile[0]) 405 unlink(tempfile);
|
adminutil.c | 1166 char tempfile[1024]; /* Temporary new cupsd.conf */ local [all...] |
cups-private.h | 141 /* tempfile.c */ 142 char tempfile[1024]; /* cupsTempFd/File buffer */ member in struct:_cups_globals_s
|
/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 | 386 ScopedTemporaryFile tempfile; local 387 const char* tempfile_name = tempfile.full_file_name(); 411 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/libcups/filter/ |
pstops.c | 83 char tempfile[1024]; /* Temporary filename */ member in struct:__anon22861 387 unlink(doc.tempfile); 922 doc->temp = cupsFileOpen(doc->tempfile, "r"); 1179 doc->temp = cupsFileOpen(doc->tempfile, "r"); [all...] |
/external/toybox/generated/ |
globals.h | 208 char *tempfile; member in struct:dos2unix_data
|