Searched defs:minor (Results 26 - 50 of 70) sorted by relevance

123

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DPERSIST_STORE.java32 * It contains a minor code, which gives more detailed information about
42 * Constructs a <code>PERSIST_STORE</code> exception with a default minor code
52 * a minor code of 0, and a completion state of COMPLETED_NO.
61 * minor code and completion status.
62 * @param minor the minor code
65 public PERSIST_STORE(int minor, CompletionStatus completed) { argument
66 this("", minor, completed);
71 * message, minor code, and completion status.
73 * @param minor th
76 PERSIST_STORE(String s, int minor, CompletionStatus completed) argument
[all...]
H A DTRANSACTION_MODE.java33 * It contains a minor code, which gives information about
45 * minor code of 0, a completion state of CompletionStatus.COMPLETED_NO,
54 * description message, a minor code of 0, and a completion state of
64 * minor code and completion status.
65 * @param minor the minor code
68 public TRANSACTION_MODE(int minor, CompletionStatus completed) { argument
69 this("", minor, completed);
74 * description message, minor code, and completion status.
76 * @param minor th
79 TRANSACTION_MODE(String s, int minor, CompletionStatus completed) argument
[all...]
H A DTRANSACTION_REQUIRED.java31 * It contains a minor code, which gives information about
42 * Constructs a <code>TRANSACTION_REQUIRED</code> exception with a default minor code
52 * description message, a minor code of 0, and a completion state of COMPLETED_NO.
61 * minor code and completion status.
62 * @param minor the minor code
65 public TRANSACTION_REQUIRED(int minor, CompletionStatus completed) { argument
66 this("", minor, completed);
71 * message, minor code, and completion status.
73 * @param minor th
76 TRANSACTION_REQUIRED(String s, int minor, CompletionStatus completed) argument
[all...]
H A DTRANSACTION_ROLLEDBACK.java35 * It contains a minor code, which gives more detailed information about
45 * Constructs a <code>TRANSACTION_ROLLEDBACK</code> exception with a default minor code
56 * a minor code of 0, and a completion state of COMPLETED_NO.
65 * minor code and completion status.
66 * @param minor the minor code
69 public TRANSACTION_ROLLEDBACK(int minor, CompletionStatus completed) { argument
70 this("", minor, completed);
75 * specified description message, minor code, and completion status.
77 * @param minor th
80 TRANSACTION_ROLLEDBACK(String s, int minor, CompletionStatus completed) argument
[all...]
H A DTRANSACTION_UNAVAILABLE.java33 * It contains a minor code, which gives information about
45 * with a default minor code of 0, a completion state of
54 * specifieddescription message, a minor code of 0, and a completion state
64 * specified minor code and completion status.
65 * @param minor the minor code
68 public TRANSACTION_UNAVAILABLE(int minor, CompletionStatus completed) { argument
69 this("", minor, completed);
74 * specified description message, minor code, and completion status.
76 * @param minor th
79 TRANSACTION_UNAVAILABLE(String s, int minor, CompletionStatus completed) argument
[all...]
H A DTRANSIENT.java35 * It contains a minor code, which gives more detailed information about
45 * Constructs a <code>TRANSIENT</code> exception with a default minor code
55 * a minor code of 0, and a completion state of COMPLETED_NO.
64 * minor code and completion status.
65 * @param minor the minor code
68 public TRANSIENT(int minor, CompletionStatus completed) { argument
69 this("", minor, completed);
74 * message, minor code, and completion status.
76 * @param minor th
79 TRANSIENT(String s, int minor, CompletionStatus completed) argument
[all...]
H A DUNKNOWN.java38 * It contains a minor code, which gives more detailed information about
43 * Code Meanings</A> to see the minor codes for this exception.
51 * Constructs an <code>UNKNOWN</code> exception with a default minor code
61 * a minor code of 0, and a completion state of COMPLETED_NO.
70 * minor code and completion status.
71 * @param minor the minor code
74 public UNKNOWN(int minor, CompletionStatus completed) { argument
75 this("", minor, completed);
80 * message, minor cod
85 UNKNOWN(String s, int minor, CompletionStatus completed) argument
[all...]
H A DSystemException.java38 * exceptions contain a minor code, allowing more detailed specification, and a
54 * The CORBA Exception minor code.
57 public int minor; field in class:SystemException
67 * message, minor code, and completion status.
70 * @param minor the minor code
73 protected SystemException(String reason, int minor, CompletionStatus completed) { argument
75 this.minor = minor;
87 int vmcid = minor
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestPremaster.java63 private static void test(KeyGenerator kg, int major, int minor) argument
66 kg.init(new TlsRsaPremasterSecretParameterSpec(major, minor));
72 if ((encoded[0] != major) || (encoded[1] != minor)) {
76 System.out.println("OK: " + major + "." + minor);
/openjdk7/jdk/make/tools/freetypecheck/
H A Dfreetypecheck.c79 FT_Int major, minor, patch; local
92 FT_Library_Version(library, &major, &minor, &patch);
93 sprintf(v, "%d.%d.%d", major, minor, patch);
/openjdk7/jdk/test/java/lang/System/
H A DVersions.java46 static void checkClassVersion(int major, int minor, boolean expectSupported) argument
56 dos.writeLong((0xCafeBabel << 32) + (minor << 16) + major);
85 // Injecting a larger major or minor version number into a
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_VERSION.java60 * CK_BYTE minor;&nbsp;&nbsp;
80 * CK_BYTE minor;
83 public byte minor; /* 1/100ths portion of version number */ field in class:CK_VERSION
85 public CK_VERSION(int major, int minor) { argument
87 this.minor = (byte)minor;
100 int m = minor & 0xff;
/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestPremaster.java70 private static void test(KeyGenerator kg, int major, int minor) argument
73 kg.init(new TlsRsaPremasterSecretParameterSpec(major, minor));
79 if ((encoded[0] != major) || (encoded[1] != minor)) {
83 System.out.println("OK: " + major + "." + minor);
/openjdk7/jdk/test/sun/misc/Version/
H A DVersion.java64 final int minor; field in class:Version.VersionInfo
69 VersionInfo(int major, int minor, int micro, argument
72 this.minor = minor;
80 return (this.major == v.major && this.minor == v.minor &&
87 sb.append(major + "." + minor + "." + micro);
102 // <major>.<minor>[.<micro>][_uu[c]][-<identifier>]-bxx
104 int minor = 0;
112 regex += "([0-9]{1,2})"; // minor
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DVersionInfo.java42 * Class to store version numbers of the form major.minor.milli.micro.
53 * @param version version String in the format of "major.minor.milli.micro"
54 * or "major.minor.milli" or "major.minor" or "major",
55 * where major, minor, milli, micro are non-negative numbers
102 * @param minor minor version, non-negative number <= 255.
109 public static VersionInfo getInstance(int major, int minor, int milli, argument
114 if (major < 0 || major > 255 || minor < 0 || minor > 25
181 getInt(int major, int minor, int milli, int micro) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/namingutil/
H A DIIOPEndpointInfo.java40 private int major, minor; field in class:IIOPEndpointInfo
49 minor = ORBConstants.DEFAULT_INS_GIOP_MINOR_VERSION;
74 minor = theMinor;
82 return minor;
88 System.out.println( " Major -> " + major + " Minor -> " + minor );
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DIiopUrl.java45 * version = major "." minor "@" | empty_string
48 * minor = number
76 public int major, minor; field in class:IiopUrl.Address
88 minor = 0;
98 minor = Integer.parseInt(hostPortVers.substring(dot+1, at));
216 System.out.println("version: " + addr.major + " " + addr.minor);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DProtocolVersion.java93 // major and minor version
94 public final byte major, minor; field in class:ProtocolVersion
104 minor = (byte)(v & 0xff);
121 int minor = v & 0xff;
122 return new ProtocolVersion(v, "Unknown-" + major + "." + minor);
127 * Return a ProtocolVersion with the specified major and minor version
130 public static ProtocolVersion valueOf(int major, int minor) { argument
132 minor &= 0xff;
133 int v = (major << 8) | minor;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DClassParser.java84 private int major, minor; // Compiler version field in class:ClassParser
207 file_name, major, minor, access_flags,
322 * Read major and minor version of compiler which created the file.
328 minor = file.readUnsignedShort();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DOSInfo.java152 private final int minor; field in class:OSInfo.WindowsVersion
154 private WindowsVersion(int major, int minor) { argument
156 this.minor = minor;
164 return minor;
171 result = minor - o.getMinor();
182 return 31 * major + minor;
186 return major + "." + minor;
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryService.hpp63 // index for minor and major generations
65 minor = 0, enumerator in enum:MemoryService::__anon483
73 // memory managers for minor and major GC statistics
/openjdk7/jdk/src/solaris/native/sun/security/jgss/wrapper/
H A DNativeFunc.c72 OM_uint32 minor, major; local
274 major = (*ftab->indicateMechs)(&minor, &(ftab->mechs));
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/iiop/
H A DGIOPVersion.java63 private byte minor = (byte) 0; field in class:GIOPVersion
71 this.minor = minorB;
74 public GIOPVersion(int major, int minor) { argument
76 this.minor = (byte)minor;
86 return this.minor;
92 return gv.major == this.major && gv.minor == this.minor ;
104 return 37*major + minor ;
111 if (this.minor < g
129 getInstance(byte major, byte minor) argument
[all...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSException.java31 * minor GSS-API status codes. Major error codes are those defined at the
34 * mechanism implementation is responsible for setting appropriate minor
71 * major/minor status when an incorrect status type is passed in to it!
212 * The minor code for this exception
216 private int minor = 0; field in class:GSSException
219 * The text string for minor code
265 * Creates a GSSException object with the specified major code, minor
266 * code, and minor code textual explanation. This constructor is to be
285 minor = minorCode;
294 * information aer set as the minor erro
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_UNIXToolkit.c275 jint major, jint minor, jint micro)
279 ret = fp_gtk_check_version(major, minor, micro);
274 Java_sun_awt_UNIXToolkit_gtkCheckVersionImpl(JNIEnv *env, jobject this, jint major, jint minor, jint micro) argument

Completed in 162 milliseconds

123