/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
test_refactor.py | 188 tmpdir = tempfile.mkdtemp(prefix="2to3-test_refactor") 189 self.addCleanup(shutil.rmtree, tmpdir) 191 shutil.copy(test_file, tmpdir) 192 test_file = os.path.join(tmpdir, os.path.basename(test_file))
|
/external/e2fsprogs/debian/ |
rules | 52 tmpdir=${debdir}/tmp macro 87 mandir=${tmpdir}${MANDIR} 319 mkdir -p ${tmpdir}/sbin 320 $(MAKE) -C ${stdbuilddir} install DESTDIR=${tmpdir} \ 323 $(MAKE) -C ${stdbuilddir} install-libs DESTDIR=${tmpdir} LDCONFIG=true 326 ${INSTALL_PROGRAM} $(E2FSCK_STATIC) ${tmpdir}/sbin 329 ln -s et/com_err.h ${tmpdir}/usr/include 332 test -z "`find ${tmpdir} -type f`"
|
/external/qemu/ |
qemu-sockets-android.c | 496 char *tmpdir = getenv("TMPDIR"); local 498 tmpdir ? tmpdir : "/tmp");
|
qemu-sockets.c | 558 char *tmpdir = getenv("TMPDIR"); local 560 tmpdir ? tmpdir : "/tmp");
|
block.c | 235 const char *tmpdir; local 237 tmpdir = getenv("TMPDIR"); 238 if (!tmpdir) 239 tmpdir = "/tmp"; 240 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir); [all...] |
/external/valgrind/main/coregrind/ |
vgdb.c | 182 const char *tmpdir; local 184 tmpdir = getenv("TMPDIR"); 185 if (tmpdir == NULL || *tmpdir == '\0') 186 tmpdir = VG_TMPDIR; 187 if (tmpdir == NULL || *tmpdir == '\0') 188 tmpdir = "/tmp"; /* fallback */ 190 return tmpdir; 201 const char *tmpdir = vgdb_tmpdir(); local [all...] |
/external/openfst/src/lib/ |
flags.cc | 28 DEFINE_string(tmpdir, "/tmp/", "temporary directory");
|
/external/valgrind/main/coregrind/m_gdbserver/ |
remote-utils.c | 1108 const HChar *tmpdir = VG_(tmpdir)(); local 1109 prefix = malloc(strlen(tmpdir) + strlen("/vgdb-pipe") + 1); 1110 strcpy(prefix, tmpdir);
|
/ndk/sources/host-tools/make-3.81/ |
main.c | 1463 char *template, *tmpdir; local [all...] |
/external/mksh/src/ |
var.c | 1196 if (tmpdir) { 1197 afree(tmpdir, APERM); 1198 tmpdir = NULL; 1201 * Use tmpdir iff it is an absolute path, is writable 1211 strdupx(tmpdir, s, APERM); 1294 * loose the 'specialness': IFS, COLUMNS, PATH, TMPDIR 1311 if (tmpdir) { 1312 afree(tmpdir, APERM); 1313 tmpdir = NULL; [all...] |
/ndk/sources/host-tools/sed-4.2.1/sed/ |
execute.c | 725 char *tmpdir, *p; 738 tmpdir = ck_strdup(input->in_file_name); 739 if ((p = strrchr(tmpdir, '/'))) 742 strcpy(tmpdir, "."); 775 output_file.fp = ck_mkstemp (&input->out_file_name, tmpdir, "sed"); 777 free (tmpdir); 720 char *tmpdir, *p; local [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
unixfilesystem.cc | 185 if (const char* tmpdir = getenv("TMPDIR")) { 186 pathname.SetPathname(tmpdir, "");
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
unixfilesystem.cc | 179 if (const char* tmpdir = getenv("TMPDIR")) { 180 pathname.SetPathname(tmpdir, "");
|
/external/openfst/src/include/fst/ |
flags.h | 227 DECLARE_string(tmpdir); variable
|
/external/openfst/src/test/ |
fst_test.h | 29 DECLARE_string(tmpdir); variable
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
compat.h | 241 DECLARE_string(tmpdir); variable
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
ControlTest.java | 553 String tmpdir = System.getProperty("java.io.tmpdir"); local 554 if (null == tmpdir) { 557 String copyName = tmpdir + File.separator + "hyts_resource_copy" + tail; [all...] |
ResourceBundleTest.java | 245 String tmpdir = System.getProperty("java.io.tmpdir"); local 246 if (null != tmpdir) { 248 urlVec.add(new URL("file:" + tmpdir)); [all...] |
/external/chromium/base/ |
file_util_posix.cc | 481 FilePath tmpdir; local 482 if (!GetTempDir(&tmpdir)) 485 return CreateTemporaryDirInDirImpl(tmpdir, kTempFileName, new_temp_path); 816 const char* tmp = getenv("TMPDIR");
|
/external/chromium_org/base/ |
file_util_posix.cc | 452 const char* tmp = getenv("TMPDIR"); 584 FilePath tmpdir; local 585 if (!GetTempDir(&tmpdir)) 588 return CreateTemporaryDirInDirImpl(tmpdir, TempFileName(), new_temp_path);
|
/external/openssh/ |
misc.c | 926 const char *tmpdir; local 929 if ((tmpdir = getenv("TMPDIR")) != NULL) { 930 r = snprintf(s, len, "%s/ssh-XXXXXXXXXXXX", tmpdir);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 340 tmpdir = tempfile.gettempdir() 344 os.chdir(tmpdir) 345 tmpdir = os.getcwd() 351 cwd=tmpdir) 354 self.assertEqual(normcase(p.stdout.read()), normcase(tmpdir)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | 340 tmpdir = tempfile.gettempdir() 344 os.chdir(tmpdir) 345 tmpdir = os.getcwd() 351 cwd=tmpdir) 354 self.assertEqual(normcase(p.stdout.read()), normcase(tmpdir)) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests_integrationtest.py | 622 with host.filesystem.mkdtemp() as tmpdir: 623 _, _, user = logging_run(['--results-directory=' + str(tmpdir)], tests_included=True, host=host) 624 self.assertEqual(user.opened_urls, [path.abspath_to_uri(host.platform, host.filesystem.join(tmpdir, 'results.html'))]) [all...] |
/bootable/diskinstaller/ |
config.mk | 130 internal_installerimage_args += --tmpdir $(tmp_dir_for_inst_image)
|