Searched defs:osName (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/nio/channels/
H A DTestUtil.java78 private static String osName = System.getProperty("os.name"); field in class:TestUtil
81 return osName.startsWith("SunOS");
85 return osName.startsWith("Windows");
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DSocketOptionTests.java47 final String osName = AccessController.doPrivileged( field in class:SocketOptionTests
170 if ("SunOS".equals(osName)) {
/openjdk7/jdk/test/java/lang/instrument/BootClassPath/
H A DSetup.java97 private static final String osName = System.getProperty("os.name"); field in class:Setup
164 if (osName.startsWith("Windows")) {
/openjdk7/jdk/test/tools/launcher/
H A DUnicodeTest.java69 private static final String osName = System.getProperty("os.name"); field in class:UnicodeTest
136 if (osName.startsWith("Windows")) {
150 if (osName.startsWith("Windows")) {
151 return ! osName.startsWith("Windows 9") &&
152 ! osName.equals("Windows Me");
/openjdk7/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DSocketOptionTests.java55 final String osName = AccessController.doPrivileged( field in class:SocketOptionTests
120 if (!"SunOS".equals(osName)) {
201 if ("SunOS".equals(osName)) {
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpNet.java42 static final String osName = AccessController.doPrivileged( field in class:SctpNet
54 if ("SunOS".equals(osName)) {
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java591 private static final String osName = System.getProperty("os.name"); field in class:Basic.UnicodeOS
594 osName.startsWith("Windows") &&
595 ! osName.startsWith("Windows 9") &&
596 ! osName.equals("Windows Me");
601 private static final String osName = System.getProperty("os.name"); field in class:Basic.MacOSX
602 private static final boolean is = osName.contains("OS X");
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java64 protected static String osName; field in class:FontConfiguration
132 * Fills in this instance's osVersion and osName members. By
137 osName = System.getProperty("os.name");
270 if (osVersion != null && osName != null) {
271 configFile = findImpl(baseName + "." + osName + "." + osVersion);
278 configFile = findImpl(baseName + "." + osName + "." + osMajorVersion);
284 if (osName != null) {
285 configFile = findImpl(baseName + "." + osName);
1380 String osName = (String)java.security.AccessController.doPrivileged(
1393 if (osName
[all...]

Completed in 89 milliseconds