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

1 2

  /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_org/third_party/tcmalloc/chromium/src/tests/
heap-profiler_unittest.cc 84 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"
    [all...]
profiledata_unittest.cc 119 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/
heap-profiler_unittest.cc 84 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"
    [all...]
profiledata_unittest.cc 119 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/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/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);
  /art/runtime/
common_runtime_test.cc 143 const char* tmpdir = getenv("TMPDIR"); local
144 if (tmpdir != nullptr && tmpdir[0] != 0) {
145 android_data = tmpdir;
  /external/qemu/util/
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");
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 241 DECLARE_string(tmpdir); variable
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 147 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/chromium_org/base/
file_util_posix.cc 444 const char* tmp = getenv("TMPDIR");
555 FilePath tmpdir; local
556 if (!GetTempDir(&tmpdir))
559 return CreateTemporaryDirInDirImpl(tmpdir, TempFileName(), new_temp_path);
  /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/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 1205 const HChar *tmpdir = VG_(tmpdir)(); local
    [all...]
  /external/valgrind/main/coregrind/
m_libcfile.c 707 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 *
741 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...]
  /frameworks/native/cmds/installd/
commands.c 343 char tmpdir[PATH_MAX]; local
355 if (create_user_path(tmpdir, 0) == 0) {
356 //ALOGI("adding cache files from %s\n", tmpdir);
357 add_cache_files(cache, tmpdir, "cache");
361 snprintf(tmpdir, sizeof(tmpdir), "%s%s", android_data_dir.path,
363 dirpos = tmpdir + strlen(tmpdir);
364 d = opendir(tmpdir);
374 if ((strlen(name)+(dirpos-tmpdir)) < (sizeof(tmpdir)-1))
    [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/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...]
  /external/qemu/
block.c 237 const char *tmpdir; local
239 tmpdir = getenv("TMPDIR");
240 if (!tmpdir)
241 tmpdir = "/tmp";
242 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
    [all...]
  /ndk/sources/host-tools/make-3.81/
main.c 1463 char *template, *tmpdir; local
    [all...]
  /external/mksh/src/
sh.h 1251 EXTERN char *tmpdir; \/* TMPDIR value *\/ variable
    [all...]

Completed in 422 milliseconds

1 2