Searched defs:tmpdir (Results 1 - 19 of 19) sorted by path

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DBaseTest.java69 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
[all...]
/external/bison/djgpp/
H A Dsubpipe.c70 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);
88 strcpy(tmp_file_name[1], tmpdir);
[all...]
/external/blktrace/btt/
H A Dbno_plot.py92 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/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_libc_test.cc60 const char *tmpdir = "/tmp"; local
66 tmpdir = GetEnv("EXTERNAL_STORAGE");
69 internal_snprintf(buf, bufsize, "%s/%s%d", tmpdir, prefix, uid);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_linux.cc150 const char *tmpdir = GetEnv("TMPDIR"); local
151 if (tmpdir == 0)
152 tmpdir = GetEnv("TEST_TMPDIR");
154 if (tmpdir == 0)
155 tmpdir = P_tmpdir;
157 if (tmpdir == 0)
161 tmpdir, (int)internal_getpid());
/external/e2fsprogs/debian/
H A Drules55 tmpdir ?= ${debdir}/tmp macro
89 mandir ?= ${tmpdir}${MANDIR}
397 mkdir -p ${tmpdir}/sbin
398 $(MAKE) -C ${stdbuilddir} V=1 install DESTDIR=${tmpdir} \
401 $(MAKE) -C ${stdbuilddir} V=1 install-libs DESTDIR=${tmpdir} LDCONFIG=true
405 ${INSTALL_PROGRAM} $(E2FSCK_STATIC) ${tmpdir}/sbin
410 rm ${tmpdir}/usr/include/quota/mkquota.h
411 find ${tmpdir} -name quota.pc -o -name libquota.a | xargs rm
414 ${INSTALL} -m 0644 misc/mke2fs-hurd.conf ${tmpdir}/etc/mke2fs.conf
418 test -z "`find ${tmpdir}
[all...]
/external/elfutils/src/src/
H A Dreadelf.c578 const char *tmpdir = getenv ("TMPDIR") ?: P_tmpdir; local
580 int tmplen = strlen (tmpdir) + sizeof (suffix);
582 sprintf (tempname, "%s%s", tmpdir, suffix);
/external/mksh/src/
H A Dsh.h1271 EXTERN char *tmpdir; /* TMPDIR value */ variable
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
H A DNanoHTTPD.java468 * wherever <code>java.io.tmpdir</code> points to). Files are added
474 private final String tmpdir; field in class:NanoHTTPD.DefaultTempFileManager
478 tmpdir = System.getProperty("java.io.tmpdir");
484 DefaultTempFile tempFile = new DefaultTempFile(tmpdir);
/external/nanohttpd/samples/src/main/java/fi/iki/elonen/
H A DTempFilesServer.java27 private final String tmpdir; field in class:TempFilesServer.ExampleManager
31 tmpdir = System.getProperty("java.io.tmpdir");
37 DefaultTempFile tempFile = new DefaultTempFile(tmpdir);
/external/openfst/src/include/fst/
H A Dflags.h227 DECLARE_string(tmpdir); variable
/external/openfst/src/test/
H A Dfst_test.h29 DECLARE_string(tmpdir); variable
/external/openssh/
H A Dmisc.c976 const char *tmpdir; local
979 if ((tmpdir = getenv("TMPDIR")) != NULL) {
980 r = snprintf(s, len, "%s/ssh-XXXXXXXXXXXX", tmpdir);
/external/selinux/policycoreutils/sandbox/
H A Dseunshare.c55 #define USAGE_STRING _("USAGE: seunshare [ -v ] [ -C ] [ -k ] [ -t tmpdir ] [ -h homedir ] [ -Z CONTEXT ] -- executable [args] ")
381 static int cleanup_tmpdir(const char *tmpdir, const char *src, argument
389 if (asprintf(&cmdbuf, "/usr/bin/rsync --exclude=.X11-unix -utrlHDq --delete '%s/' '%s/'", tmpdir, src) == -1) {
402 if (asprintf(&cmdbuf, "/bin/rm -r '%s/' 2>/dev/null", tmpdir) == -1) {
407 /* this may fail if there's root-owned file left in the runtime tmpdir */
417 if (rmdir(tmpdir) == -1)
418 fprintf(stderr, _("Failed to remove directory %s: %s\n"), tmpdir, strerror(errno));
428 * seunshare will create a tmpdir in /tmp, with root ownership. The parent
436 char *tmpdir = NULL; local
469 if (asprintf(&tmpdir, "/tm
[all...]
/external/toybox/generated/
H A Dglobals.h73 char *tmpdir; member in struct:mktemp_data
/external/valgrind/coregrind/m_gdbserver/
H A Dremote-utils.c1256 const HChar *tmpdir = VG_(tmpdir)(); local
1257 prefix = malloc(strlen(tmpdir) + strlen("/vgdb-pipe") + 1);
1258 strcpy(prefix, tmpdir);
/external/valgrind/coregrind/
H A Dm_libcfile.c747 const HChar *VG_(tmpdir)(void) function
749 const HChar *tmpdir; local
751 tmpdir = VG_(getenv)("TMPDIR");
752 if (tmpdir == NULL || *tmpdir == '\0') tmpdir = VG_TMPDIR;
753 if (tmpdir == NULL || *tmpdir == '\0') tmpdir = "/tmp"; /* fallback */
755 return tmpdir;
775 const HChar *tmpdir; local
[all...]
H A Dvgdb.c110 const char *tmpdir; local
112 tmpdir = getenv("TMPDIR");
113 if (tmpdir == NULL || *tmpdir == '\0')
114 tmpdir = VG_TMPDIR;
115 if (tmpdir == NULL || *tmpdir == '\0')
116 tmpdir = "/tmp"; /* fallback */
118 return tmpdir;
129 const char *tmpdir local
[all...]

Completed in 5332 milliseconds