Home
last modified time | relevance | path

Searched refs:UserPath (Results 1 – 25 of 169) sorted by relevance

1234567

/dports/emulators/yuzu/yuzu-0b47f7a46/src/yuzu/configuration/
H A Dconfigure_filesystem.cpp45 QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir))); in setConfiguration()
47 QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir))); in setConfiguration()
50 QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::DumpDir))); in setConfiguration()
52 QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::LoadDir))); in setConfiguration()
54 QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::CacheDir))); in setConfiguration()
67 Common::FS::GetUserPath(Common::FS::UserPath::NANDDir, in applyConfiguration()
69 Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir, in applyConfiguration()
71 Common::FS::GetUserPath(Common::FS::UserPath::DumpDir, in applyConfiguration()
73 Common::FS::GetUserPath(Common::FS::UserPath::LoadDir, in applyConfiguration()
75 Common::FS::GetUserPath(Common::FS::UserPath::CacheDir, in applyConfiguration()
[all …]
H A Dconfig.cpp594 FS::GetUserPath(FS::UserPath::NANDDir, in ReadDataStorageValues()
600 FS::GetUserPath(FS::UserPath::SDMCDir, in ReadDataStorageValues()
606 FS::GetUserPath(FS::UserPath::LoadDir, in ReadDataStorageValues()
612 FS::GetUserPath(FS::UserPath::DumpDir, in ReadDataStorageValues()
618 FS::GetUserPath(FS::UserPath::CacheDir, in ReadDataStorageValues()
811 FS::UserPath::ScreenshotsDir, in ReadScreenshotValues()
1211 QString::fromStdString(FS::GetUserPath(FS::UserPath::NANDDir)), in SaveDataStorageValues()
1212 QString::fromStdString(FS::GetUserPath(FS::UserPath::NANDDir))); in SaveDataStorageValues()
1214 QString::fromStdString(FS::GetUserPath(FS::UserPath::SDMCDir)), in SaveDataStorageValues()
1217 QString::fromStdString(FS::GetUserPath(FS::UserPath::LoadDir)), in SaveDataStorageValues()
[all …]
/dports/security/keybase/client-v5.7.1/go/kbnm/hostmanifest/
H A Duser.go16 type UserPath struct { struct
22 func (u *UserPath) IsAdmin() bool { return u.Admin } argument
25 func (u *UserPath) PrefixPath() string { return u.Path } argument
28 func CurrentUser() (*UserPath, error) {
33 u := &UserPath{
/dports/emulators/yuzu/yuzu-0b47f7a46/src/common/
H A Dfile_util.cpp673 static std::unordered_map<UserPath, std::string> paths; in GetCurrentDir()
674 auto& user_path = paths[UserPath::UserDir]; in GetCurrentDir()
703 paths.emplace(UserPath::SDMCDir, user_path + SDMC_DIR DIR_SEP); in GetCurrentDir()
712 paths.emplace(UserPath::LogDir, user_path + LOG_DIR DIR_SEP); in GetCurrentDir()
724 case UserPath::RootDir: in GetCurrentDir()
725 user_path = paths[UserPath::RootDir] + DIR_SEP; in GetCurrentDir()
727 case UserPath::UserDir: in GetCurrentDir()
728 user_path = paths[UserPath::RootDir] + DIR_SEP; in GetCurrentDir()
730 paths[UserPath::CacheDir] = user_path + CACHE_DIR DIR_SEP; in GetCurrentDir()
731 paths[UserPath::SDMCDir] = user_path + SDMC_DIR DIR_SEP; in GetCurrentDir()
[all …]
/dports/emulators/citra/citra-ac98458e0/src/common/
H A Dfile_util.cpp676 std::unordered_map<UserPath, std::string> g_paths; in GetCurrentDir()
680 std::string& user_path = g_paths[UserPath::UserDir]; in GetCurrentDir()
721 g_paths.emplace(UserPath::SDMCDir, !Settings::values.sdmc_dir.empty() in GetCurrentDir()
724 g_paths.emplace(UserPath::NANDDir, !Settings::values.nand_dir.empty() in GetCurrentDir()
729 g_paths.emplace(UserPath::LogDir, user_path + LOG_DIR DIR_SEP); in GetCurrentDir()
730 g_paths.emplace(UserPath::CheatsDir, user_path + CHEATS_DIR DIR_SEP); in GetCurrentDir()
731 g_paths.emplace(UserPath::DLLDir, user_path + DLL_DIR DIR_SEP); in GetCurrentDir()
733 g_paths.emplace(UserPath::DumpDir, user_path + DUMP_DIR DIR_SEP); in GetCurrentDir()
734 g_paths.emplace(UserPath::LoadDir, user_path + LOAD_DIR DIR_SEP); in GetCurrentDir()
765 const std::string& GetUserPath(UserPath path) { in GetCurrentDir()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/src/common/
H A Dfile_util.cpp676 std::unordered_map<UserPath, std::string> g_paths; in GetCurrentDir()
680 std::string& user_path = g_paths[UserPath::UserDir]; in GetCurrentDir()
721 g_paths.emplace(UserPath::SDMCDir, !Settings::values.sdmc_dir.empty() in GetCurrentDir()
724 g_paths.emplace(UserPath::NANDDir, !Settings::values.nand_dir.empty() in GetCurrentDir()
729 g_paths.emplace(UserPath::LogDir, user_path + LOG_DIR DIR_SEP); in GetCurrentDir()
730 g_paths.emplace(UserPath::CheatsDir, user_path + CHEATS_DIR DIR_SEP); in GetCurrentDir()
731 g_paths.emplace(UserPath::DLLDir, user_path + DLL_DIR DIR_SEP); in GetCurrentDir()
733 g_paths.emplace(UserPath::DumpDir, user_path + DUMP_DIR DIR_SEP); in GetCurrentDir()
734 g_paths.emplace(UserPath::LoadDir, user_path + LOAD_DIR DIR_SEP); in GetCurrentDir()
765 const std::string& GetUserPath(UserPath path) { in GetCurrentDir()
[all …]
/dports/cad/zcad/zcad-8b8a693/cad_source/components/zebase/
H A Duzbpaths.pas39 var ProgramPath,SupportPath,TempPath,UserPath:gdbstring;
159 result:=UserPath+copy(path,2,length(path)-1);
256 UserPath:=GetUserDir+'.zcad/';
257 ForceDirectories(UserPath+'autosave');
258 ForceDirectories(UserPath+'components');
259 ForceDirectories(UserPath+'rtl');
/dports/emulators/yuzu/yuzu-0b47f7a46/src/yuzu_cmd/
H A Dconfig.cpp23 sdl2_config_loc = FS::GetUserPath(FS::UserPath::ConfigDir) + "sdl2-config.ini"; in Config()
325 FS::UserPath::NANDDir, in ReadValues()
326 sdl2_config->Get("Data Storage", "nand_directory", FS::GetUserPath(FS::UserPath::NANDDir))); in ReadValues()
328 FS::UserPath::SDMCDir, in ReadValues()
329 sdl2_config->Get("Data Storage", "sdmc_directory", FS::GetUserPath(FS::UserPath::SDMCDir))); in ReadValues()
331 FS::UserPath::LoadDir, in ReadValues()
332 sdl2_config->Get("Data Storage", "load_directory", FS::GetUserPath(FS::UserPath::LoadDir))); in ReadValues()
334 FS::UserPath::DumpDir, in ReadValues()
335 sdl2_config->Get("Data Storage", "dump_directory", FS::GetUserPath(FS::UserPath::DumpDir))); in ReadValues()
336 FS::GetUserPath(FS::UserPath::CacheDir, in ReadValues()
[all …]
/dports/games/memonix/MemonixSourceCode/src/
H A DMain.cpp105 char UserPath[MAX_PATH]; in main() local
106 ZeroMemory(UserPath, sizeof(UserPath)); in main()
110 UserPath, in main()
114 strcat(UserPath, "\\Memoinix\\"); in main()
115 CreateDirectory(UserPath, NULL); in main()
117 strcpy(DatFileName, UserPath); in main()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem/src/System/IO/
H A DPathPair.cs9 internal readonly string UserPath; field
14 UserPath = userPath; in PathPair()
/dports/emulators/yuzu/yuzu-0b47f7a46/src/yuzu_tester/
H A Dconfig.cpp22 sdl2_config_loc = FS::GetUserPath(FS::UserPath::ConfigDir) + "sdl2-tester-config.ini"; in Config()
94 FS::GetUserPath(Common::FS::UserPath::NANDDir, in ReadValues()
96 Common::FS::GetUserPath(Common::FS::UserPath::NANDDir))); in ReadValues()
97 FS::GetUserPath(Common::FS::UserPath::SDMCDir, in ReadValues()
99 Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir))); in ReadValues()
/dports/emulators/citra/citra-ac98458e0/src/core/hle/service/fs/
H A Darchive.cpp35 if (path.rfind(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir), 0) == 0) { in GetMediaTypeFromPath()
38 if (path.rfind(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir), 0) == 0) { in GetMediaTypeFromPath()
266 media_type_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in DeleteExtSaveData()
268 media_type_directory = FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir); in DeleteExtSaveData()
287 const std::string& nand_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in DeleteSystemSaveData()
301 const std::string& nand_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in CreateSystemSaveData()
325 std::string sdmc_directory = FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir); in RegisterArchiveTypes()
326 std::string nand_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in RegisterArchiveTypes()
/dports/emulators/citra-qt5/citra-ac98458e0/src/core/hle/service/fs/
H A Darchive.cpp35 if (path.rfind(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir), 0) == 0) { in GetMediaTypeFromPath()
38 if (path.rfind(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir), 0) == 0) { in GetMediaTypeFromPath()
266 media_type_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in DeleteExtSaveData()
268 media_type_directory = FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir); in DeleteExtSaveData()
287 const std::string& nand_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in DeleteSystemSaveData()
301 const std::string& nand_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in CreateSystemSaveData()
325 std::string sdmc_directory = FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir); in RegisterArchiveTypes()
326 std::string nand_directory = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); in RegisterArchiveTypes()
/dports/security/lego/lego-4.5.3/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/hashicorp/consul/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/consul/consul-1.4.2/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/security/vault/vault-1.8.2/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/consul/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/extensions/admin/roles/
H A Durls.go8 UserPath = "users" const
20 return c.ServiceURL("tenants", tenantID, UserPath, userID, RolePath, ExtPath, roleID)
/dports/emulators/citra/citra-ac98458e0/src/citra_qt/
H A Dgame_list_worker.cpp124 QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)) + in run()
129 QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)) + in run()
142 QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)) + in run()
/dports/emulators/citra-qt5/citra-ac98458e0/src/citra_qt/
H A Dgame_list_worker.cpp124 QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)) + in run()
129 QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)) + in run()
142 QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)) + in run()

1234567