Searched refs:systemRoot (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/windows/classes/java/util/prefs/
H A DWindowsPreferencesFactory.java46 * Returns WindowsPreferences.systemRoot
48 public Preferences systemRoot() { method in class:WindowsPreferencesFactory
49 return WindowsPreferences.systemRoot;
H A DWindowsPreferences.java36 * <tt>Preferences</tt>' <tt>systemRoot</tt> and <tt>userRoot</tt> are stored in
91 static final Preferences systemRoot = field in class:WindowsPreferences
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DPreferencesFactory.java49 Preferences systemRoot(); method in interface:PreferencesFactory
H A DPreferences.java415 return systemRoot().node(nodeName(c));
468 public static Preferences systemRoot() { method in class:Preferences
473 return factory.systemRoot();
H A DXmlSupport.java213 Preferences.userRoot() : Preferences.systemRoot());
/openjdk7/jdk/src/macosx/classes/java/util/prefs/
H A DMacOSXPreferencesFactory.java33 public Preferences systemRoot() { method in class:MacOSXPreferencesFactory
H A DMacOSXPreferences.java40 // true if this node is userRoot or systemRoot
51 private static MacOSXPreferences systemRoot = null; field in class:MacOSXPreferences
67 if (systemRoot == null) {
68 systemRoot = new MacOSXPreferences(false);
70 return systemRoot;
/openjdk7/jdk/src/solaris/classes/java/util/prefs/
H A DFileSystemPreferencesFactory.java44 public Preferences systemRoot() { method in class:FileSystemPreferencesFactory
H A DFileSystemPreferences.java74 * Flag, indicating whether systemRoot directory is writable
152 static Preferences systemRoot; field in class:FileSystemPreferences
155 if (systemRoot == null) {
157 systemRoot = new FileSystemPreferences(false);
159 return systemRoot;
166 System.getProperty("java.util.prefs.systemRoot","/etc/.java");
248 * Unix lock handle for systemRoot.
299 * File, which keeps track of global modifications of systemRoot
303 * Flag, which indicates whether systemRoot was modified by another VM
308 * Keeps track of systemRoot modificatio
[all...]
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DWinCommand.java124 File systemRoot =
128 if (systemRoot == null || ! systemRoot.isDirectory())
131 String systemDirW = new File(systemRoot, "System32").getPath();
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsEnv.cpp277 LPWSTR systemRoot = _wgetenv(L"SystemRoot"); local
278 if (systemRoot != NULL
279 && swprintf(tmpPath, MAX_PATH, L"%s%s", systemRoot, fontPath + 12) != -1) {
287 WCHAR systemRoot[MAX_PATH + 1]; local
288 if (GetWindowsDirectory(systemRoot, MAX_PATH + 1) != 0) {
289 swprintf(tmpPath, MAX_PATH, L"%s\\FONTS\\EUDC.TTE", systemRoot);
/openjdk7/jdk/test/java/util/prefs/
H A DPrefsSpi.sh76 public Preferences systemRoot() { return new StubPreferences(); }
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java54 static final String systemRoot = System.getenv("SystemRoot"); field in class:Basic
1127 String expected = Windows.is() ? "SystemRoot="+systemRoot+",": "";
1129 pb.environment().put("SystemRoot", systemRoot);
1495 String systemRoot = "SystemRoot=" + System.getenv("SystemRoot");
1498 "+=+", "_=_", "~=~", systemRoot};
1500 String expected = "+=+\nBAZ=GORP\nFOO=BAR\nQUUX=\n"+systemRoot+"\n_=_\n~=~\n";
1514 String systemRoot = "SystemRoot=" + System.getenv("SystemRoot");
1518 String expected = "+=+\nBAZ=GORP\nFOO=BAR\nQUUX=\n"+systemRoot+"\n_=_\n~=~\n";
1640 String[] envpWin = {"=ExitValue=3", "=C:=\\", "SystemRoot="+systemRoot};
1648 String expected = Windows.is() ? "=C:=\\,SystemRoot="+systemRoot
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputContext.java1040 root = Preferences.systemRoot();

Completed in 81 milliseconds