/external/qemu/android/utils/ |
tempfile.c | 13 #include "android/utils/tempfile.h" 34 ** create the file with tempfile_create(), which returns a reference to a TempFile 37 ** you can then call tempfile_path() to retrieve the TempFile's real path to open 38 ** it. the returned path is owned by the TempFile object and should not be freed. 44 struct TempFile 47 TempFile* next; 51 static TempFile* _all_tempfiles; 53 TempFile* 56 TempFile* tempfile; local 192 TempFile* tempfile; local [all...] |
/external/chromium_org/native_client_sdk/src/tools/tests/ |
fix_deps_test.py | 7 import tempfile namespace 26 self.tempfile = None 29 if self.tempfile: 30 os.remove(self.tempfile) 45 self.tempfile = tempfile.mktemp("_sdktest") 46 with open(self.tempfile, 'w') as out: 48 fix_deps.FixupDepFile(self.tempfile) 49 with open(self.tempfile) as infile: 58 self.tempfile = tempfile.mktemp("_sdktest" [all...] |
/external/chromium_org/build/android/ |
adb_android_webview_command_line | 20 tempfile=$(tempfile) 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 23 rm $tempfile
|
adb_chromium_testshell_command_line | 20 tempfile=$(tempfile) 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 23 rm $tempfile
|
adb_content_shell_command_line | 20 tempfile=$(tempfile) 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 23 rm $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 72 svn commit -F $tempfile || exit 1 73 rm -f $tempfile
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
show-pretty-diff | 28 use File::Temp qw(tempfile); 40 ($inputTempFileHandle, $inputPath) = tempfile( 55 my ($prettydiffFileHandle, $prettydiffPath) = tempfile(
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
threaded_import_hangers.py | 12 import tempfile namespace 32 ("tempfile.TemporaryFile", tempfile.TemporaryFile, ()),
|
test_tempfile.py | 0 # tempfile.py unit tests. 2 import tempfile namespace 25 has_textmode = (tempfile._text_openflags != tempfile._bin_openflags) 35 # This is organized as one test for each chunk of code in tempfile.py, 71 # There are no surprising symbols in the tempfile module 72 dict = tempfile.__dict__ 102 self.r = tempfile._RandomNameSequence() 173 cand = tempfile._candidate_tempdir_list() 189 cand = tempfile._candidate_tempdir_list( [all...] |
test_bsddb185.py | 13 import tempfile namespace 30 tmpdir = tempfile.mkdtemp()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
threaded_import_hangers.py | 12 import tempfile namespace 32 ("tempfile.TemporaryFile", tempfile.TemporaryFile, ()),
|
test_tempfile.py | 0 # tempfile.py unit tests. 2 import tempfile namespace 25 has_textmode = (tempfile._text_openflags != tempfile._bin_openflags) 35 # This is organized as one test for each chunk of code in tempfile.py, 71 # There are no surprising symbols in the tempfile module 72 dict = tempfile.__dict__ 102 self.r = tempfile._RandomNameSequence() 173 cand = tempfile._candidate_tempdir_list() 189 cand = tempfile._candidate_tempdir_list( [all...] |
test_bsddb185.py | 13 import tempfile namespace 30 tmpdir = tempfile.mkdtemp()
|
/frameworks/base/tools/obbtool/ |
mkobb.sh | 138 if [ "x${tempfile}" != "x" -a -f "${tempfile}" ]; then \ 139 rm -f ${tempfile} 212 tempfile=$(tempfile -d ${outdir}) || ( echo "ERROR: couldn't create temporary file in ${outdir}"; exit 1 ) 221 ${DDBIN} if=/dev/zero of=${tempfile} bs=${BLOCK_SIZE} count=$((${block_count} + ${SLOP})) > /dev/null 2>&1 228 ${LOSETUPBIN} ${loop_dev} ${tempfile} || ( echo "ERROR: couldn't create loopback device"; exit 1 ) 232 unique_dm_name=`basename ${tempfile}` 277 mv ${tempfile} ${filename}
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/ |
prettypatch.py | 30 import tempfile namespace 42 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/ |
stones.py | 29 import tempfile namespace 30 main(tempfile.NamedTemporaryFile().name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/ |
stones.py | 29 import tempfile namespace 30 main(tempfile.NamedTemporaryFile().name)
|
/external/chromium_org/build/android/gyp/util/ |
md5_check_test.py | 5 import tempfile namespace 14 input_file1 = tempfile.NamedTemporaryFile() 15 input_file2 = tempfile.NamedTemporaryFile() 24 record_path = tempfile.NamedTemporaryFile(suffix='.stamp')
|
/external/chromium_org/third_party/mesa/src/src/glsl/tests/ |
compare_ir | 32 import tempfile namespace 48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1])) 49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
|
/external/mesa3d/src/glsl/tests/ |
compare_ir | 32 import tempfile namespace 48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1])) 49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
|
/external/chromium_org/tools/grit/grit/node/ |
structure_unittest.py | 16 import tempfile namespace 57 filename = node.Process(tempfile.gettempdir()) 58 with open(os.path.join(tempfile.gettempdir(), filename)) as f:
|
/external/chromium_org/tools/grit/grit/tool/ |
build_unittest.py | 11 import tempfile namespace 27 output_dir = tempfile.mkdtemp() 37 output_dir = tempfile.mkdtemp()
|
/external/skia/tools/ |
test_rendering.py | 14 import tempfile namespace 108 render_dir = tempfile.mkdtemp() 113 diff_dir = tempfile.mkdtemp()
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_set_unittest.py | 6 import tempfile namespace 36 with tempfile.NamedTemporaryFile(delete=False) as f: 39 with tempfile.NamedTemporaryFile(delete=False) as f2: 56 directory_path = tempfile.mkdtemp()
|
/external/chromium_org/v8/tools/ |
android-run.py | 42 import tempfile namespace 50 (fd_out, outname) = tempfile.mkstemp() 51 (fd_err, errname) = tempfile.mkstemp() 79 (fd, fname) = tempfile.mkstemp()
|