/external/dbus/dbus/ |
dbus-transport-unix.c | 132 const char *tmpdir = dbus_address_entry_get_value (entry, "tmpdir"); local 135 if (tmpdir != NULL) 138 "cannot use the \"tmpdir\" option for an address to connect to, only in an address to listen on");
|
dbus-server-unix.c | 65 const char *tmpdir = dbus_address_entry_get_value (entry, "tmpdir"); local 68 if (path == NULL && tmpdir == NULL && abstract == NULL) 71 "path or tmpdir or abstract", 76 if ((path && tmpdir) || 78 (tmpdir && abstract)) 81 "cannot specify two of \"path\" and \"tmpdir\" and \"abstract\" at the same time"); 85 if (tmpdir != NULL) 106 !_dbus_string_append (&full_path, tmpdir) || 115 /* Always use abstract namespace if possible with tmpdir */ [all...] |
dbus-sysdeps-unix.c | 2355 static const char* tmpdir = NULL; local [all...] |
/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)
|
/cts/tools/host/src/com/android/cts/ |
HostLock.java | 40 String tmpdir = System.getProperty("java.io.tmpdir"); local 41 mFile = new File(tmpdir + File.separator + "ctsLockFile.txt");
|
/external/qemu/ |
osdep.c | 96 const char *tmpdir; local 105 tmpdir = getenv("QEMU_TMPDIR"); 106 if (!tmpdir) 108 tmpdir = "/tmp"; 109 if (statvfs(tmpdir, &stfs) == 0) { 111 tmpdir = "/dev/shm"; 112 if (statfs(tmpdir, &stfs) == 0) { 122 tmpdir, ram_mb); 123 if (strcmp(tmpdir, "/dev/shm") == 0) { 138 tmpdir); [all...] |
qemu-sockets-android.c | 283 char *tmpdir = getenv("TMPDIR"); local 285 tmpdir ? tmpdir : "/tmp");
|
qemu-sockets.c | 344 char *tmpdir = getenv("TMPDIR"); local 346 tmpdir ? tmpdir : "/tmp");
|
block.c | 193 const char *tmpdir; local 195 tmpdir = getenv("TMPDIR"); 196 if (!tmpdir) 197 tmpdir = "/tmp"; 198 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir); [all...] |
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/ |
CharsetProviderTest.java | 63 String tmpDir = System.getProperty("java.io.tmpdir"); 64 if (tmpDir == null) { 65 fail("java.io.tmpdir not set"); 68 File tmpdir = new File(tmpDir); local 69 if (!tmpdir.isDirectory()) { 70 fail("java.io.tmpdir is not a directory"); 75 if (!tmpDir.endsWith(sep)) { 76 tmpDir += sep [all...] |
/external/e2fsprogs/debian/ |
rules | 40 tmpdir=${debdir}/tmp macro 52 mandir=${tmpdir}${MANDIR} 263 mkdir -p ${tmpdir}/sbin 264 $(MAKE) -C ${stdbuilddir} install DESTDIR=${tmpdir} \ 267 $(MAKE) -C ${stdbuilddir} install-libs DESTDIR=${tmpdir} LDCONFIG=true 270 ${INSTALL_PROGRAM} $(E2FSCK_STATIC) ${tmpdir}/sbin 273 ln -s et/com_err.h ${tmpdir}/usr/include 276 test -z `find ${tmpdir} -type f`
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
compat.h | 241 DECLARE_string(tmpdir); variable
|
/external/bluetooth/glib/glib/ |
gfileutils.c | 1268 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); [all...] |
/external/bluetooth/glib/tests/ |
testglib.c | 674 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); [all...] |