Searched refs:signature (Results 1 - 25 of 333) sorted by relevance

1234567891011>>

/external/elfutils/libasm/
H A Dasm_scngrp_newsignature.c1 /* Update signature of section group.
35 asm_scngrp_newsignature (grp, signature)
37 AsmSym_t *signature;
39 if (grp == NULL || signature == NULL)
42 grp->signature = signature;
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalItem.java22 * A local variable item: either a name or a signature or both.
28 /** {@code null-ok;} local variable signature */
29 private final CstString signature; field in class:LocalItem
32 * Make a new item. If both name and signature are null, null is returned.
37 * @param signature {@code null-ok;} local variable signature
40 public static LocalItem make(CstString name, CstString signature) { argument
41 if (name == null && signature == null) {
45 return new LocalItem (name, signature);
52 * @param signature {
54 LocalItem(CstString name, CstString signature) argument
[all...]
/external/oauth/core/src/main/java/net/oauth/signature/
H A DPLAINTEXT.java17 package net.oauth.signature;
34 protected boolean isValid(String signature, String baseString) argument
36 return signature.equals(getSignature());
40 if (signature == null) {
41 signature = OAuth.percentEncode(getConsumerSecret()) + '&'
44 return signature;
47 private String signature = null; field in class:PLAINTEXT
52 signature = null;
60 signature = null;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DSignerWithRecovery.java11 * part of signature verification.
29 * @param signature the signature that we are in the process of verifying.
32 public void updateWithRecoveredMessage(byte[] signature) argument
H A DSigner.java27 * generate a signature for the message we've been loaded with using
34 * return true if the internal state represents the signature described
37 public boolean verifySignature(byte[] signature); argument
/external/dbus/dbus/
H A Ddbus-marshal-byteswap-util.c35 DBusString signature; local
39 if (!_dbus_string_init (&signature) || !_dbus_string_init (&body))
47 &signature, &body))
59 _dbus_marshal_byteswap (&signature, 0,
64 _dbus_type_reader_init (&body_reader, byte_order, &signature, 0,
66 _dbus_type_reader_init (&copy_reader, opposite_order, &signature, 0,
71 _dbus_verbose_bytes_of_string (&signature, 0,
72 _dbus_string_get_length (&signature));
84 _dbus_string_set_length (&signature, 0);
89 _dbus_string_free (&signature);
[all...]
H A Ddbus-marshal-byteswap.h30 void _dbus_marshal_byteswap (const DBusString *signature,
H A Ddbus-signature.h55 const char *signature);
74 dbus_bool_t dbus_signature_validate (const char *signature,
78 dbus_bool_t dbus_signature_validate_single (const char *signature,
/external/chromium/crypto/
H A Dsignature_creator_openssl.cc39 bool SignatureCreator::Final(std::vector<uint8>* signature) { argument
42 signature->resize(EVP_PKEY_size(key));
45 int rv = EVP_SignFinal(sign_context_, vector_as_array(signature), &len, key);
47 signature->clear();
50 signature->resize(len);
H A Dsignature_creator_unittest.cc32 std::vector<uint8> signature; local
33 ASSERT_TRUE(signer->Final(&signature));
47 &signature.front(), signature.size(),
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/signature/
H A DRSASignature.java5 package ch.ethz.ssh2.signature;
/external/kernel-headers/original/asm-x86/
H A Dist.h23 __u32 signature; member in struct:ist_info
/external/webkit/Source/WebCore/rendering/
H A DRenderArena.cpp49 const int signature = 0xDBA00AEA; member in namespace:WebCore
55 int signature; member in struct:WebCore::__anon14713
85 header->signature = signature;
120 ASSERT(header->signature == signature);
123 header->signature = signatureDead;
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DDebugMethodItem.java65 StringIdItem name, TypeIdItem type, StringIdItem signature)
73 if (signature != null) {
75 writer.write(signature.getStringValue());
81 TypeIdItem type, StringIdItem signature) throws IOException {
90 if (signature != null) {
92 writer.write(signature.getStringValue());
100 StringIdItem name, TypeIdItem type, StringIdItem signature)
110 if (signature != null) {
112 writer.write(signature.getStringValue());
64 writeStartLocal(IndentingWriter writer, CodeItem codeItem, int register, StringIdItem name, TypeIdItem type, StringIdItem signature) argument
80 writeEndLocal(IndentingWriter writer, CodeItem codeItem, int register, StringIdItem name, TypeIdItem type, StringIdItem signature) argument
99 writeRestartLocal(IndentingWriter writer, CodeItem codeItem, int register, StringIdItem name, TypeIdItem type, StringIdItem signature) argument
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketKexDHReply.java23 byte[] signature; field in class:PacketKexDHReply
40 signature = tr.readByteString();
57 return signature;
H A DPacketKexDhGexReply.java23 byte[] signature; field in class:PacketKexDhGexReply
39 signature = tr.readByteString();
57 return signature;
/external/javassist/src/main/javassist/util/proxy/
H A DProxyObjectOutputStream.java52 byte[] signature = ProxyFactory.getFilterSignature(cl);
64 writeInt(signature.length);
65 write(signature);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DV1TBSCertificateGenerator.java16 * signature AlgorithmIdentifier,
30 AlgorithmIdentifier signature; field in class:V1TBSCertificateGenerator
47 AlgorithmIdentifier signature)
49 this.signature = signature;
114 if ((serialNumber == null) || (signature == null)
125 seq.add(signature);
46 setSignature( AlgorithmIdentifier signature) argument
/external/openssl/crypto/asn1/
H A Da_sign.c131 ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey,
196 if (signature->data != NULL) OPENSSL_free(signature->data);
197 signature->data=buf_out;
199 signature->length=outl;
203 signature->flags&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07);
204 signature->flags|=ASN1_STRING_FLAG_BITS_LEFT;
217 ASN1_BIT_STRING *signature, void *asn, EVP_PKEY *pkey,
227 return ASN1_item_sign_ctx(it, algor1, algor2, signature, asn, &ctx);
233 ASN1_BIT_STRING *signature, voi
130 ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2, ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey, const EVP_MD *type) argument
216 ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, ASN1_BIT_STRING *signature, void *asn, EVP_PKEY *pkey, const EVP_MD *type) argument
231 ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, ASN1_BIT_STRING *signature, void *asn, EVP_MD_CTX *ctx) argument
[all...]
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DCodeGeneratorTestRunner.pm149 push(@contents, " static JSValueRef @{[$function->signature->name]}(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef*);\n");
243 JSValueRef ${className}::@{[$function->signature->name]}(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
251 if ($function->signature->extendedAttributes->{"CustomArgumentHandling"}) {
252 $functionCall = "impl->" . $function->signature->name . "(context, argumentCount, arguments, exception)";
257 $self->_includeHeaders(\%contentsIncludes, $function->signature->type, $function->signature);
259 if ($function->signature->extendedAttributes->{"PassContext"}) {
273 $functionCall = "impl->" . $function->signature->name . "(" . join(", ", @parameters) . ")";
276 push(@contents, " ${functionCall};\n\n") if $function->signature->type eq "void";
277 push(@contents, " return " . $self->_returnExpression($function->signature,
[all...]
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGeneratorJS.pm812 $numCustomAttributes++ if $attribute->signature->extendedAttributes->{"Custom"} || $attribute->signature->extendedAttributes->{"JSCCustom"};
813 $numCustomAttributes++ if $attribute->signature->extendedAttributes->{"CustomGetter"} || $attribute->signature->extendedAttributes->{"JSCCustomGetter"};
814 $numCustomAttributes++ if $attribute->signature->extendedAttributes->{"CustomSetter"} || $attribute->signature->extendedAttributes->{"JSCCustomSetter"};
815 if ($attribute->signature->extendedAttributes->{"CachedAttribute"}) {
816 push(@headerContent, " static const unsigned " . $attribute->signature->name . "Slot = $numCachedAttributes + Base::AnonymousSlotCount;\n");
830 if ($attribute->signature->extendedAttributes->{"Custom"} || $attribute->signature
[all...]
/external/mesa3d/src/glsl/
H A Dlower_jumps.cpp97 ir_function_signature* signature; member in struct:loop_record
111 this->signature = p_signature;
124 exec_list& list = this->loop ? this->loop->body_instructions : signature->body;
125 this->execute_flag = new(this->signature) ir_variable(glsl_type::bool_type, "execute_flag", ir_var_temporary);
126 list.push_head(new(this->signature) ir_assignment(new(this->signature) ir_dereference_variable(execute_flag), new(this->signature) ir_constant(true), 0));
136 this->break_flag = new(this->signature) ir_variable(glsl_type::bool_type, "break_flag", ir_var_temporary);
138 this->loop->insert_before(new(this->signature) ir_assignment(new(this->signature) ir_dereference_variabl
146 ir_function_signature* signature; member in struct:function_record
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dparameter.rb49 signature = join( ', ' )
50 @splat and signature << ", *" << @splat.to_s
51 @block and signature << ", &" << @block.to_s
52 return( signature )
/external/clang/test/CodeGen/
H A Dblocksignature.c45 const char *signature; // conditional on BLOCK_HAS_OBJC
51 const char *signature; // conditional on BLOCK_HAS_OBJC
67 return layout->descriptor->signature;
69 return ((struct block_descriptor_small *)layout->descriptor)->signature;
H A Dblockstret.c47 const char *signature; // conditional on BLOCK_HAS_OBJC member in struct:block_descriptor_big
53 const char *signature; // conditional on BLOCK_HAS_OBJC member in struct:block_descriptor_small
69 return layout->descriptor->signature;
71 return ((struct block_descriptor_small *)layout->descriptor)->signature;

Completed in 1276 milliseconds

1234567891011>>