/openjdk7/jdk/src/windows/classes/java/util/prefs/ |
H A D | WindowsPreferencesFactory.java | 46 * Returns WindowsPreferences.systemRoot 48 public Preferences systemRoot() { method in class:WindowsPreferencesFactory 49 return WindowsPreferences.systemRoot;
|
H A D | WindowsPreferences.java | 36 * <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 D | PreferencesFactory.java | 49 Preferences systemRoot(); method in interface:PreferencesFactory
|
H A D | Preferences.java | 415 return systemRoot().node(nodeName(c)); 468 public static Preferences systemRoot() { method in class:Preferences 473 return factory.systemRoot();
|
H A D | XmlSupport.java | 213 Preferences.userRoot() : Preferences.systemRoot());
|
/openjdk7/jdk/src/macosx/classes/java/util/prefs/ |
H A D | MacOSXPreferencesFactory.java | 33 public Preferences systemRoot() { method in class:MacOSXPreferencesFactory
|
H A D | MacOSXPreferences.java | 40 // 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 D | FileSystemPreferencesFactory.java | 44 public Preferences systemRoot() { method in class:FileSystemPreferencesFactory
|
H A D | FileSystemPreferences.java | 74 * 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 D | WinCommand.java | 124 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 D | awt_Win32GraphicsEnv.cpp | 277 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 D | PrefsSpi.sh | 76 public Preferences systemRoot() { return new StubPreferences(); }
|
/openjdk7/jdk/test/java/lang/ProcessBuilder/ |
H A D | Basic.java | 54 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 D | InputContext.java | 1040 root = Preferences.systemRoot();
|