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

  /external/blktrace/btt/
bno_plot.py 92 tmpdir = tempfile.mktemp() variable
93 os.mkdir(tmpdir)
97 t = '%s/%s' % (tmpdir, f)
109 fo = open('%s/plot.cmds' % tmpdir, 'w')
117 cmd = '/usr/bin/gnuplot %s/plot.cmds -' % tmpdir
122 os.chdir(tmpdir)
127 os.system('/bin/rm -rf ' + tmpdir)
  /external/chromium/chrome/browser/chromeos/login/
owner_key_utils_unittest.cc 47 ScopedTempDir tmpdir; local
49 ASSERT_TRUE(tmpdir.CreateUniqueTempDir());
50 ASSERT_TRUE(file_util::CreateTemporaryFileInDir(tmpdir.path(), &tmpfile));
  /external/bison/djgpp/
subpipe.c 70 char *tmpdir; local
73 tmpdir = getenv("TMPDIR");
74 if (tmpdir == NULL)
75 tmpdir = getenv("TMP");
76 if (tmpdir == NULL)
77 tmpdir = getenv("TEMP");
78 if (access(tmpdir, D_OK))
79 tmpdir = ".";
81 strcpy(tmp_file_name[0], tmpdir);
    [all...]
  /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/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/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/
ResourceBundleTest.java 245 String tmpdir = System.getProperty("java.io.tmpdir"); local
246 if (null != tmpdir) {
248 urlVec.add(new URL("file:" + tmpdir));
    [all...]
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...]
  /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/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/openssh/
misc.c 926 const char *tmpdir; local
929 if ((tmpdir = getenv("TMPDIR")) != NULL) {
930 r = snprintf(s, len, "%s/ssh-XXXXXXXXXXXX", tmpdir);
  /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);
  /external/valgrind/main/coregrind/
m_libcfile.c 644 const HChar *VG_(tmpdir)(void) function
646 const HChar *tmpdir; local
648 tmpdir = VG_(getenv)("TMPDIR");
649 if (tmpdir == NULL || *tmpdir == '\0') tmpdir = VG_TMPDIR;
650 if (tmpdir == NULL || *tmpdir == '\0') tmpdir = "/tmp"; /* fallback *
666 const HChar *tmpdir; local
    [all...]
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...]
  /frameworks/native/cmds/installd/
commands.c 310 char tmpdir[PATH_MAX]; local
322 if (create_persona_path(tmpdir, 0) == 0) {
323 //ALOGI("adding cache files from %s\n", tmpdir);
324 add_cache_files(cache, tmpdir, "cache");
328 snprintf(tmpdir, sizeof(tmpdir), "%s%s", android_data_dir.path,
330 dirpos = tmpdir + strlen(tmpdir);
331 d = opendir(tmpdir);
341 if ((strlen(name)+(dirpos-tmpdir)) < (sizeof(tmpdir)-1))
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 69 public String tmpdir = null; field in class:BaseTest
83 tmpdir = new File(System.getProperty("java.io.tmpdir"),
92 // remove tmpdir if no error.
99 tool.setOutputDirectory(tmpdir);
105 tool.setOutputDirectory(tmpdir);
113 "javac", "-d", tmpdir,
114 classpathOption, tmpdir+pathSep+CLASSPATH,
115 tmpdir+"/"+fileName
117 String cmdLine = "javac" +" -d "+tmpdir+" "+classpathOption+" "+tmpdir+pathSep+CLASSPATH+" "+fileName
    [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...]
  /ndk/sources/host-tools/make-3.81/
main.c 1463 char *template, *tmpdir; local
    [all...]
  /external/mksh/src/
sh.h 1252 EXTERN char *tmpdir; \/* TMPDIR value *\/ variable
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 756 milliseconds