Home
last modified time | relevance | path

Searched refs:PROP_CONFIG_AREA (Results 1 – 17 of 17) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/services/datalocation/
H A DBasicLocationTests.java310 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA + EquinoxLocations.READ_ONLY_AREA_SUFFIX, "true"); in testSlashes()
313 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA, prefix + "/e/f"); in testSlashes()
345 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA + EquinoxLocations.READ_ONLY_AREA_SUFFIX, "true"); in testSchemes()
348 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA, "platform:/base/e/f"); in testSchemes()
367 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA + EquinoxLocations.READ_ONLY_AREA_SUFFIX, "true"); in testNone()
388 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA + EquinoxLocations.READ_ONLY_AREA_SUFFIX, "true"); in testNoDefault()
409 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA + EquinoxLocations.READ_ONLY_AREA_SUFFIX, "true"); in testUserDir()
411 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA, "@user.dir"); in testUserDir()
429 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA + EquinoxLocations.READ_ONLY_AREA_SUFFIX, "true"); in testUserHome()
432 fwkConfig.put(EquinoxLocations.PROP_CONFIG_AREA, "@user.home"); in testUserHome()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/location/
H A DEquinoxLocations.java37 public static final String PROP_CONFIG_AREA = "osgi.configuration.area"; //$NON-NLS-1$ field in EquinoxLocations
86 if (equinoxConfig.getConfiguration(PROP_CONFIG_AREA) != null) { in EquinoxLocations()
89PROP_CONFIG_AREA, equinoxConfig.getConfiguration(PROP_CONFIG_AREA), Constants.FRAMEWORK_STORAGE, o… in EquinoxLocations()
91 equinoxConfig.setConfiguration(PROP_CONFIG_AREA, osgiStorage); in EquinoxLocations()
114 if (defaultLocation == null && equinoxConfig.getConfiguration(PROP_CONFIG_AREA) == null) in EquinoxLocations()
117 …configurationLocation = buildLocation(PROP_CONFIG_AREA, defaultLocation, "", false, false, null); … in EquinoxLocations()
151 String location = equinoxConfig.getConfiguration(PROP_CONFIG_AREA); in mungeConfigurationLocation()
158 equinoxConfig.setConfiguration(PROP_CONFIG_AREA, location); in mungeConfigurationLocation()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/
H A DOSGIUtils.java38 public static final String PROP_CONFIG_AREA = "osgi.configuration.area"; //$NON-NLS-1$ field in OSGIUtils
72 filter = context.createFilter(FILTER_PREFIX + PROP_CONFIG_AREA + "))"); //$NON-NLS-1$ in initServices()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Formatter/test492/
H A DMain_in.java203 private static final String PROP_CONFIG_AREA = "osgi.configuration.area"; //$NON-NLS-1$ field in Main
850 System.getProperties().put(PROP_CONFIG_AREA, arg); in processCommandLine()
919 URL result = buildLocation(PROP_CONFIG_AREA, null, CONFIG_DIR); in getConfigurationLocation()
925 System.getProperties().put(PROP_CONFIG_AREA, configurationLocation); in getConfigurationLocation()
939 if (System.getProperty(PROP_CONFIG_AREA) == null) { in processConfiguration()
954 String location = baseConfiguration.getProperty(PROP_CONFIG_AREA); in processConfiguration()
956 System.getProperties().put(PROP_CONFIG_AREA, location); in processConfiguration()
1449 URL base = buildURL(System.getProperty(PROP_CONFIG_AREA), false); in computeLogFileLocation()
H A DMain_out.java203 private static final String PROP_CONFIG_AREA = "osgi.configuration.area"; //$NON-NLS-1$ field in Main
850 System.getProperties().put(PROP_CONFIG_AREA, arg); in processCommandLine()
919 URL result = buildLocation(PROP_CONFIG_AREA, null, CONFIG_DIR); in getConfigurationLocation()
925 System.getProperties().put(PROP_CONFIG_AREA, configurationLocation); in getConfigurationLocation()
939 if (System.getProperty(PROP_CONFIG_AREA) == null) { in processConfiguration()
954 String location = baseConfiguration.getProperty(PROP_CONFIG_AREA); in processConfiguration()
956 System.getProperties().put(PROP_CONFIG_AREA, location); in processConfiguration()
1449 URL base = buildURL(System.getProperty(PROP_CONFIG_AREA), false); in computeLogFileLocation()
/dports/x11-toolkits/ctk/CTK-2018-10-29/Libs/PluginFramework/
H A DctkLocationManager.cpp353 …ctkPluginFrameworkProperties::setProperty(ctkPluginFrameworkLauncher::PROP_CONFIG_AREA, osgiStorag… in initializeLocations()
382 …& ctkPluginFrameworkProperties::getProperty(ctkPluginFrameworkLauncher::PROP_CONFIG_AREA).isNull()) in initializeLocations()
387 …configurationLocation.reset(BuildLocation(ctkPluginFrameworkLauncher::PROP_CONFIG_AREA, defaultLoc… in initializeLocations()
H A DctkPluginFrameworkLauncher.h66 static const QString PROP_CONFIG_AREA; // = "ctk.configuration.area"; variable
H A DctkPluginFramework_p.cpp83 locationProperties["type"] = ctkPluginFrameworkLauncher::PROP_CONFIG_AREA; in activate()
H A DctkPluginFrameworkLauncher.cpp65 const QString ctkPluginFrameworkLauncher::PROP_CONFIG_AREA = "ctk.configuration.area"; member in ctkPluginFrameworkLauncher
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/tests/org.eclipse.core.tests.harness/src/org/eclipse/core/tests/session/
H A DConfigurationSessionTestSuite.java59 …private static final String PROP_CONFIG_AREA_READ_ONLY = InternalPlatform.PROP_CONFIG_AREA + ".rea…
195 base.setSystemProperty(InternalPlatform.PROP_CONFIG_AREA, configurationPath.toOSString()); in newSetup()
H A DSetup.java67 return System.getProperty(InternalPlatform.PROP_CONFIG_AREA); in getDefaultConfiguration()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/
H A DMain.java193 private static final String PROP_CONFIG_AREA = "osgi.configuration.area"; //$NON-NLS-1$ field in Main
710 if (Boolean.parseBoolean(System.getProperty(PROP_CONFIG_AREA + READ_ONLY_AREA_SUFFIX))) { in checkConfigurationLocation()
1653 System.setProperty(PROP_CONFIG_AREA, arg); in processCommandLine()
1745 configurationLocation = buildLocation(PROP_CONFIG_AREA, null, ""); //$NON-NLS-1$ in getConfigurationLocation()
1752 System.setProperty(PROP_CONFIG_AREA, configurationLocation.toExternalForm()); in getConfigurationLocation()
1766 if (System.getProperty(PROP_CONFIG_AREA) == null) { in processConfiguration()
1786 String location = baseConfiguration.getProperty(PROP_CONFIG_AREA); in processConfiguration()
1788 System.setProperty(PROP_CONFIG_AREA, location); in processConfiguration()
2249 String configLocation = System.getProperty(PROP_CONFIG_AREA); in extractFromJAR()
2465 URL base = buildURL(System.getProperty(PROP_CONFIG_AREA), false); in computeLogFileLocation()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/
H A DAppPersistence.java35 private static final String PROP_CONFIG_AREA = "osgi.configuration.area"; //$NON-NLS-1$ field in AppPersistence
79 filter = context.createFilter(FILTER_PREFIX + PROP_CONFIG_AREA + "))"); //$NON-NLS-1$ in initConfiguration()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/
H A DSystemBundleActivator.java171 locationProperties.put("type", EquinoxLocations.PROP_CONFIG_AREA); //$NON-NLS-1$ in registerLocations()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/
H A DInternalPlatform.java72 public static final String PROP_CONFIG_AREA = "osgi.configuration.area"; //$NON-NLS-1$ field in InternalPlatform
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/
H A DSystemBundleTests.java1893 EquinoxLocations.PROP_CONFIG_AREA, // in testAllNullConfigurationValues()
2709 configuration.put(EquinoxLocations.PROP_CONFIG_AREA, config.getAbsolutePath() + "-override"); in testOverrideEquinoxConfigAreaProp()
2721 …age found: " + entry.getMessage(), entry.getMessage().contains(EquinoxLocations.PROP_CONFIG_AREA)); in testOverrideEquinoxConfigAreaProp()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/adaptor/
H A DEclipseStarter.java774 setProperty(EquinoxLocations.PROP_CONFIG_AREA, arg); in processCommandLine()