Searched defs:signature (Results 126 - 150 of 259) sorted by relevance

1234567891011

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMethodImpl.java70 signature = sig1.asString();
71 signatureParser = new JNITypeParser(signature);
91 return findType(getParser().signature());
94 private Type findType(String signature) throws ClassNotLoadedException { argument
96 return enclosing.findType(signature);
109 String signature = (String)argumentSignatures().get(index);
110 return enclosing.findType(signature);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassWriter.java398 if (DEBUG) debugMessage("\tfield name = " + nameIndex + ", signature = " + signatureIndex);
430 if (DEBUG) debugMessage("\tfield generic signature index " + genSigIndex);
465 if (DEBUG) debugMessage("\tmethod name = " + m.getNameIndex() + ", signature = "
659 protected void writeGenericSignature(String signature) throws IOException { argument
661 if (DEBUG) debugMessage("signature attribute = " + _signatureIndex);
663 Short index = (Short) utf8ToIndex.get(signature);
665 if (DEBUG) debugMessage("generic signature = " + index);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSignatureMethod.java71 private Signature signature; field in class:DOMSignatureMethod
78 * appropriate for this signature method
144 * appropriate for this signature method
196 * Verifies the passed-in signature with the specified key, using the
197 * underlying signature or MAC algorithm.
201 * @param signature the signature bytes to be verified
203 * @return <code>true</code> if the signature verified successfully,
206 * <code>signature</code> are <code>null</code>
210 * as the passed in signature i
[all...]
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolPatch.java230 String signature,
232 show(index, tag, new String[]{ className, memberName, signature });
237 String memberName, String signature,
239 show(index, tag, new String[]{ memberName, signature });
378 * @param signature a signature
383 public void putDescriptor(int index, String memberName, String signature) { argument
386 patchArray[index] = addSemis(memberName, signature);
397 * @param signature a field or method signature
403 putMemberRef(int index, byte tag, String className, String memberName, String signature) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DConstructor.java72 private transient String signature; field in class:Constructor
113 String signature,
122 this.signature = signature;
143 signature,
189 * signature of this generic declaration does not conform to
232 * if the generic method signature does not conform to the format
277 * if the generic method signature does not conform to the format
597 return signature;
108 Constructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
H A DMethod.java75 private transient String signature; field in class:Method
89 private String getGenericSignature() {return signature;}
120 String signature,
132 this.signature = signature;
152 exceptionTypes, modifiers, slot, signature,
197 * signature of this generic declaration does not conform to
233 * if the generic method signature does not conform to the format
279 * if the generic method signature does not conform to the format
324 * if the generic method signature doe
113 Method(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServer.java302 Object params[], String signature[])
318 String signature[])
456 Object params[], String signature[])
600 * @param signature An array containing the signature of the
616 String signature[])
630 * @param signature An array containing the signature of the
647 Object params[], String signature[])
301 createMBean(String className, ObjectName name, Object params[], String signature[]) argument
316 createMBean(String className, ObjectName name, ObjectName loaderName, Object params[], String signature[]) argument
455 invoke(ObjectName name, String operationName, Object params[], String signature[]) argument
615 instantiate(String className, Object params[], String signature[]) argument
646 instantiate(String className, ObjectName loaderName, Object params[], String signature[]) argument
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnection.java238 * @param signature An array containing the signature of the
277 String signature[],
301 * @param signature An array containing the signature of the
343 String signature[],
691 * @param signature An array containing the signature of the
720 String signature[],
274 createMBean(String className, ObjectName name, MarshalledObject params, String signature[], Subject delegationSubject) argument
339 createMBean(String className, ObjectName name, ObjectName loaderName, MarshalledObject params, String signature[], Subject delegationSubject) argument
717 invoke(ObjectName name, String operationName, MarshalledObject params, String signature[], Subject delegationSubject) argument
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldStreams.hpp56 signature slots for field[0] to field[_index - 1]. */
145 Symbol* signature() const { function in class:FieldStreamBase
146 return field()->signature(_constants);
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DReferenceType.java98 * Gets the generic signature for this type if there is one.
102 * @return a string containing the generic signature, or <code>null</code>
103 * if there is no generic signature.
397 * with the same signature can be present in the returned list, but
449 * has the given name and signature.
450 * The signature string is the
451 * JNI signature for the target method:
469 * @param signature the signature of the method to find
471 * name and signature; th
476 methodsByName(String name, String signature) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DMBeanServerAccessController.java193 Object params[], String signature[])
205 signature);
210 params, signature);
248 String signature[])
262 signature);
267 params, signature);
428 String signature[])
431 return getMBeanServer().instantiate(className, params, signature);
449 Object params[], String signature[])
453 params, signature);
192 createMBean(String className, ObjectName name, Object params[], String signature[]) argument
244 createMBean(String className, ObjectName name, ObjectName loaderName, Object params[], String signature[]) argument
426 instantiate(String className, Object params[], String signature[]) argument
448 instantiate(String className, ObjectName loaderName, Object params[], String signature[]) argument
460 invoke(ObjectName name, String operationName, Object params[], String signature[]) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/implementations/
H A DIntegrityHmac.java37 import com.sun.org.apache.xml.internal.security.signature.XMLSignature;
38 import com.sun.org.apache.xml.internal.security.signature.XMLSignatureException;
118 * @param signature
119 * @return true if the signature is correct
122 protected boolean engineVerify(byte[] signature) argument
134 return MessageDigestAlgorithm.isEqual(completeResult, signature);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DManifest.java21 package com.sun.org.apache.xml.internal.security.signature;
140 * signed info. A {@link com.sun.org.apache.xml.internal.security.signature.Reference} is built
145 * @param transforms com.sun.org.apache.xml.internal.security.signature.Transforms object with an ordered list of transformations to be performed.
258 * @throws MissingResourceFailureException if a {@link Reference} does not verify (throws a {@link com.sun.org.apache.xml.internal.security.signature.ReferenceNotInitializedException} because of an uninitialized {@link XMLSignatureInput}
259 * @see com.sun.org.apache.xml.internal.security.signature.Reference#verify
260 * @see com.sun.org.apache.xml.internal.security.signature.SignedInfo#verify()
261 * @see com.sun.org.apache.xml.internal.security.signature.MissingResourceFailureException
281 * @throws MissingResourceFailureException if a {@link Reference} does not verify (throws a {@link com.sun.org.apache.xml.internal.security.signature.ReferenceNotInitializedException} because of an uninitialized {@link XMLSignatureInput}
282 * @see com.sun.org.apache.xml.internal.security.signature.Reference#verify
283 * @see com.sun.org.apache.xml.internal.security.signature
[all...]
H A DReference.java21 package com.sun.org.apache.xml.internal.security.signature;
108 * will be added if necessary when generating the signature. See section
414 "signature.Verification.Reference.NoInput", exArgs);
749 "signature.Verification.NoSignatureElement",
H A DXMLSignatureInputDebugger.java21 package com.sun.org.apache.xml.internal.security.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
H A DMethodImpl.java51 String name, String signature,
53 super(vm, declaringType, ref, name, signature,
55 signatureParser = new JNITypeParser(signature);
62 String signature,
68 name, signature,
73 name, signature,
139 return signatureParser.signature();
146 public Type findType(String signature) throws ClassNotLoadedException { argument
148 return enclosing.findType(signature);
161 String signature
49 MethodImpl(VirtualMachine vm, ReferenceTypeImpl declaringType, long ref, String name, String signature, String genericSignature, int modifiers) argument
58 createMethodImpl(VirtualMachine vm, ReferenceTypeImpl declaringType, long ref, String name, String signature, String genericSignature, int modifiers) argument
237 public String signature() { method in class:MethodImpl.ReturnContainer
240 findType(String signature) argument
268 public String signature() { method in class:MethodImpl.ArgumentContainer
271 findType(String signature) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp423 // This should really convert the IntrinsicID to the methodOop and signature
427 BasicType signature[5] = { T_OBJECT, T_INT, T_OBJECT, T_INT, T_INT}; local
428 SharedRuntime::java_calling_convention(signature, args, 5, true);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.cpp49 // Convert method signature into an array of BasicTypes for the arguments
51 ciSignature* sig = method->signature();
69 CallingConvention* FrameMap::java_calling_convention(const BasicTypeArray* signature, bool outgoing) { argument
70 // compute the size of the arguments first. The signature array
75 for (i = 0; i < signature->length(); i++) {
76 sizeargs += type2size[signature->at(i)];
83 sig_bt[i] = signature->at(sig_index);
91 LIR_OprList* args = new LIR_OprList(signature->length());
104 assert(args->length() == signature->length(), "size mismatch");
115 CallingConvention* FrameMap::c_calling_convention(const BasicTypeArray* signature) { argument
[all...]
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java65 private String signature = "????"; field in class:AppBundlerTask
115 public void setSignature(String signature) { argument
116 this.signature = signature;
215 if (signature == null) {
219 if (signature.length() != 4) {
220 throw new IllegalStateException("Invalid signature.");
354 writeProperty(xout, "CFBundleSignature", signature);
441 out.write(OS_TYPE_CODE + signature);
/openjdk7/jdk/src/share/back/
H A DArrayReferenceImpl.c269 char *signature = NULL; local
275 error = classSignature(arrayClass, &signature, NULL);
279 componentSignature = &signature[1];
327 jvmtiDeallocate(signature);
513 char *signature = NULL; local
518 error = classSignature(arrayClass, &signature, NULL);
522 componentSignature = &signature[1];
564 ERROR_MESSAGE(("Invalid array component signature: %s",
571 jvmtiDeallocate(signature);
H A DReferenceTypeImpl.c33 signature(PacketInputStream *in, PacketOutputStream *out) function
35 char *signature = NULL; local
44 error = classSignature(clazz, &signature, NULL);
50 (void)outStream_writeString(out, signature);
51 jvmtiDeallocate(signature);
59 /* Returns both the signature and the generic signature */
60 char *signature = NULL; local
69 error = classSignature(clazz, &signature, &genericSignature);
75 (void)outStream_writeString(out, signature);
140 char *signature = NULL; local
350 char *signature = NULL; local
[all...]
H A Dinvoker.c56 returnTypeTag(char *signature) argument
58 char *tagPtr = strchr(signature, SIGNATURE_END_ARGS);
90 firstArgumentTypeTag(char *signature, void **cursor) argument
92 JDI_ASSERT(signature[0] == SIGNATURE_BEGIN_ARGS);
93 *cursor = signature + 1; /* skip to the first arg */
250 * Squirrel away the method signature
415 EXIT_ERROR(AGENT_ERROR_NULL_POINTER,"Invalid method signature");
502 EXIT_ERROR(AGENT_ERROR_NULL_POINTER,"Invalid method signature");
599 EXIT_ERROR(AGENT_ERROR_NULL_POINTER,"Invalid method signature");
/openjdk7/hotspot/src/share/vm/prims/
H A DnativeLookup.cpp42 #include "runtime/signature.hpp"
110 Symbol* signature = method->signature(); local
114 for (end = 0; end < signature->utf8_length() && signature->byte_at(end) != ')'; end++);
116 mangle_name_on(&st, signature, 1, end);
288 Symbol* signature = method->signature(); local
289 for (int end = 0; end < signature->utf8_length(); end++) {
290 if (signature
398 base_library_lookup(const char* class_name, const char* method_name, const char* signature) argument
[all...]

Completed in 88 milliseconds

1234567891011