Searched defs:type2 (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DServer.java45 * byte[] type2 = server.type2(type1, nonce);
46 * // Send type2 to client and receive type3
87 public byte[] type2(byte[] type1, byte[] nonce) throws NTLMException { method in class:Server
108 * @param nonce the same nonce provided in {@link #type2}, must not be null
H A DClient.java40 * // Send type1 to server and receive response as type2
41 * byte[] type3 = client.type3(type2, nonce);
118 * @param type2 the responding Type 2 message from server, must not be null
125 public byte[] type3(byte[] type2, byte[] nonce) throws NTLMException { argument
126 if (type2 == null || (v != Version.NTLM && nonce == null)) {
128 "type2 and nonce cannot be null");
131 debug(type2);
132 Reader r = new Reader(type2);
166 byte[] alist = type2.length > 48 ?
/openjdk7/jdk/src/share/classes/sun/management/
H A DLazyCompositeData.java148 * all items in type1 exist in type2 and their item types
151 protected static boolean isTypeMatched(CompositeType type1, CompositeType type2) { argument
152 if (type1 == type2) return true;
158 // Check all items in the type1 exist in type2
159 if (!type2.keySet().containsAll(allItems))
165 OpenType ot2 = type2.getType(item);
183 protected static boolean isTypeMatched(TabularType type1, TabularType type2) { argument
184 if (type1 == type2) return true;
187 List list2 = type2.getIndexNames();
193 return isTypeMatched(type1.getRowType(), type2
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp297 int32_t index, VerificationType type1, VerificationType type2, TRAPS) {
299 assert(type2.is_long2() || type2.is_double2(), "must be long/double_2");
313 subtype = type2.is_assignable_from(_locals[index + 1], verifier(), CHECK);
320 TypeOrigin::local(index + 1, this), TypeOrigin::implicit(type2)),
357 int32_t index, VerificationType type1, VerificationType type2, TRAPS) {
359 assert(type2.is_long2() || type2.is_double2(), "must be long/double_2");
377 _locals[index+1] = type2;
296 get_local_2( int32_t index, VerificationType type1, VerificationType type2, TRAPS) argument
356 set_local_2( int32_t index, VerificationType type1, VerificationType type2, TRAPS) argument
H A DstackMapFrame.hpp210 VerificationType type1, VerificationType type2, TRAPS) {
212 assert(type2.is_long2() || type2.is_double2(), "must be long/double_2");
220 _stack[_stack_size++] = type2;
251 VerificationType type1, VerificationType type2, TRAPS) {
253 assert(type2.is_long() || type2.is_double(), "must be long/double_2");
258 bool subtype2 = type2.is_assignable_from(top2, verifier(), CHECK);
265 pop_stack_ex(type2, THREAD);
284 int32_t index, VerificationType type1, VerificationType type2, TRAP
209 push_stack_2( VerificationType type1, VerificationType type2, TRAPS) argument
250 pop_stack_2( VerificationType type1, VerificationType type2, TRAPS) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DUtil.java431 public int compare(Type type1, Type type2) { argument
433 type2.qualifiedTypeName().toLowerCase());
/openjdk7/hotspot/src/share/vm/opto/
H A Difnode.cpp716 const TypeInt* type2 = filtered_int_type(phase, n, fail); local
717 if (type2 != NULL) {
718 failtype = failtype->join(type2)->is_int();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java1262 * @param type2 index of an internal name in {@link #typeTable}.
1265 int getMergedType(final int type1, final int type2) { argument
1267 key2.longVal = type1 | (((long) type2) << 32);
1268 key2.hashCode = 0x7FFFFFFF & (TYPE_MERGED + type1 + type2);
1272 String u = typeTable[type2].strVal1;
1290 * @param type2 the internal name of another class.
1294 protected String getCommonSuperClass(final String type1, final String type2) argument
1299 d = Class.forName(type2.replace('/', '.'));
1307 return type2;
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp799 ciType* type2 = pop_value(); local
800 assert(type2->is_two_word(), "must be 2nd half");
801 assert(type == half_type(type2), "must be 2nd half");
H A DciTypeFlow.hpp406 ciType* type2 = type_at(local(index+1)); local
408 assert(type2 == double2_type(), "must be 2nd half");
413 ciType* type2 = pop_value(); local
416 assert(type2 == double2_type(), "must be 2nd half");
419 set_type_at(local(index+1), type2);
452 ciType* type2 = type_at(local(index+1)); local
454 assert(type2 == long2_type(), "must be 2nd half");
459 ciType* type2 = pop_value(); local
462 assert(type2 == long2_type(), "must be 2nd half");
465 set_type_at(local(index+1), type2);
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java1531 public void testPermuteArguments(int max, Class<?> type1, int t2c, Class<?> type2, int dilution) throws Throwable { argument
1534 +(t2c==0?"":"/"+t2c+"*"+type2.getName())
1541 // Fill in a middle range with type2:
1542 Arrays.fill(types, t2pos, Math.min(t2pos+t2c, inargs), type2);

Completed in 69 milliseconds