Searched defs:signature (Results 151 - 175 of 259) sorted by relevance

1234567891011

/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp286 oop interpreter_callee_receiver(Symbol* signature) { return *interpreter_callee_receiver_addr(signature); } argument
289 oop* interpreter_callee_receiver_addr(Symbol* signature);
416 void oops_compiled_arguments_do(Symbol* signature, bool has_receiver, const RegisterMap* reg_map, OopClosure* f);
420 void oops_interpreted_arguments_do(Symbol* signature, bool has_receiver, OopClosure* f);
H A Dsignature.cpp33 #include "runtime/signature.hpp"
47 SignatureIterator::SignatureIterator(Symbol* signature) { argument
48 _signature = signature;
129 tty->print_cr("too many chars in signature");
253 SignatureStream::SignatureStream(Symbol* signature, bool is_method) : argument
254 _signature(signature), _at_return_type(false) {
261 // decrement refcount for names created during signature parsing
382 const char* signature = (const char*)sig->bytes(); local
384 if (signature == NULL || signature[
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.cpp75 Symbol* signature = vmSymbols::serializePropertiesToByteArray_signature(); local
79 signature,
/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.cpp195 void Exceptions::_throw_args(Thread* thread, const char* file, int line, Symbol* name, Symbol* signature, JavaCallArguments *args) { argument
201 Handle exception = new_exception(thread, name, signature, args, h_loader, h_prot);
247 // Creates an exception oop, calls the <init> method with the given signature.
250 Symbol* signature, JavaCallArguments *args,
276 signature,
291 // Creates an exception oop, calls the <init> method with the given signature.
295 Symbol* signature, JavaCallArguments *args,
298 Handle h_exception = new_exception(thread, name, signature, args, h_loader, h_protection_domain);
330 Symbol* signature = NULL; local
332 signature
249 new_exception(Thread *thread, Symbol* name, Symbol* signature, JavaCallArguments *args, Handle h_loader, Handle h_protection_domain) argument
294 new_exception(Thread *thread, Symbol* name, Symbol* signature, JavaCallArguments *args, Handle h_cause, Handle h_loader, Handle h_protection_domain) argument
347 Symbol* signature = NULL; local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java378 * @param signature the type signature of this local variable. May be
393 String signature,
390 visitLocalVariable( String name, String desc, String signature, Label start, Label end, int index) argument
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSASignature.java47 * RSA signature implementation. Supports RSA signing using PKCS#1 v1.5 padding.
240 // This signature accepts only RSAPublicKey
289 // This signature accepts only RSAPrivateKey
370 * Returns the signature bytes of all the data
372 * The format of the signature depends on the underlying
373 * signature scheme.
375 * @return the signature bytes of the signing operation's result.
378 * initialized properly or if this signature algorithm is unable to
385 // Omit the hash OID when generating a Raw signature
394 // Convert signature arra
426 verifySignedHash(byte[] hash, int hashSize, String hashAlgorithm, byte[] signature, int signatureSize, long hCryptProv, long hCryptKey) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DGen.java371 // c.f. MethodDoc.signature
372 String signature(ExecutableElement e) { method in class:Gen
/openjdk7/jdk/src/share/demo/jvmti/heapViewer/
H A DheapViewer.c61 char *signature; member in struct:__anon528
137 /* Get and save the class signature */
139 check_jvmti_error(jvmti, err, "get class signature");
141 fatal_error("ERROR: No class signature found\n");
143 details[i].signature = strdup(sig);
183 details[i].space, details[i].count, details[i].signature);
190 if ( details[i].signature != NULL ) {
191 free(details[i].signature);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_event.c66 char * signature; local
73 /* Get the signature for this class */
74 getClassSignature(klass, &signature, NULL);
77 cnum = class_find_or_create(signature, loader_index);
79 /* Free the signature space */
80 jvmtiDeallocate(signature);
310 char *signature; local
342 signature = string_get(class_get_signature(cnum));
346 trace_serial_num, signature);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpnginfo.h105 png_byte signature[8]; /* magic bytes read by libpng from start of file */ member in struct:png_info_def
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Signature.java66 * Note that the underlying PKCS#11 token may support complete signature
68 * implement the signature algorithm without hashing (e.g. CKM_DSA, CKM_PKCS),
90 // digest algorithm OID, if we encode RSA signature ourselves
220 throw new ProviderException("Unknown signature: " + algorithm);
271 byte[] signature;
273 signature = new byte[40];
275 signature = new byte[(p11Key.length() + 7) >> 3];
278 token.p11.C_VerifyFinal(session.id(), signature);
286 token.p11.C_Verify(session.id(), digest, signature);
289 // will fail since the signature i
555 engineVerify(byte[] signature) argument
648 dsaToASN1(byte[] signature) argument
664 asn1ToDSA(byte[] signature) argument
683 asn1ToECDSA(byte[] signature) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSASignature.java59 // length of the encoded signature blob
130 ("Key is too short for this signature algorithm");
152 // update the signature with the plaintext data. See JCA doc
158 // update the signature with the plaintext data. See JCA doc
165 // update the signature with the plaintext data. See JCA doc
171 // sign the data and return the signature. See JCA doc
227 * Decode the signature data. Verify that the object identifier matches
230 public static byte[] decodeSignature(ObjectIdentifier oid, byte[] signature) argument
232 DerInputStream in = new DerInputStream(signature);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSignatureAndHashAlgorithm.java47 * indicate to the server which signature/hash algorithm pairs may be
61 * SignatureAlgorithm signature;
73 // supported pairs of signature and hash algorithm
80 // the signature algorithm
81 private SignatureAlgorithm signature; field in class:SignatureAndHashAlgorithm
97 SignatureAlgorithm signature, String algorithm, int priority) {
99 this.signature = signature;
101 this.id = ((hash.value & 0xFF) << 8) | (signature.value & 0xFF);
108 this.signature
96 SignatureAndHashAlgorithm(HashAlgorithm hash, SignatureAlgorithm signature, String algorithm, int priority) argument
119 valueOf(int hash, int signature, int sequence) argument
217 supports(HashAlgorithm hash, SignatureAlgorithm signature, String algorithm, int priority) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DSignatureFileVerifier.java61 /** the name of the signature block file, uppercased and without
81 * @param name the name of the signature block file (.DSA/.RSA/.EC)
83 * @param rawBytes the raw bytes of the signature block file
131 * is external to the signature block file.
140 * to determine the signature file names and PKCS7 block
177 * process the signature block file. Goes through the .SF file
213 // for now we just ignore this signature file
220 throw new SecurityException("cannot verify signature block file " +
241 ("Invalid signature file digest for Manifest main attributes");
244 // go through each section in the signature fil
566 verifyTimestamp(TimestampToken token, byte[] signature) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DTrie.java119 int signature = input.readInt();
122 if (!checkHeader(signature)) {
397 * Checking the header information, signature and options.
398 * @param signature This contains the options and type of a Trie
401 private final boolean checkHeader(int signature) argument
403 // check the signature
406 if (signature != HEADER_SIGNATURE_) {
/openjdk7/jdk/src/share/demo/jvmti/compiledMethodLoad/
H A DcompiledMethodLoad.c92 check_jvmti_error(jvmti, err, "get class signature");
188 char* signature = NULL; local
195 err = (*jvmti)->GetMethodName(jvmti, method, &name, &signature,
200 fprintf(fp, "Method name %s %s %s\n\n", name, signature,
211 if (signature != NULL) {
212 err = (*jvmti)->Deallocate(jvmti, (unsigned char*)signature);
213 check_jvmti_error(jvmti, err, "deallocate signature");
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DReflectionFactory.java212 String signature,
220 signature,
233 String signature,
245 signature,
258 String signature,
267 signature,
207 newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
226 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
253 newConstructor(Class<?> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECDSASignature.java42 * ECDSA signature implementation. This class currently supports the
195 // Should check that the supplied key is appropriate for signature
214 // Should check that the supplied key is appropriate for signature
241 // update the signature with the plaintext data. See JCA doc
248 // update the signature with the plaintext data. See JCA doc
256 // update the signature with the plaintext data. See JCA doc
268 // sign the data and return the signature. See JCA doc
295 protected boolean engineVerify(byte[] signature) throws SignatureException { argument
310 decodeSignature(signature), getDigestValue(), w, encodedParams);
313 throw new SignatureException("Could not verify signature",
332 encodeSignature(byte[] signature) argument
357 decodeSignature(byte[] signature) argument
419 verifySignedDigest(byte[] signature, byte[] digest, byte[] w, byte[] encodedParams) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DClassGen.java273 /** @return method object with given name and signature, or null
275 public Method containsMethod(String name, String signature) { argument
278 if(m.getName().equals(name) && m.getSignature().equals(signature))
H A DConstantPoolGen.java144 String signature = u8.getBytes();
153 cp_table.put(class_name + delim + method_name + delim + signature, new Index(i));
487 * @param signature of variable/method
490 public int lookupNameAndType(String name, String signature) { argument
491 Index index = (Index)n_a_t_table.get(name + NAT_DELIM + signature);
502 public int addNameAndType(String name, String signature) { argument
506 if((ret = lookupNameAndType(name, signature)) != -1)
512 signature_index = addUtf8(signature);
516 n_a_t_table.put(name + NAT_DELIM + signature, new Index(ret));
527 * @param signature retur
530 lookupMethodref(String class_name, String method_name, String signature) argument
548 addMethodref(String class_name, String method_name, String signature) argument
580 lookupInterfaceMethodref(String class_name, String method_name, String signature) argument
598 addInterfaceMethodref(String class_name, String method_name, String signature) argument
630 lookupFieldref(String class_name, String field_name, String signature) argument
643 addFieldref(String class_name, String field_name, String signature) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DKlass.java201 // This returns the name in the form java/lang/String which isn't really a signature
203 // Ljava/lang/String; For ArrayKlasses getName itself is the signature.
204 public String signature() { return getName().asString(); } method in class:Klass
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DObjectReader.java747 protected Class[] getParamTypes(Symbol signature) { argument
748 SignatureParser sp = new SignatureParser(signature);
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.java70 private transient String signature; field in class:Field
85 private String getGenericSignature() {return signature;}
116 String signature,
124 this.signature = signature;
141 Field res = new Field(clazz, name, type, modifiers, slot, signature, annotations);
225 * signature does not conform to the format specified in
228 * signature of the underlying field refers to a non-existent
231 * signature of the underlying field refers to a parameterized type
111 Field(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
/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/src/share/classes/javax/management/
H A DStandardMBean.java403 public Object invoke(String actionName, Object params[], String signature[]) argument
405 return mbean.invoke(actionName, params, signature);
866 MBeanParameterInfo[] signature) {
868 identicalArrays(signature, ci.getSignature()))
872 paramsToOpenParams(signature);
880 signature,
888 MBeanParameterInfo[] signature,
891 identicalArrays(signature, oi.getSignature()) &&
897 paramsToOpenParams(signature);
907 signature,
864 customize(MBeanConstructorInfo ci, String description, MBeanParameterInfo[] signature) argument
886 customize(MBeanOperationInfo oi, String description, MBeanParameterInfo[] signature, int impact) argument
[all...]

Completed in 72 milliseconds

1234567891011