/cts/tools/selinux/ |
SELinuxNeverallowTestFrame.py | 51 File tempFile = File.createTempFile("SELinuxHostTest", ".tmp"); 52 FileOutputStream os = new FileOutputStream(tempFile); 59 tempFile.deleteOnExit(); 60 return tempFile;
|
/external/llvm/utils/release/ |
merge.sh | 61 tempfile=`mktemp /tmp/merge.XXXXXX` || exit 1 63 echo "Merging r$rev:" > $tempfile 64 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1 74 echo svn commit -F $tempfile
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
MemoryBinaryBody.java | 38 * Binary body backed by a {@link org.apache.james.mime4j.util.TempFile}. 47 private byte[] tempFile = null; 62 tempFile = out.toByteArray(); 83 return new ByteArrayInputStream(tempFile);
|
/external/libcxx/test/ |
lit.cfg | 33 import tempfile 34 obj_root = tempfile.mkdtemp(prefix='libcxx-testsuite-')
|
/external/llvm/tools/lto/ |
Makefile | 38 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX) 40 -Wl,-object_path_lto -Wl,$(TempFile)
|
/hardware/libhardware/tests/input/evdev/ |
InputHub_test.cpp | 111 std::unique_ptr<TempFile> tempFile; 116 tempFile.reset(tempDir->newTempFile()); 126 EXPECT_EQ(tempFile->getName(), pathname); 133 auto deviceFile = std::unique_ptr<TempFile>(tempDir->newTempFile()); 164 auto deviceFile = std::unique_ptr<TempFile>(tempDir->newTempFile()); 205 auto deviceFile1 = std::unique_ptr<TempFile>(tempDir->newTempFile()); 206 auto deviceFile2 = std::unique_ptr<TempFile>(tempDir->newTempFile());
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_py_compile.py | 5 import tempfile namespace 13 self.directory = tempfile.mkdtemp()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/drawing/tests/ |
test_pydot.py | 5 import tempfile namespace 39 fname = tempfile.mktemp()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/tests/ |
test_leda.py | 4 import os,tempfile namespace 27 (fd,fname)=tempfile.mkstemp()
|
test_edgelist.py | 7 import tempfile namespace 115 fd, fname = tempfile.mkstemp() 131 fd, fname = tempfile.mkstemp() 148 fd, fname = tempfile.mkstemp() 158 (fd,fname)=tempfile.mkstemp() 171 (fd,fname)=tempfile.mkstemp() 185 (fd,fname)=tempfile.mkstemp() 198 (fd,fname)=tempfile.mkstemp() 212 (fd,fname)=tempfile.mkstemp() 224 (fd,fname)=tempfile.mkstemp( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_py_compile.py | 5 import tempfile namespace 13 self.directory = tempfile.mkdtemp()
|
/external/skia/platform_tools/android/tests/ |
makefile_writer_tests.py | 16 import tempfile namespace 128 f = tempfile.TemporaryFile() 138 fd, filename = tempfile.mkstemp() 156 fd, outfile = tempfile.mkstemp() 176 outdir = tempfile.mkdtemp() 185 outdir = tempfile.mkdtemp()
|
/build/tools/releasetools/ |
test_common.py | 17 import tempfile namespace 76 test_file = tempfile.NamedTemporaryFile(delete=False) 79 zip_file = tempfile.NamedTemporaryFile(delete=False) 112 zip_file = tempfile.NamedTemporaryFile(delete=False) 143 zip_file = tempfile.NamedTemporaryFile(delete=False) 146 test_file = tempfile.NamedTemporaryFile(delete=False) 267 zip_file = tempfile.NamedTemporaryFile(delete=False)
|
/cts/hostsidetests/jdwpsecurity/src/android/jdwpsecurity/cts/ |
JdwpSecurityHostTest.java | 74 File tempFile = createScriptTempFile(); 76 boolean success = getDevice().pushFile(tempFile, getDeviceScriptFilepath()); 79 if (tempFile != null) { 80 tempFile.delete(); 171 File tempFile = File.createTempFile("jdwptest", ".tmp"); 175 pw = new PrintWriter(tempFile); 190 return tempFile;
|
/external/guava/guava-tests/test/com/google/common/io/ |
IoTestCase.java | 116 File tempFile = File.createTempFile("IoTestCase", ""); 117 if (!tempFile.delete() || !tempFile.mkdir()) { 120 filesToDelete.add(tempFile); 121 return tempFile;
|
ResourcesTest.java | 140 File tempFile = createTempFile(); 141 PrintWriter writer = new PrintWriter(tempFile, "UTF-8"); 149 Resources.getResource(tempFile.getName()); 155 URL baseUrl = tempFile.getParentFile().toURI().toURL(); 161 URL url = Resources.getResource(tempFile.getName());
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/ |
AbstractTransformTask.java | 130 File tempFile = File.createTempFile(file.getName(), null, new File(file 136 FileOutputStream fout = new FileOutputStream(tempFile, false); 192 File newFile = new File(tempFile.getAbsolutePath()); 195 throw new IOException("can not rename " + tempFile + " to " + file); 204 tempFile.delete();
|
/external/e2fsprogs/contrib/ |
dconf | 13 TEMPFILE=/tmp/${SELF}.tmp 68 awk -f $AWKFILE $* >$TEMPFILE 118 awk -f $AWKFILE $TEMPFILE
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
toaiff.py | 15 import tempfile namespace 81 (fd, fname) = tempfile.mkstemp() 104 (fd, temp) = tempfile.mkstemp()
|
mimetools.py | 6 import tempfile namespace 216 'x-uuencode': 'uuencode tempfile', 217 'uuencode': 'uuencode tempfile', 218 'x-uue': 'uuencode tempfile', 219 'uue': 'uuencode tempfile', 230 (fd, tempname) = tempfile.mkstemp()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
toaiff.py | 15 import tempfile namespace 81 (fd, fname) = tempfile.mkstemp() 104 (fd, temp) = tempfile.mkstemp()
|
mimetools.py | 6 import tempfile namespace 216 'x-uuencode': 'uuencode tempfile', 217 'uuencode': 'uuencode tempfile', 218 'x-uue': 'uuencode tempfile', 219 'uue': 'uuencode tempfile', 230 (fd, tempname) = tempfile.mkstemp()
|
/system/extras/tests/bionic/libc/other/ |
test_zlib.c | 178 char tempfile[256]; local 215 sprintf(tempfile, "/tmp/ztest.%d", getpid() ); 235 out = fopen( tempfile, "wb" ); 237 fprintf(stderr, "could not create '%s': %s\n", tempfile, strerror(errno)); 253 f = fopen( tempfile, "rb" ); 265 unlink(tempfile);
|
/external/boringssl/src/util/bot/ |
update_clang.py | 19 import tempfile namespace 60 with tempfile.NamedTemporaryFile() as temp:
|
/external/libcxxabi/test/ |
lit.cfg | 49 import tempfile 50 obj_root = tempfile.mkdtemp(prefix='libcxxabi-testsuite-')
|