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/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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_libc_test.cc 60 const char *tmpdir = "/tmp"; local
66 tmpdir = GetEnv("EXTERNAL_STORAGE");
69 internal_snprintf(buf, bufsize, "%s/%s%d", tmpdir, prefix, uid);
  /external/nanohttpd/samples/src/main/java/fi/iki/elonen/
TempFilesServer.java 27 private final String tmpdir; field in class:TempFilesServer.ExampleManager
31 tmpdir = System.getProperty("java.io.tmpdir");
37 DefaultTempFile tempFile = new DefaultTempFile(tmpdir);
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 150 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/openfst/src/include/fst/
flags.h 227 DECLARE_string(tmpdir); variable
  /external/openfst/src/test/
fst_test.h 29 DECLARE_string(tmpdir); variable
  /external/selinux/policycoreutils/sandbox/
seunshare.c 55 #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,
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, "/tmp/.sandbox-%s-XXXXXX", pwd->pw_name) == -1)
    [all...]
  /art/runtime/
common_runtime_test.cc 171 const char* tmpdir = getenv("TMPDIR"); local
172 if (tmpdir != nullptr && tmpdir[0] != 0) {
173 android_data = tmpdir;
  /external/e2fsprogs/debian/
rules 55 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} -type f`
    [all...]
  /external/openssh/
misc.c 976 const char *tmpdir; local
979 if ((tmpdir = getenv("TMPDIR")) != NULL) {
980 r = snprintf(s, len, "%s/ssh-XXXXXXXXXXXX", tmpdir);
  /external/valgrind/coregrind/m_gdbserver/
remote-utils.c 1256 const HChar *tmpdir = VG_(tmpdir)(); local
    [all...]
  /external/valgrind/coregrind/
m_libcfile.c 747 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 *
775 const HChar *tmpdir; local
    [all...]
vgdb.c 110 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 = vgdb_tmpdir(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ControlTest.java 379 String tmpdir = System.getProperty("java.io.tmpdir"); local
380 if (null == tmpdir) {
383 String copyName = tmpdir + File.separator + "hyts_resource_copy" + tail;
  /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...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 468 * 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);
    [all...]
  /frameworks/native/cmds/installd/
commands.cpp 364 char tmpdir[PATH_MAX]; local
385 strcpy(tmpdir, _tmpdir.c_str());
387 dirpos = tmpdir + strlen(tmpdir);
388 d = opendir(tmpdir);
398 if ((strlen(name)+(dirpos-tmpdir)) < (sizeof(tmpdir)-1)) {
400 //ALOGI("adding cache files from %s\n", tmpdir);
401 add_cache_files(cache, tmpdir, "cache");
403 ALOGW("Path exceeds limit: %s%s", tmpdir, name)
    [all...]
  /ndk/sources/host-tools/make-3.81/
main.c 1463 char *template, *tmpdir; local
    [all...]
  /external/elfutils/src/src/
readelf.c 578 const char *tmpdir = getenv ("TMPDIR") ?: P_tmpdir; local
580 int tmplen = strlen (tmpdir) + sizeof (suffix);
582 sprintf (tempname, "%s%s", tmpdir, suffix);
    [all...]
  /external/mksh/src/
sh.h 1271 EXTERN char *tmpdir; \/* TMPDIR value *\/ variable
    [all...]
  /external/toybox/generated/
globals.h 73 char *tmpdir; member in struct:mktemp_data
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 2269 milliseconds