Home
last modified time | relevance | path

Searched refs:profileDir (Results 1 – 25 of 639) sorted by relevance

12345678910>>...26

/dports/sysutils/nix/nix-2.3.10/src/nix/
H A Dupgrade-nix.cc14 Path profileDir; member
24 .dest(&profileDir); in CmdUpgradeNix()
61 if (profileDir == "") in run()
62 profileDir = getProfileDir(store); in run()
64 printInfo("upgrading Nix in profile '%s'", profileDir); in run()
123 Path profileDir = dirOf(where); in getProfileDir() local
126 while (canonPath(profileDir).find("/profiles/") == std::string::npos && isLink(profileDir)) in getProfileDir()
127 profileDir = readLink(profileDir); in getProfileDir()
129 printInfo("found profile '%s'", profileDir); in getProfileDir()
131 Path userEnv = canonPath(profileDir, true); in getProfileDir()
[all …]
H A Ddoctor.cc75 Path profileDir = dirOf(dir); in checkProfileRoots() local
77 Path userEnv = canonPath(profileDir, true); in checkProfileRoots()
80 while (profileDir.find("/profiles/") == std::string::npos && isLink(profileDir)) in checkProfileRoots()
81 profileDir = absPath(readLink(profileDir), dirOf(profileDir)); in checkProfileRoots()
83 if (profileDir.find("/profiles/") == std::string::npos) in checkProfileRoots()
/dports/lang/spidermonkey78/firefox-78.9.0/mobile/android/geckoview/src/main/java/org/mozilla/gecko/
H A DGeckoProfile.java175 final boolean init = profileDir != null && profileDir.mkdirs(); in get()
199 } else if (profileDir != null) { in get()
213 profile.setDir(profileDir); in get()
256 mProfileDir = profileDir; in GeckoProfile()
257 if (profileDir != null) { in GeckoProfile()
258 if (!profileDir.isDirectory()) { in GeckoProfile()
462 File profileDir; in createProfileDir() local
466 } while (profileDir.exists()); in createProfileDir()
469 if (!profileDir.mkdirs()) { in createProfileDir()
506 enqueueInitialization(profileDir); in createProfileDir()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/geckoview/src/main/java/org/mozilla/gecko/
H A DGeckoProfile.java236 final boolean init = profileDir != null && profileDir.mkdirs(); in get()
256 } else if (profileDir != null) { in get()
275 profile.setDir(profileDir); in get()
281 profile.enqueueInitialization(profileDir); in get()
335 mProfileDir = profileDir; in GeckoProfile()
336 if (profileDir != null && !profileDir.isDirectory()) { in GeckoProfile()
916 File profileDir; in createProfileDir() local
920 } while (profileDir.exists()); in createProfileDir()
923 if (!profileDir.mkdirs()) { in createProfileDir()
960 enqueueInitialization(profileDir); in createProfileDir()
[all …]
/dports/www/falkon/falkon-3.2.0/src/lib/app/
H A Dprofilemanager.cpp158 QDir profileDir(DataPaths::currentProfilePath()); in updateCurrentProfile() local
160 if (!profileDir.exists()) { in updateCurrentProfile()
161 QDir newDir(profileDir.path().remove(profileDir.dirName())); in updateCurrentProfile()
162 newDir.mkdir(profileDir.dirName()); in updateCurrentProfile()
165 QFile versionFile(profileDir.filePath(QStringLiteral("version"))); in updateCurrentProfile()
224 QDir profileDir(DataPaths::currentProfilePath()); in copyDataToProfile() local
226 QFile browseData(profileDir.filePath(QStringLiteral("browsedata.db"))); in copyDataToProfile()
233 QFile settings(profileDir.filePath(QSL("settings.ini"))); in copyDataToProfile()
235 …const QString settingsBackup = QzTools::ensureUniqueFilename(profileDir.filePath(QSL("settings-bac… in copyDataToProfile()
240 QFile sessionFile(profileDir.filePath(QSL("session.dat"))); in copyDataToProfile()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/geckoview/src/main/java/org/mozilla/gecko/
H A DGeckoProfile.java228 final boolean init = profileDir != null && profileDir.mkdirs(); in get()
248 } else if (profileDir != null) { in get()
262 profile.setDir(profileDir); in get()
268 profile.enqueueInitialization(profileDir); in get()
321 mProfileDir = profileDir; in GeckoProfile()
322 if (profileDir != null && !profileDir.isDirectory()) { in GeckoProfile()
895 File profileDir; in createProfileDir() local
899 } while (profileDir.exists()); in createProfileDir()
902 if (!profileDir.mkdirs()) { in createProfileDir()
939 enqueueInitialization(profileDir); in createProfileDir()
[all …]
/dports/multimedia/obs-studio/obs-studio-27.1.3/UI/
H A Dwindow-basic-main-profiles.cpp86 profileDir = strrchr(path, '/') + 1; in GetProfileDir()
98 const char *profileDir = nullptr; in ProfileExists() local
99 return GetProfileDir(findName, profileDir); in ProfileExists()
351 profileDir); in DeleteProfile()
358 profileDir); in DeleteProfile()
376 profileDir); in DeleteProfile()
398 const char *profileDir = nullptr; in DeleteProfile() local
404 if (!profileDir) { in DeleteProfile()
410 DeleteProfile(name.c_str(), profileDir); in DeleteProfile()
619 profileDir + "/basic.ini"); in on_actionImportProfile_triggered()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/netwerk/cache/
H A DnsCacheSession.cpp41 NS_IMETHODIMP nsCacheSession::SetProfileDirectory(nsIFile *profileDir) { in SetProfileDirectory() argument
42 if (StoragePolicy() != nsICache::STORE_OFFLINE && profileDir) { in SetProfileDirectory()
50 mProfileDir = profileDir; in SetProfileDirectory()
54 NS_IMETHODIMP nsCacheSession::GetProfileDirectory(nsIFile **profileDir) { in GetProfileDirectory() argument
56 NS_ADDREF(*profileDir = mProfileDir); in GetProfileDirectory()
58 *profileDir = nullptr; in GetProfileDirectory()
/dports/www/firefox-legacy/firefox-52.8.0esr/netwerk/cache/
H A DnsCacheSession.cpp45 NS_IMETHODIMP nsCacheSession::SetProfileDirectory(nsIFile *profileDir) in SetProfileDirectory() argument
47 if (StoragePolicy() != nsICache::STORE_OFFLINE && profileDir) { in SetProfileDirectory()
55 mProfileDir = profileDir; in SetProfileDirectory()
59 NS_IMETHODIMP nsCacheSession::GetProfileDirectory(nsIFile **profileDir) in GetProfileDirectory() argument
62 NS_ADDREF(*profileDir = mProfileDir); in GetProfileDirectory()
64 *profileDir = nullptr; in GetProfileDirectory()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/tests/background/junit4/src/org/mozilla/gecko/
H A DTestGeckoProfile.java39 private File profileDir; field in TestGeckoProfile
48 profileDir = dirContainingProfile.newFolder(); in setUp()
49 profile = GeckoProfile.get(context, PROFILE_NAME, profileDir); in setUp()
51 clientIdFile = new File(profileDir, "datareporting/state.json"); in setUp()
52 timesFile = new File(profileDir, "times.json"); in setUp()
63 profileDir, profile.getDir()); in testGetDir()
91 final File fhrClientIdFile = new File(profileDir, "healthreport/state.json"); in testGetClientIdMigrateFromFHR()
95 assertTrue("Created FHR data directory", new File(profileDir, "healthreport").mkdirs()); in testGetClientIdMigrateFromFHR()
150 final File grandParentDir = new File(profileDir, "grandParent"); in testEnsureParentDirs()
169 …assertTrue("Ensure we can change permissions on profile dir for testing", profileDir.setReadOnly()… in testEnsureParentDirs()
/dports/lang/spidermonkey78/firefox-78.9.0/netwerk/cache/
H A DnsCacheSession.cpp41 NS_IMETHODIMP nsCacheSession::SetProfileDirectory(nsIFile* profileDir) { in SetProfileDirectory() argument
42 if (StoragePolicy() != nsICache::STORE_OFFLINE && profileDir) { in SetProfileDirectory()
50 mProfileDir = profileDir; in SetProfileDirectory()
54 NS_IMETHODIMP nsCacheSession::GetProfileDirectory(nsIFile** profileDir) { in GetProfileDirectory() argument
55 *profileDir = do_AddRef(mProfileDir).take(); in GetProfileDirectory()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/app/src/test/java/org/mozilla/gecko/
H A DTestGeckoProfile.java39 private File profileDir; field in TestGeckoProfile
48 profileDir = dirContainingProfile.newFolder(); in setUp()
49 profile = GeckoProfile.get(context, PROFILE_NAME, profileDir); in setUp()
51 clientIdFile = new File(profileDir, "datareporting/state.json"); in setUp()
52 timesFile = new File(profileDir, "times.json"); in setUp()
63 profileDir, profile.getDir()); in testGetDir()
130 final File grandParentDir = new File(profileDir, "grandParent"); in testEnsureParentDirs()
149 …assertTrue("Ensure we can change permissions on profile dir for testing", profileDir.setReadOnly()… in testEnsureParentDirs()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/
H A DtestUnifiedTelemetryClientId.java26 private File profileDir; field in testUnifiedTelemetryClientId
32 profileDir = profile.getDir(); // Assumes getDir is tested. in setUp()
59 fAssertTrue("Profile directory exists", profileDir.exists()); in testUnifiedTelemetryClientId()
246 return new File(profileDir, CLIENT_ID_PATH); in getClientIdFile()
250 return new File(profileDir, FHR_DIR_PATH); in getFHRClientIdParentDir()
254 return new File(profileDir, FHR_CLIENT_ID_PATH); in getFHRClientIdFile()
/dports/www/firefox/firefox-99.0/dom/ipc/
H A DContentProcess.cpp96 nsCOMPtr<nsIFile> profileDir; in Init() local
129 nsresult rv = XRE_GetFileFromPath(*profile, getter_AddRefs(profileDir)); in Init()
130 if (NS_FAILED(rv) || NS_FAILED(profileDir->Exists(&flag)) || !flag) { in Init()
132 profileDir = nullptr; in Init()
159 mContent.SetProfileDir(profileDir); in Init()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/ipc/
H A DContentProcess.cpp88 nsCOMPtr<nsIFile> profileDir; in Init() local
157 nsresult rv = XRE_GetFileFromPath(aArgv[i], getter_AddRefs(profileDir)); in Init()
158 if (NS_FAILED(rv) || NS_FAILED(profileDir->Exists(&flag)) || !flag) { in Init()
160 profileDir = nullptr; in Init()
183 mContent.SetProfileDir(profileDir); in Init()
/dports/graphics/krita/krita-4.4.8/libs/ui/input/config/
H A Dkis_input_configuration_page.cpp78 QDir profileDir(KoResourcePaths::saveLocation("data", "input/", false)); in setDefaults() local
80 if (profileDir.exists()) { in setDefaults()
81 …QStringList entries = profileDir.entryList(QStringList() << "*.profile", QDir::NoDot | QDir::NoDot… in setDefaults()
83 profileDir.remove(file); in setDefaults()
/dports/sysutils/helmfile/vault-f6547fa8e820/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/misc/concourse/vault-bdd38fca2cff/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/vault/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/github.com/hashicorp/vault/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/hashicorp/vault/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/sysutils/gomplate/vault-sdk-v0.1.13/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/hashicorp/vault/vault-api-v1.0.4/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/devel/gitlab-runner/vault-sdk-v0.1.13/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"
/dports/sysutils/istio/vault-sdk-v0.1.12/command/
H A Dserver_profile.go18 profileDir := filepath.Join(os.TempDir(), "vaultprof")
19 if err := os.MkdirAll(profileDir, 0700); err != nil {
26 filename := filepath.Join(profileDir, time.Now().UTC().Format("20060102_150405")) + ".pprof"

12345678910>>...26