Searched refs:signature (Results 426 - 450 of 458) sorted by relevance

<<111213141516171819

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizer11.java47 import com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
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 DXMLSignature.java21 package com.sun.org.apache.xml.internal.security.signature;
78 * signature. </li></ul>
146 * by the spec. This method's main use is for creating a new signature.
148 * @param doc Document in which the signature will be appended after creation.
150 * @param SignatureMethodURI signature algorithm to use.
273 * That will allow a user to validate the signature.
275 * @param element ds:Signature element that contains the whole signature
278 * @throws XMLSignatureException if the signature is badly formatted
456 // add it as the last element to the signature
479 // "signature
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DVisibleMemberMap.java74 * name-signature. The mapped map will contain mapping for each MemberDoc
752 return doc.name() + ((ExecutableMemberDoc)doc).signature();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.cpp342 Symbol* sig = m->signature();
346 MethodHandles::print_as_basic_type_signature_on(st, m->signature(), true);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES152 Allow PNG file to be read when some or all of file signature has already
171 Fixed bug in PNG file signature compares when start != 0
1746 writing an embedded PNG without the 8-byte signature.
3104 Moved reading of file signature into png_read_sig (Cosmin)
H A Dpngrutil.c143 /* Read and check the PNG file signature */
149 /* Exit if the user application does not expect a signature. */
160 /* The signature must be serialized in a single I/O call. */
161 png_read_data(png_ptr, &(info_ptr->signature[num_checked]), num_to_check);
164 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
167 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
H A Dpngget.c466 return(info_ptr->signature);
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp719 // signature to change from _JVM_FindClassFromClassLoader@20 to
2345 return methodOop(method)->signature()->as_utf8();
2484 Symbol* signature = cp->uncached_signature_ref_at(cp_index); variable
2486 if (fs.name() == name && fs.signature() == signature) {
2511 Symbol* signature = cp->uncached_signature_ref_at(cp_index); variable
2516 if (method->name() == name && method->signature() == signature) {
H A DjvmtiEnv.cpp56 #include "runtime/signature.hpp"
2609 // just don't return the signature
2611 const char* fieldSignature = fdesc_ptr->signature()->as_C_string();
2677 ResourceMark rm(current_thread); // get the utf8 name and signature
2686 // just don't return the signature
2688 const char* utf8_signature = (const char *) method_oop->signature()->as_utf8();
2852 // get utf8 name and signature
2879 jvmti_table[i].signature = sig_buf;
H A DjvmtiTagMap.cpp859 field_map->add(max_field_index - index, fld.signature()->byte_at(0), fld.offset());
885 field_map->add(max_field_index - index, fld.signature()->byte_at(0), fld.offset());
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp304 TypeOrigin TypeOrigin::signature(VerificationType vt) {
340 ss->print(" (from method signature)");
454 method->signature()->as_C_string(), _bci, bytecode_name);
585 if (!SignatureVerifier::is_valid_method_signature(m->signature())) {
586 class_format_error("Invalid method signature");
2107 // Get field name and signature
2113 "Invalid signature for field in class %s referenced "
2313 // Get method name and signature
2319 "Invalid method signature in class %s referenced "
2340 // For a small signature lengt
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java283 SIGALG("sigalg", "<sigalg>", "signature.algorithm.name"),
1162 * certificate to out. Use alias as CA, sigAlgName as the signature
1188 Signature signature = Signature.getInstance(sigAlgName);
1189 signature.initSign(privateKey);
1338 Signature signature = Signature.getInstance(sigAlgName);
1339 signature.initSign(privKey);
1345 request.encodeAndSign(subject, signature);
1488 * If no signature algorithm was specified at the command line,
1501 ("Cannot.derive.signature.algorithm"));
2272 // if a signature/diges
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp2982 ciSignature* sig = method()->signature();
3925 ciSignature* signature = target->signature(); local
3929 ciKlass* tk = signature->accessing_klass();
3939 for (int i = 0, j = 0; i < signature->count(); i++) {
3940 ciType* t = signature->type_at(i);
H A Dc1_Instruction.cpp368 // provide an initial guess of signature size.
388 ciType *t = _target->signature()->return_type();
H A Dc1_InstructionPrinter.cpp484 x->target()->signature()->as_symbol()->as_utf8());
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.cpp1595 method->name()->as_C_string(), method->signature()->as_C_string(),
1625 m->name()->as_C_string(), m->signature()->as_C_string(), i));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java343 /** Construct method type from method signature.
351 Type signature(List<JCTypeParameter> typarams, method in class:MemberEnter
576 m.type = signature(tree.typarams, tree.params,
801 "wrong.target.for.polymorphic.signature.definition",
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.c2241 const char* signature,
2253 *cid = (*env)->GetMethodID(env, class, "<init>", signature);
2239 create_Object(JNIEnv *env, jmethodID *cid, const char* class_name, const char* signature, jvalue* value) argument
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.hpp84 Tuple, // Method signature or object layout
99 Function, // Function signature
510 // signature types.
1112 static const TypeFunc *make(ciSignature signature, const Type* extra);
1122 void print_flattened() const; // Print a 'flattened' signature
H A Dtype.cpp1624 // Make a TypeTuple from the range of a method signature
1656 // Make a TypeTuple from the domain of a method signature
1778 // Dump signature Type
4203 domain = TypeTuple::make_domain(NULL, method->signature());
4205 domain = TypeTuple::make_domain(method->holder(), method->signature());
4207 const TypeTuple *range = TypeTuple::make_range(method->signature());
4285 // Print a 'flattened' signature
H A Dlibrary_call.cpp89 // We find the argument count by looking at the declared signature.
2283 ciSignature* sig = callee()->signature();
2509 ciSignature* sig = callee()->signature();
2601 ciSignature* sig = callee()->signature();
2796 ciSignature* sig = callee()->signature();
2921 // these have the same type and signature
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp343 // Read the array of BasicTypes from a signature, and compute where the
2026 // we convert the java signature to a C signature by inserting
2063 SignatureStream ss(method->signature());
2745 // Generate a dtrace nmethod for a given signature. The method takes arguments
2756 // can use for converting the strings. (256 chars per string in the signature).
2770 // Fill in the signature array, for the calling-convention call.
2776 // The signature we are going to use for the trap that dtrace will see
2794 SignatureStream ss(method->signature());
2797 in_sig_bt[i++] = bt; // Collect remaining bits of signature
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp383 // Read the array of BasicTypes from a signature, and compute where the
1561 // we convert the java signature to a C signature by inserting
1596 SignatureStream ss(method->signature());
2416 // Generate a dtrace nmethod for a given signature. The method takes arguments
2427 // can use for converting the strings. (256 chars per string in the signature).
2437 // Fill in the signature array, for the calling-convention call.
2443 // The signature we are going to use for the trap that dtrace will see
2462 // signature to a C signature
[all...]
H A DsharedRuntime_x86_64.cpp353 // Read the array of BasicTypes from a signature, and compute where the
1794 // we convert the java signature to a C signature by inserting
1829 SignatureStream ss(method->signature());
2651 // Generate a dtrace nmethod for a given signature. The method takes arguments
2662 // can use for converting the strings. (256 chars per string in the signature).
2696 // Fill in the signature array, for the calling-convention call.
2702 // The signature we are going to use for the trap that dtrace will see
2722 // signature to a C signature
[all...]

Completed in 4372 milliseconds

<<111213141516171819