Searched refs:signature (Results 251 - 275 of 458) sorted by relevance

<<111213141516171819

/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp53 #include "runtime/signature.hpp"
583 Symbol* signature = cp->symbol_at(signature_ref_index); local
589 if (signature->byte_at(0) == JVM_SIGNATURE_FUNC) {
591 "Field", name, signature, CHECK_(nullHandle));
594 verify_legal_field_signature(name, signature, CHECK_(nullHandle));
601 if (signature->byte_at(0) != JVM_SIGNATURE_FUNC) {
603 "Method", name, signature, CHECK_(nullHandle));
606 verify_legal_method_signature(name, signature, CHECK_(nullHandle));
657 Symbol* signature = cp->method_type_signature_at(index); local
658 verify_legal_method_signature(no_name, signature, CHECK
1203 Symbol* signature = injected[n].signature(); local
1850 Symbol* signature = cp->symbol_at(signature_index); local
4060 Symbol* signature = m->signature(); local
4441 verify_legal_field_signature(Symbol* name, Symbol* signature, TRAPS) argument
4456 verify_legal_method_signature(Symbol* name, Symbol* signature, TRAPS) argument
4630 skip_over_field_signature(char* signature, bool void_ok, unsigned int length, TRAPS) argument
[all...]
H A DsystemDictionary.cpp54 #include "runtime/signature.hpp"
2161 // method's signature.
2168 // class about the type of the field signature.
2173 // on each type in the method's signature.
2178 // on each type in the method's signature.
2200 // signature will be resolved to the same class in both loaders.
2205 char* SystemDictionary::check_signature_loaders(Symbol* signature, argument
2214 SignatureStream sig_strm(signature, is_method);
2230 Symbol* signature,
2239 unsigned int hash = invoke_method_table()->compute_hash(signature, ii
2229 find_method_handle_intrinsic(vmIntrinsics::ID iid, Symbol* signature, TRAPS) argument
2296 find_method_handle_invoker(Symbol* name, Symbol* signature, KlassHandle accessing_klass, Handle *appendix_result, Handle *method_type_result, TRAPS) argument
2341 find_method_handle_type(Symbol* signature, KlassHandle accessing_klass, TRAPS) argument
2431 link_method_handle_constant(KlassHandle caller, int ref_kind, KlassHandle callee, Symbol* name_sym, Symbol* signature, TRAPS) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DInstanceKlass.java823 public String signature() { method in class:InstanceKlass
824 return "L" + super.signature() + ";";
931 private static Method findMethod(ObjArray methods, Symbol name, Symbol signature) { argument
941 // found matching name; do linear search to find matching signature
943 if (m.getSignature().equals(signature)) return m;
949 if (m1.getSignature().equals(signature)) return m1;
955 if (m1.getSignature().equals(signature)) return m1;
959 int index = linearSearch(methods, name, signature);
972 int index = linearSearch(methods, name, signature);
980 private static int linearSearch(ObjArray methods, Symbol name, Symbol signature) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java63 * signature BIT STRING }
74 * signature AlgorithmIdentifier,
96 private byte[] signature = null; // raw signature bits field in class:X509CRLImpl
117 * the signature of this CRL. Null if the CRL has not
123 * successfully verify the signature of this CRL, or the
335 * @exception NoSuchAlgorithmException on unsupported signature
339 * @exception SignatureException on signature errors.
351 * and that the signature verification was computed by
355 * @param sigProvider the name of the signature provide
[all...]
H A DX509CertImpl.java90 public static final String SIGNATURE = "signature";
122 // x509.signature
133 protected byte[] signature = null; field in class:X509CertImpl
160 * the signature of this certificate. Null if the certificate has not
166 * successfully verify the signature of this certificate, or the
390 * @exception NoSuchAlgorithmException on unsupported signature
393 * @exception SignatureException on signature errors.
412 * @exception NoSuchAlgorithmException on unsupported signature
416 * @exception SignatureException on signature errors.
439 // Verify the signature
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java98 /** Switch: read GJ signature information.
529 /** Read signature and convert to type.
536 /** If name is an array type or class signature, return the
552 /** Read signature and convert to type parameters.
576 * signature[sigp..siglimit-1].
578 byte[] signature; field in class:ClassReader
583 /** Convert signature to type, where signature is a byte array segment.
586 signature = sig;
592 /** Convert signature t
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java51 * of a digital signature algorithm. Digital signatures are used for
54 * <p> The signature algorithm can be, among others, the NIST standard
66 * either signing data or verifying a signature:<ol>
72 * <li>a public key, which initializes the signature for
76 * which initializes the signature for signing
88 * <li>Signing or Verifying a signature on all updated bytes. See the
99 * supply their own implementations of digital signature algorithms.
125 * The algorithm for this signature object.
136 * this signature object has not yet been initialized.
142 * this signature objec
621 verify(byte[] signature) argument
657 verify(byte[] signature, int offset, int length) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DGetSetLocalTest.java212 println(" Signature: " + lv.type().signature());
546 String signature = lv.type().signature();
548 switch (signature.charAt(0)) {
597 if (signature.compareTo("Ljava/lang/String;") == 0) {
602 if (signature.compareTo("Ljava/lang/Object;") == 0) {
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolParser.java272 String signature = (String) values[array[1]];
273 visitor.visitDescriptor(i, tag, memberName, signature,
275 values[i] = new String[] {memberName, signature};
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DClassTypeImpl.java300 public Method concreteMethodByName(String name, String signature) { argument
304 candidate.signature().equals(signature) &&
H A DConcreteMethodImpl.java86 String name, String signature,
89 // The generic signature is set when this is created
90 super(vm, declaringType, ref, name, signature,
474 si.name, si.signature, null);
521 si.name, si.signature,
84 ConcreteMethodImpl(VirtualMachine vm, ReferenceTypeImpl declaringType, long ref, String name, String signature, String genericSignature, int modifiers) argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMURIDereferencer.java36 import com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput;
/openjdk7/hotspot/src/share/vm/ci/
H A DciInstanceKlass.cpp368 ciField* ciInstanceKlass::get_field_by_name(ciSymbol* name, ciSymbol* signature, bool is_static) { argument
372 klassOop def = k->find_field(name->get_symbol(), signature->get_symbol(), is_static, &fd);
509 ciMethod* ciInstanceKlass::find_method(ciSymbol* name, ciSymbol* signature) { argument
513 Symbol* sig_sym= signature->get_symbol();
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp74 Symbol* signature = (method)->signature(); \
79 signature->bytes(), signature->utf8_length()); \
87 Symbol* signature = (method)->signature(); \
92 signature->bytes(), signature->utf8_length(), (success)); \
102 Symbol* signature = (method)->signature(); \
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayKlass.hpp87 methodOop uncached_lookup_method(Symbol* name, Symbol* signature) const;
H A DinstanceKlass.cpp838 Symbol* f_sig = fs.signature();
1029 static int linear_search(objArrayOop methods, Symbol* name, Symbol* signature) { argument
1034 if (m->signature() == signature && m->name() == name) {
1042 methodOop instanceKlass::find_method(Symbol* name, Symbol* signature) const {
1043 return instanceKlass::find_method(methods(), name, signature);
1046 methodOop instanceKlass::find_method(objArrayOop methods, Symbol* name, Symbol* signature) { argument
1057 // found matching name; do linear search to find matching signature
1059 if (m->signature() == signature) retur
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/
H A DRetrievalMethod.java24 import com.sun.org.apache.xml.internal.security.signature.XMLSignatureException;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DSignatureProperties.java21 package com.sun.org.apache.xml.internal.security.signature;
36 * concerning the generation of the signature.
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformC14NExclusive.java28 import com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput;
H A DTransformC14NExclusiveWithComments.java28 import com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/
H A DResourceResolverSpi.java27 import com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput;
/openjdk7/hotspot/src/share/vm/runtime/
H A DreflectionUtils.hpp130 Symbol* signature() const { function in class:FieldStream
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryClass.java475 String signature = f.getType().getTypeSignature();
477 data.writeShort(cpool.indexString(signature, env));
488 String signature = f.getType().getTypeSignature();
490 data.writeShort(cpool.indexString(signature, env));
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java389 final String[] signature = {Throwable.class.getName(),
394 params, signature);
402 final String[] signature = {Throwable.class.getName(),
407 registerMLet(server), params, signature);
/openjdk7/jdk/src/share/back/
H A DVirtualMachineImpl.c97 char *signature; local
104 signature = inStream_readString(in);
105 if (signature == NULL) {
123 /* Count classes in theClasses which match signature */
147 if (strcmp(candidate_signature, signature) == 0) {
187 jvmtiDeallocate(signature);
242 char *signature = NULL; local
249 error = classSignature(clazz, &signature, &genericSignature);
257 (void)outStream_writeString(out, signature);
263 jvmtiDeallocate(signature);
[all...]

Completed in 104 milliseconds

<<111213141516171819