Searched defs:tmpdir (Results 1 - 23 of 23) sorted by relevance

/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/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-profiler_unittest.cc84 const char* tmpdir = getenv("TMPDIR"); local
85 if (tmpdir == NULL)
86 tmpdir = "/tmp";
87 mkdir(tmpdir, 0755); // if necessary
88 HeapProfilerStart((string(tmpdir) + "/start_stop").c_str());
103 const char* tmpdir = getenv("TMPDIR"); local
104 if (tmpdir == NULL)
105 tmpdir = "/tmp";
106 mkdir(tmpdir, 0755); // if necessary
107 HeapProfilerStart((string(tmpdir)
[all...]
H A Dprofiledata_unittest.cc119 const char* tmpdir = getenv("TMPDIR"); local
120 if (tmpdir == NULL)
121 tmpdir = "/tmp";
122 mkdir(tmpdir, 0755); // if necessary
123 filename_ = string(tmpdir) + "/profiledata_unittest.tmp";
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-profiler_unittest.cc84 const char* tmpdir = getenv("TMPDIR"); local
85 if (tmpdir == NULL)
86 tmpdir = "/tmp";
87 mkdir(tmpdir, 0755); // if necessary
88 HeapProfilerStart((string(tmpdir) + "/start_stop").c_str());
103 const char* tmpdir = getenv("TMPDIR"); local
104 if (tmpdir == NULL)
105 tmpdir = "/tmp";
106 mkdir(tmpdir, 0755); // if necessary
107 HeapProfilerStart((string(tmpdir)
[all...]
H A Dprofiledata_unittest.cc119 const char* tmpdir = getenv("TMPDIR"); local
120 if (tmpdir == NULL)
121 tmpdir = "/tmp";
122 mkdir(tmpdir, 0755); // if necessary
123 filename_ = string(tmpdir) + "/profiledata_unittest.tmp";
/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/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/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/qemu/util/
H A Dqemu-sockets-android.c496 char *tmpdir = getenv("TMPDIR"); local
498 tmpdir ? tmpdir : "/tmp");
H A Dqemu-sockets.c558 char *tmpdir = getenv("TMPDIR"); local
560 tmpdir ? tmpdir : "/tmp");
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.h241 DECLARE_string(tmpdir); variable
/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/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_linux.cc147 const char *tmpdir = GetEnv("TMPDIR"); local
148 if (tmpdir == 0)
149 tmpdir = GetEnv("TEST_TMPDIR");
151 if (tmpdir == 0)
152 tmpdir = P_tmpdir;
154 if (tmpdir == 0)
158 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/chromium_org/base/files/
H A Dfile_util_posix.cc555 FilePath tmpdir; local
556 if (!GetTempDir(&tmpdir))
559 return CreateTemporaryDirInDirImpl(tmpdir, TempFileName(), new_temp_path);
/external/valgrind/main/coregrind/m_gdbserver/
H A Dremote-utils.c1205 const HChar *tmpdir = VG_(tmpdir)(); local
1206 prefix = malloc(strlen(tmpdir) + strlen("/vgdb-pipe") + 1);
1207 strcpy(prefix, tmpdir);
/external/valgrind/main/coregrind/
H A Dm_libcfile.c707 const HChar *VG_(tmpdir)(void) function
709 const HChar *tmpdir; local
711 tmpdir = VG_(getenv)("TMPDIR");
712 if (tmpdir == NULL || *tmpdir == '\0') tmpdir = VG_TMPDIR;
713 if (tmpdir == NULL || *tmpdir == '\0') tmpdir = "/tmp"; /* fallback */
715 return tmpdir;
741 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...]
/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/qemu/
H A Dblock.c237 const char *tmpdir; local
239 tmpdir = getenv("TMPDIR");
240 if (!tmpdir)
241 tmpdir = "/tmp";
242 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
/external/mksh/src/
H A Dsh.h1266 EXTERN char *tmpdir; /* TMPDIR value */ variable
/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/ ...

Completed in 1003 milliseconds