HomeSort by relevance Sort by last modified time
    Searched refs:signature (Results 576 - 600 of 2070) sorted by null

<<21222324252627282930>>

  /toolchain/binutils/binutils-2.25/gold/
dwp.cc 94 uint64_t signature; member in struct:gold::Unit_set
98 : signature(0), sections()
479 // Lookup a type signature and return TRUE if we have already seen it.
530 // Find a slot in the hash table for SIGNATURE. Return TRUE
533 find_or_add(uint64_t signature, unsigned int* slotp);
676 // Cache of the last type signature looked up.
678 // Cache of the slot index for the last type signature.
740 uint64_t signature, Dwarf_die*);
1203 uint64_t signature = local
1815 uint64_t signature = old_hash_table[i]; local
    [all...]
  /art/runtime/
well_known_classes.cc 179 const char* name, const char* signature) {
180 jfieldID fid = is_static ? env->GetStaticFieldID(c, name, signature) :
181 env->GetFieldID(c, name, signature);
189 LOG(FATAL) << "Couldn't find field \"" << name << "\" with signature \"" << signature << "\": "
196 const char* name, const char* signature) {
197 jmethodID mid = is_static ? env->GetStaticMethodID(c, name, signature) :
198 env->GetMethodID(c, name, signature);
206 LOG(FATAL) << "Couldn't find method \"" << name << "\" with signature \"" << signature << "\":
    [all...]
  /bionic/libc/kernel/uapi/linux/
msdos_fs.h 129 __u8 signature; member in struct:fat_boot_sector::__anon688::__anon689
147 __u8 signature; member in struct:fat_boot_sector::__anon688::__anon690
  /development/ndk/platforms/android-21/include/linux/
msdos_fs.h 129 __u8 signature; member in struct:fat_boot_sector::__anon1799::__anon1800
147 __u8 signature; member in struct:fat_boot_sector::__anon1799::__anon1801
  /development/ndk/platforms/android-21/include/media/
NdkMediaDrm.h 304 * secure stop message to the server which verifies the signature and notifies the
428 * Generate a signature using the specified macAlgorithm over the message data
429 * referenced by message of size messageSize and store the signature in the
430 * buffer referenced signature of max size *signatureSize. If the buffer is not
431 * large enough to hold the signature, MEDIADRM_SHORT_BUFFER is returned and
438 uint8_t *signature, size_t *signatureSize);
441 * Perform a signature verification using the specified macAlgorithm over the message
443 * if the signature matches, otherwise MEDAIDRM_VERIFY_FAILED is returned. The key to
449 const uint8_t *signature, size_t signatureSize);
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 39 int access, String name, String desc, String signature, String[] exceptions) {
63 null, // signature
143 public void visitLocalVariable(String name, String desc, String signature,
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
Signature2Test.java 26 import java.security.Signature;
46 * @tests java.security.Signature#clone()
49 Signature s = Signature.getInstance("DSA");
52 fail("A Signature may not be cloneable");
54 // Expected - a Signature may not be cloneable
59 * @tests java.security.Signature#getAlgorithm()
62 String alg = Signature.getInstance("DSA").getAlgorithm();
68 * @tests java.security.Signature#getInstance(java.lang.String)
71 Signature.getInstance("DSA")
    [all...]
  /external/autotest/client/site_tests/logging_KernelCrash/
logging_KernelCrash.py 34 def _is_signature_match(self, signature):
41 return (re.match(regex, signature) is not None)
50 r'Received .* from kernel \(signature ([^\)]+)\) \(([^\)]+)\)',
56 logging.info('Signature: [%s]', announce_match.group(1))
61 'Kernel crash signature (%s) did not match expected pattern' %
108 raise error.TestFail('Sent the wrong kcrash signature')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
service_account.py 83 signature = base64.urlsafe_b64encode(rsa_bytes).rstrip(b'=')
85 return assertion_input + b'.' + signature
  /external/dbus/dbus/
dbus-marshal-byteswap.c 27 #include "dbus-signature.h"
201 _dbus_assert_not_reached ("invalid typecode in supposedly-validated signature");
218 * @param signature the types in the value_str
219 * @param signature_start where in signature is the signature
226 _dbus_marshal_byteswap (const DBusString *signature,
242 signature, signature_start);
  /external/google-breakpad/src/common/dwarf/
dwarf2diehandler.cc 191 uint64 signature) {
195 current.handler_->ProcessAttributeSignature(attr, form, signature);
  /external/javassist/src/main/javassist/expr/
NewExpr.java 94 * Get the signature of the constructor
96 * The signature is represented by a character string
101 * @return the signature
180 String signature = constPool.getMethodrefType(methodIndex); local
186 CtClass[] params = Descriptor.getParameterTypes(signature, cp);
  /external/kernel-headers/original/uapi/linux/
msdos_fs.h 133 __u8 signature; /* extended boot signature */ member in struct:fat_boot_sector::__anon14180::__anon14181
156 __u8 signature; /* extended boot signature */ member in struct:fat_boot_sector::__anon14180::__anon14182
  /external/opencv3/modules/imgcodecs/src/
loadsave.cpp 142 // read the file signature
143 String signature(maxlen, ' ');
144 maxlen = fread( (void*)signature.c_str(), 1, maxlen, f );
146 signature = signature.substr(0, maxlen);
148 /// compare signature against all decoders
151 if( codecs.decoders[i]->checkSignature(signature) )
172 String signature(maxlen, ' ');
175 memcpy( (void*)signature.c_str(), buf.data, maxlen );
179 if( codecs.decoders[i]->checkSignature(signature) )
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DebugWriter.java 64 @Nullable StringKey signature) throws IOException {
67 int signatureIndex = stringSection.getNullableItemIndex(signature);
  /external/v8/test/mjsunit/wasm/
unreachable.js 25 0, 0, // signature offset
  /frameworks/av/include/ndk/
NdkMediaDrm.h 304 * secure stop message to the server which verifies the signature and notifies the
428 * Generate a signature using the specified macAlgorithm over the message data
429 * referenced by message of size messageSize and store the signature in the
430 * buffer referenced signature of max size *signatureSize. If the buffer is not
431 * large enough to hold the signature, MEDIADRM_SHORT_BUFFER is returned and
438 uint8_t *signature, size_t *signatureSize);
441 * Perform a signature verification using the specified macAlgorithm over the message
443 * if the signature matches, otherwise MEDAIDRM_VERIFY_FAILED is returned. The key to
449 const uint8_t *signature, size_t signatureSize);
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreECDSASignatureSpi.java 83 public byte[] doFinal(byte[] input, int inputOffset, int inputLength, byte[] signature,
96 signature, additionalEntropy);
  /frameworks/support/v4/api23/android/support/v4/hardware/fingerprint/
FingerprintManagerCompatApi23.java 23 import java.security.Signature;
109 private final Signature mSignature;
113 public CryptoObject(Signature signature) {
114 mSignature = signature;
131 public Signature getSignature() { return mSignature; }
  /hardware/libhardware/include/hardware/
keymaster1.h 121 const uint8_t* signature, const size_t signature_length);
512 * \param[in] signature The signature to be verified if the purpose specified in the begin()
518 * If the operation being finished is a signature verification or an AEAD-mode decryption and
524 const keymaster_blob_t* signature,
  /libcore/ojluni/src/main/native/
DatagramDispatcher.c 47 #define NATIVE_METHOD(className, functionName, signature) \
48 { #functionName, signature, (void*)(Java_sun_nio_ch_ ## className ## _ ## functionName) }
IOUtil.c 39 #define NATIVE_METHOD(className, functionName, signature) \
40 { #functionName, signature, (void*)(className ## _ ## functionName) }
InheritedChannel.c 42 #define NATIVE_METHOD(className, functionName, signature) \
43 { #functionName, signature, (void*)(Java_sun_nio_ch_ ## className ## _ ## functionName) }
ObjectInputStream.c 33 #define NATIVE_METHOD(className, functionName, signature) \
34 { #functionName, signature, (void*)(Java_java_io_ ## className ## _ ## functionName) }
41 * Signature: ([BI[FII)V
108 * Signature: ([BI[DII)V
ObjectOutputStream.c 33 #define NATIVE_METHOD(className, functionName, signature) \
34 { #functionName, signature, (void*)(Java_java_io_ ## className ## _ ## functionName) }
40 * Signature: ([FI[BII)V
112 * Signature: ([DI[BII)V

Completed in 3191 milliseconds

<<21222324252627282930>>