/external/autotest/client/cros/ |
D | chrome_binary_test.py | 28 home_dir = None variable in ChromeBinaryTest 55 self.home_dir = tempfile.mkdtemp() 61 if self.home_dir: 62 shutil.rmtree(self.home_dir, ignore_errors=True) 136 'HOME=' + self.home_dir,
|
/external/llvm-project/lldb/source/Initialization/ |
D | SystemInitializerCommon.cpp | 66 llvm::Expected<std::string> home_dir = in InitializeFileSystem() local 68 if (!home_dir) in InitializeFileSystem() 69 return home_dir.takeError(); in InitializeFileSystem() 70 FileSystem::Instance().SetHomeDirectory(*home_dir); in InitializeFileSystem()
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | google_auth_provider.cc | 109 const char* home_dir = std::getenv("HOME"); in GetWellKnownFileName() local 110 if (!home_dir) { in GetWellKnownFileName() 113 config_dir = io::JoinPath(home_dir, kGCloudConfigFolder); in GetWellKnownFileName()
|
/external/llvm-project/lldb/source/Utility/ |
D | Reproducer.cpp | 315 llvm::Expected<std::string> home_dir = in Verify() local 317 if (home_dir) { in Verify() 318 if (!vfs->exists(*home_dir)) in Verify() 319 warning_callback("home directory '" + *home_dir + "' not in VFS"); in Verify() 322 toString(home_dir.takeError())); in Verify()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | ReproducerProvider.h | 210 llvm::SmallString<128> home_dir; in HomeDirectoryProvider() local 211 llvm::sys::path::home_directory(home_dir); in HomeDirectoryProvider() 212 SetDirectory(std::string(home_dir)); in HomeDirectoryProvider()
|
/external/llvm-project/lldb/source/Host/common/ |
D | FileSystem.cpp | 372 SmallString<128> home_dir; in GetHomeDirectory() local 373 if (!GetHomeDirectory(home_dir)) in GetHomeDirectory() 375 file_spec.SetPath(home_dir); in GetHomeDirectory()
|
/external/libchrome/base/files/ |
D | file_util_posix.cc | 618 const char* home_dir = getenv("HOME"); in GetHomeDir() local 619 if (home_dir && home_dir[0]) in GetHomeDir() 620 return FilePath(home_dir); in GetHomeDir()
|
/external/python/cpython3/Lib/test/ |
D | test_venv.py | 459 with tempfile.TemporaryDirectory() as home_dir: 460 envvars["HOME"] = home_dir 468 dirpath = os.path.join(home_dir, dirname)
|
/external/tpm2-tss/src/tss2-fapi/ |
D | ifapi_keystore.c | 344 char *home_dir; in ifapi_keystore_initialize() local 362 home_dir = getenv("HOME"); in ifapi_keystore_initialize() 363 goto_if_null2(home_dir, "Home directory can't be determined.", in ifapi_keystore_initialize() 366 r = ifapi_asprintf(&home_path, "%s%s%s", home_dir, IFAPI_FILE_DELIM, in ifapi_keystore_initialize()
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 312 home_dir: /Users 313 my_dir: %(home_dir)s/lumberjack 320 ``BasicInterpolation()`` would resolve ``%(home_dir)s`` to the value of 321 ``home_dir`` (``/Users`` in this case). ``%(my_dir)s`` in effect would 328 ``%(home_dir)s/lumberjack`` as the value of ``my_dir``. 347 home_dir: /Users 348 my_dir: ${home_dir}/lumberjack 359 home_dir: /Users 371 my_dir: ${Common:home_dir}/twosheds
|
/external/sqlite/dist/ |
D | shell.c | 18798 static char *home_dir = NULL; in find_home_dir() local 18800 free(home_dir); in find_home_dir() 18801 home_dir = 0; in find_home_dir() 18804 if( home_dir ) return home_dir; in find_home_dir() 18812 home_dir = pwent->pw_dir; in find_home_dir() 18820 home_dir = "/"; in find_home_dir() 18824 if (!home_dir) { in find_home_dir() 18825 home_dir = getenv("USERPROFILE"); in find_home_dir() 18829 if (!home_dir) { in find_home_dir() 18830 home_dir = getenv("HOME"); in find_home_dir() [all …]
|
/external/sqlite/dist/orig/ |
D | shell.c | 18777 static char *home_dir = NULL; in find_home_dir() local 18779 free(home_dir); in find_home_dir() 18780 home_dir = 0; in find_home_dir() 18783 if( home_dir ) return home_dir; in find_home_dir() 18791 home_dir = pwent->pw_dir; in find_home_dir() 18799 home_dir = "/"; in find_home_dir() 18803 if (!home_dir) { in find_home_dir() 18804 home_dir = getenv("USERPROFILE"); in find_home_dir() 18808 if (!home_dir) { in find_home_dir() 18809 home_dir = getenv("HOME"); in find_home_dir() [all …]
|
/external/python/cpython3/Doc/tools/ |
D | susp-ignored.csv | 118 library/configparser,,:home,my_dir: ${Common:home_dir}/twosheds
|