Searched refs:msgType (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPRep.java59 public int msgType; field in class:APRep
64 msgType = Krb5.KRB_AP_REP;
110 msgType = subDer.getData().getBigInteger().intValue();
111 if (msgType != Krb5.KRB_AP_REP) {
132 temp.putInteger(BigInteger.valueOf(msgType));
H A DKRBPriv.java60 public int msgType; field in class:KRBPriv
65 msgType = Krb5.KRB_PRIV;
109 msgType = subDer.getData().getBigInteger().intValue();
110 if (msgType != Krb5.KRB_PRIV)
133 temp.putInteger(BigInteger.valueOf(msgType));
H A DKDCReq.java63 private int msgType; field in class:KDCReq
69 msgType = req_type;
140 this.msgType = bint.intValue();
141 if (this.msgType != req_type) {
167 reqBody = new KDCReqBody(subsubDer, msgType);
189 temp.putInteger(BigInteger.valueOf(msgType));
203 true, (byte) 0x04), reqBody.asn1Encode(msgType));
208 true, (byte) msgType), bytes);
213 return reqBody.asn1Encode(msgType);
H A DAPReq.java60 public int msgType; field in class:APReq
70 msgType = Krb5.KRB_AP_REQ;
116 msgType = subDer.getData().getBigInteger().intValue();
117 if (msgType != Krb5.KRB_AP_REQ) {
140 temp.putInteger(BigInteger.valueOf(msgType));
H A DKRBCred.java64 private int msgType; field in class:KRBCred
68 msgType = Krb5.KRB_CRED;
124 msgType = subDer.getData().getBigInteger().intValue();
125 if (msgType != Krb5.KRB_CRED) {
169 temp.putInteger(BigInteger.valueOf(msgType));
H A DKRBSafe.java61 public int msgType; field in class:KRBSafe
67 msgType = Krb5.KRB_SAFE;
111 msgType = subDer.getData().getBigInteger().intValue();
112 if (msgType != Krb5.KRB_SAFE)
136 temp.putInteger(BigInteger.valueOf(msgType));
H A DEncKDCRepPart.java80 public int msgType; //not included in sequence field in class:EncKDCRepPart
108 msgType = new_msgType;
138 msgType = (encoding.getTag() & (byte) 0x1F);
139 if (msgType != Krb5.KRB_ENC_AS_REP_PART &&
140 msgType != Krb5.KRB_ENC_TGS_REP_PART) {
218 //the cached msgType is used instead
223 true, (byte) msgType), temp);
H A DKDCRep.java70 private int msgType; field in class:KDCRep
82 msgType = req_type;
116 encKDCRepPart = new EncKDCRepPart(encPart.decrypt(key), msgType);
160 msgType = subDer.getData().getBigInteger().intValue();
161 if (msgType != req_type) {
201 temp.putInteger(BigInteger.valueOf(msgType));
H A DKRBError.java87 private int msgType; field in class:KRBError
139 msgType = Krb5.KRB_ERROR;
171 msgType = Krb5.KRB_ERROR;
337 msgType = subDer.getData().getBigInteger().intValue();
338 if (msgType != Krb5.KRB_ERROR) {
424 System.out.println("\t msgType is " + msgType);
441 temp.putInteger(BigInteger.valueOf(msgType));
503 msgType == other.msgType
[all...]
H A DKDCReqBody.java129 * @param msgType an int indicating whether it's KRB_AS_REQ or KRB_TGS_REQ type.
135 public KDCReqBody(DerValue encoding, int msgType) argument
146 if ((msgType != Krb5.KRB_AS_REQ) && (cname != null)) {
218 public byte[] asn1Encode(int msgType) throws Asn1Exception, IOException { argument
221 if (msgType == Krb5.KRB_AS_REQ) {
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dgui.js156 * @param msgType type of message box [constants in JOptionPane]
158 function msgBox(msg, title, msgType) {
165 if (msgType == undefined) type = JOptionPane.INFORMATION_MESSAGE;
166 JOptionPane.showMessageDialog(window, msg, title, msgType);
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java999 byte[] msgType = new byte[2];
1002 /* Get Msg, MAC, msgType, sequenceNum */
1005 System.arraycopy(incoming, start+msg.length+10, msgType, 0, 2);
1017 msgType);
1039 if (!Arrays.equals(messageType, msgType)) {
1041 networkByteOrderToInt(msgType, 0, 2));
1403 byte[] msgType = new byte[2];
1406 /* Get cipherMsg; msgType; sequenceNum */
1410 msgType, 0, 2);
1452 msgType);
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_TrayIcon.cpp58 jstring msgType; member in struct:DisplayMessageStruct
794 void AwtTrayIcon::DisplayMessage(LPCTSTR caption, LPCTSTR text, LPCTSTR msgType) argument
799 if (lstrcmp(msgType, TEXT("ERROR")) == 0) {
801 } else if (lstrcmp(msgType, TEXT("WARNING")) == 0) {
803 } else if (lstrcmp(msgType, TEXT("INFO")) == 0) {
805 } else if (lstrcmp(msgType, TEXT("NONE")) == 0) {
847 jstring jmsgType = dms->msgType;
1054 jstring caption, jstring text, jstring msgType)
1062 dms->msgType = (jstring)env->NewGlobalRef(msgType);
1053 Java_sun_awt_windows_WTrayIconPeer__1displayMessage(JNIEnv *env, jobject self, jstring caption, jstring text, jstring msgType) argument
[all...]
H A Dawt_TrayIcon.h87 void DisplayMessage(LPCTSTR caption, LPCTSTR text, LPCTSTR msgType);
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/resources/
H A Djconsole.js674 * @param msgType type of message box [constants in JOptionPane]
676 function msgBox(msg, title, msgType) {
683 if (msgType == undefined) type = JOptionPane.INFORMATION_MESSAGE;
684 JOptionPane.showMessageDialog(window, msg, title, msgType);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DMessageBase.java749 byte msgType) {
752 if (msgType == GIOPFragment) {
759 switch (msgType) {
748 AreFragmentsAllowed(byte major, byte minor, byte flag, byte msgType) argument

Completed in 45 milliseconds