Searched defs:tmpdir (Results 1 - 15 of 15) 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/chrome/browser/chromeos/login/
H A Downer_key_utils_unittest.cc47 ScopedTempDir tmpdir; local
49 ASSERT_TRUE(tmpdir.CreateUniqueTempDir());
50 ASSERT_TRUE(file_util::CreateTemporaryFileInDir(tmpdir.path(), &tmpfile));
/external/dbus/dbus/
H A Ddbus-transport-unix.c131 const char *tmpdir = dbus_address_entry_get_value (entry, "tmpdir"); local
134 if (tmpdir != NULL)
137 "cannot use the \"tmpdir\" option for an address to connect to, only in an address to listen on");
H A Ddbus-server-unix.c66 const char *tmpdir = dbus_address_entry_get_value (entry, "tmpdir"); local
69 if (path == NULL && tmpdir == NULL && abstract == NULL)
72 "path or tmpdir or abstract",
77 if ((path && tmpdir) ||
79 (tmpdir && abstract))
82 "cannot specify two of \"path\" and \"tmpdir\" and \"abstract\" at the same time");
86 if (tmpdir != NULL)
107 !_dbus_string_append (&full_path, tmpdir) ||
116 /* Always use abstract namespace if possible with tmpdir */
[all...]
H A Ddbus-sysdeps-unix.c3023 static const char* tmpdir = NULL; local
3025 if (tmpdir == NULL)
3031 if (tmpdir == NULL)
3032 tmpdir = getenv("TMPDIR");
3037 if (tmpdir == NULL)
3038 tmpdir = getenv("TMP");
3039 if (tmpdir == NULL)
3040 tmpdir = getenv("TEMP");
3043 if (tmpdir == NULL)
3044 tmpdir
[all...]
H A Ddbus-sysdeps-win.c1994 static const char* tmpdir = NULL; local
1997 if (tmpdir == NULL)
2015 tmpdir = buf;
2018 _dbus_assert(tmpdir != NULL);
2020 return tmpdir;
/external/qemu/
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");
H A Dblock.c235 const char *tmpdir; local
237 tmpdir = getenv("TMPDIR");
238 if (!tmpdir)
239 tmpdir = "/tmp";
240 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.h241 DECLARE_string(tmpdir); variable
/external/e2fsprogs/debian/
H A Drules52 tmpdir=${debdir}/tmp macro
87 mandir=${tmpdir}${MANDIR}
311 mkdir -p ${tmpdir}/sbin
312 $(MAKE) -C ${stdbuilddir} install DESTDIR=${tmpdir} \
315 $(MAKE) -C ${stdbuilddir} install-libs DESTDIR=${tmpdir} LDCONFIG=true
318 ${INSTALL_PROGRAM} $(E2FSCK_STATIC) ${tmpdir}/sbin
321 ln -s et/com_err.h ${tmpdir}/usr/include
324 test -z `find ${tmpdir} -type f`
/external/bluetooth/glib/glib/
H A Dgfileutils.c1268 const char *tmpdir; local
1309 tmpdir = g_get_tmp_dir ();
1311 if (G_IS_DIR_SEPARATOR (tmpdir [strlen (tmpdir) - 1]))
1316 fulltemplate = g_strconcat (tmpdir, sep, tmpl, NULL);
/external/bluetooth/glib/tests/
H A Dtestglib.c674 const gchar *tmpdir, *homedir, *userdatadir, *uconfdir, *ucachedir; local
698 tmpdir = g_get_tmp_dir();
699 g_assert (tmpdir != NULL);
723 g_print ("tmp-dir: %s\n", tmpdir);
/external/chromium/base/
H A Dfile_util_posix.cc481 FilePath tmpdir; local
482 if (!GetTempDir(&tmpdir))
485 return CreateTemporaryDirInDirImpl(tmpdir, kTempFileName, new_temp_path);
/external/mksh/src/
H A Dsh.h1042 EXTERN char *tmpdir; /* TMPDIR value */ variable

Completed in 351 milliseconds