Home
last modified time | relevance | path

Searched refs:home_dir (Results 1 – 10 of 10) sorted by relevance

/third_party/glib/patch/
Dbackport-gutils-Fix-an-unlikely-minor-leak-in-g_build_user_data_dir.patch25 gchar *home_dir = g_build_home_dir ();
27 data_dir = g_build_filename (home_dir, ".local", "share", NULL);
28 g_free (home_dir);
/third_party/pulseaudio/src/pulsecore/
Dcore-util.c1550 char *home_dir; in pa_append_to_home_dir() local
1555 home_dir = pa_get_home_dir_malloc(); in pa_append_to_home_dir()
1556 if (!home_dir) { in pa_append_to_home_dir()
1561 *_r = pa_sprintf_malloc("%s" PA_PATH_SEP "%s", home_dir, path); in pa_append_to_home_dir()
1562 pa_xfree(home_dir); in pa_append_to_home_dir()
1568 char *home_dir; in pa_get_config_home_dir() local
1578 home_dir = pa_get_home_dir_malloc(); in pa_get_config_home_dir()
1579 if (!home_dir) in pa_get_config_home_dir()
1582 *_r = pa_sprintf_malloc("%s" PA_PATH_SEP ".config" PA_PATH_SEP "pulse", home_dir); in pa_get_config_home_dir()
1583 pa_xfree(home_dir); in pa_get_config_home_dir()
[all …]
/third_party/cef/libcef/common/
Dresource_util.cc120 base::FilePath home_dir = base::GetHomeDir(); in DownloadPathIsDangerous() local
121 if (download_path == home_dir) { in DownloadPathIsDangerous()
/third_party/gn/src/base/files/
Dfile_util_posix.cc366 const char* home_dir = getenv("HOME"); in GetHomeDir() local
367 if (home_dir && home_dir[0]) in GetHomeDir()
368 return FilePath(home_dir); in GetHomeDir()
/third_party/python/Lib/test/
Dtest_venv.py464 with tempfile.TemporaryDirectory() as home_dir:
465 envvars["HOME"] = home_dir
473 dirpath = os.path.join(home_dir, dirname)
/third_party/python/Doc/library/
Dconfigparser.rst342 home_dir: /Users
343 my_dir: %(home_dir)s/lumberjack
350 ``BasicInterpolation()`` would resolve ``%(home_dir)s`` to the value of
351 ``home_dir`` (``/Users`` in this case). ``%(my_dir)s`` in effect would
358 ``%(home_dir)s/lumberjack`` as the value of ``my_dir``.
377 home_dir: /Users
378 my_dir: ${home_dir}/lumberjack
389 home_dir: /Users
401 my_dir: ${Common:home_dir}/twosheds
/third_party/sqlite/src/
Dshell.c25596 static char *home_dir = NULL; in find_home_dir() local
25598 free(home_dir); in find_home_dir()
25599 home_dir = 0; in find_home_dir()
25602 if( home_dir ) return home_dir; in find_home_dir()
25610 home_dir = pwent->pw_dir; in find_home_dir()
25618 home_dir = "/"; in find_home_dir()
25622 if (!home_dir) { in find_home_dir()
25623 home_dir = getenv("USERPROFILE"); in find_home_dir()
25627 if (!home_dir) { in find_home_dir()
25628 home_dir = getenv("HOME"); in find_home_dir()
[all …]
/third_party/python/Doc/tools/
Dsusp-ignored.csv117 library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
/third_party/gn/docs/
Dreference.md2762 home_dir = getenv("HOME")
/third_party/chromium/patch/
D0003-ohos-1115.patch24085 base::FilePath home_dir = base::GetHomeDir();
24086 if (download_path == home_dir) {
38667 base::FilePath home_dir = base::GetHomeDir();
38668 if (download_path == home_dir) {
40989 base::FilePath home_dir = temp_dir_.GetPath().AppendASCII("home");
40990 base::ScopedPathOverride home_override(base::DIR_HOME, home_dir, true, true);
40995 - PathType::kLocal, home_dir,
41000 + permission_context(), PathType::kLocal, home_dir,
41016 - home_dir.AppendASCII("foo"), HandleType::kFile));
41020 - home_dir.AppendASCII("foo"), HandleType::kDirectory));
[all …]