HomeSort by relevance Sort by last modified time
    Searched refs:signature (Results 751 - 775 of 1427) sorted by null

<<31323334353637383940>>

  /art/runtime/
dex_file.cc 512 const DexFile::ProtoId& signature) const {
516 const uint16_t proto_idx = GetIndexForProtoId(signature);
636 // Given a signature place the type ids into the given vector
637 bool DexFile::CreateTypeList(const StringPiece& signature, uint16_t* return_type_idx,
639 if (signature[0] != '(') {
643 size_t end = signature.size();
647 char c = signature[offset];
657 c = signature[offset];
665 c = signature[offset];
670 std::string descriptor(signature.data() + start_offset, offset - start_offset)
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 37 private byte[] signature = new byte[20]; field in class:DexFileReader
117 // SIGNATURE (20, U_BYTE)
119 b.readBytes(signature);
  /cts/tools/signature-tools/
sig-create 39 classpath=$libdir/signature-tools.jar:$libdir/dex-tools.jar:\
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationUtils.java 61 /** {@code non-null;} type for {@code Signature} annotations */
63 CstType.intern(Type.intern("Ldalvik/annotation/Signature;"));
162 * Constructs a standard {@code Signature} annotation.
164 * @param signature {@code non-null;} the signature string
167 public static Annotation makeSignature(CstUtf8 signature) {
175 String raw = signature.getString();
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationUtils.java 61 /** {@code non-null;} type for {@code Signature} annotations */
63 CstType.intern(Type.intern("Ldalvik/annotation/Signature;"));
161 * Constructs a standard {@code Signature} annotation.
163 * @param signature {@code non-null;} the signature string
166 public static Annotation makeSignature(CstString signature) {
174 String raw = signature.getString();
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/jsdoc-template/
publish.js 176 var signature = "("
180 return $.name.indexOf(".") == -1; // don't show config params in signature
189 return signature;
  /external/chromium_org/chrome/browser/extensions/api/enterprise_platform_keys/
enterprise_platform_keys_api.cc 121 const std::string& signature,
125 Respond(ArgumentList(api_epki::Sign::Results::Create(signature)));
  /external/chromium_org/chrome/browser/resources/cryptotoken/
signhelper.js 41 * the signature produced by a successful sign request.
  /external/chromium_org/components/policy/core/common/cloud/
cloud_policy_validator.h 43 // Since signature checks are expensive, validation can happen on a background
55 // Bad signature on the initial key.
57 // Bad signature.
75 // Policy key signature could not be verified using the hard-coded
160 // Verifies that the signature on the policy blob verifies against |key|. If
162 // policy blob, this checks the signature on the new key against |key| and the
171 // Similar to ValidateSignature(), this checks the signature on the
243 // Helper routine that performs a verification-key-based signature check,
245 // if the verification succeeds, or if |signature| is empty.
248 const std::string& signature);
    [all...]
  /external/chromium_org/content/child/webcrypto/
webcrypto_impl.cc 275 const unsigned char* signature,
283 signature(signature, signature + signature_size),
289 const std::vector<uint8> signature; member in struct:content::__anon11822::VerifySignatureState
531 webcrypto::CryptoData(state->signature),
694 const unsigned char* signature,
700 algorithm, key, signature, signature_size, data, data_size, result));
  /external/chromium_org/dbus/
message.h 290 // |signature| parameter is used to supply the D-Bus type signature of
292 // then you pass "s" as the signature.
298 void OpenArray(const std::string& signature, MessageWriter* sub_writer);
300 void OpenVariant(const std::string& signature, MessageWriter* sub_writer);
301 // Do the same for Struct and dict entry. They don't need the signature.
  /external/chromium_org/remoting/host/
heartbeat_sender.cc 34 const char kHeartbeatSignatureTag[] = "signature";
272 std::string signature(key_pair_->SignMessage(message));
273 signature_tag->AddText(signature);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerIsolateData.cpp 125 v8::Handle<v8::FunctionTemplate> V8PerIsolateData::domTemplate(void* domTemplateKey, v8::FunctionCallback callback, v8::Handle<v8::Value> data, v8::Handle<v8::Signature> signature, int length)
132 v8::Local<v8::FunctionTemplate> templ = v8::FunctionTemplate::New(m_isolate, callback, data, signature, length);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.idl 52 // FIXME: should be: Promise verify(Dictionary algorithm, Key key, CryptoOperationData signature, CryptoOperationData data);
53 [CallWith=ScriptState, Custom, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, Key key, object signature, object data);
  /external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_prn.c 169 X509_signature_print(bp, sig->signatureAlgorithm, sig->signature);
277 if(X509_signature_print(bp, br->signatureAlgorithm, br->signature) <= 0)
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationUtils.java 60 /** {@code non-null;} type for {@code Signature} annotations */
62 CstType.intern(Type.intern("Ldalvik/annotation/Signature;"));
160 * Constructs a standard {@code Signature} annotation.
162 * @param signature {@code non-null;} the signature string
165 public static Annotation makeSignature(CstString signature) {
173 String raw = signature.getString();
  /external/dhcpcd/dhcpcd-hooks/
20-resolv.conf 71 local x= conf="$signature\n"
  /external/dhcpcd/
dhcpcd-run-hooks.in 14 signature="$signature_base $from $ifname"
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-bcel.jar 
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 126 int opcode, String signature) throws BadBytecode {
149 int methodref = cp.addMethodrefInfo(mi, methodName, signature);
  /external/opencv/otherlibs/highgui/
grfmt_png.cpp 86 bool GrFmtPng::CheckSignature( const char* signature )
88 return png_check_sig( (uchar*)signature, m_sign_len ) != 0;
  /external/openssl/crypto/cms/
cms_ess.c 281 if (!ASN1_STRING_cmp(osi->signature,
408 rct.originatorSignatureValue = si->signature;
  /external/openssl/crypto/ocsp/
ocsp_prn.c 169 X509_signature_print(bp, sig->signatureAlgorithm, sig->signature);
277 if(X509_signature_print(bp, br->signatureAlgorithm, br->signature) <= 0)
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-tree-3.3.jar 
jFormatString.jar 

Completed in 441 milliseconds

<<31323334353637383940>>