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

<<21222324252627282930>>

  /system/security/softkeymaster/include/keymaster/
softkeymaster.h 38 const size_t signedDataLength, const uint8_t* signature,
  /art/runtime/native/
java_lang_Object.cc 23 #define NATIVE_METHOD(className, functionName, signature, identifier) \
24 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
VariableTableTest.java 77 String signature = reply.getNextValueAsString(); local
78 logWriter.println("signature = "+signature);
VariableTableWithGenericTest.java 78 String signature = reply.getNextValueAsString(); local
79 logWriter.println("signature = "+signature);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509V3CertificateGenerator.java 162 * Set the signature algorithm. This can be either a name or an OID, names
178 throw new IllegalArgumentException("Unknown signature type requested: " + signatureAlgorithm);
430 byte[] signature;
434 signature = X509Util.calculateSignature(sigOID, signatureAlgorithm, key, random, tbsCert);
443 return generateJcaObject(tbsCert, signature);
475 byte[] signature;
479 signature = X509Util.calculateSignature(sigOID, signatureAlgorithm, provider, key, random, tbsCert);
488 return generateJcaObject(tbsCert, signature);
506 private X509Certificate generateJcaObject(TBSCertificate tbsCert, byte[] signature)
513 v.add(new DERBitString(signature));
    [all...]
  /external/chromium_org/chromeos/network/onc/
onc_utils.h 76 const OncValueSignature& signature,
87 // by |mask|. To find sensitive fields, signature and field name are checked
90 const OncValueSignature& signature,
  /external/dhcpcd/dhcpcd-hooks/
50-yp.conf 14 echo "$signature" > "$cf"
  /external/jarjar/src/main/com/tonicsystems/jarjar/
DepFindVisitor.java 34 public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
36 super.visit(version, access, name, signature, superName, interfaces);
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 158 private byte[] signature; field in class:ProxyFactory
306 * the unique signature of any method filter whose behaviour will be met by this class. each bit in
310 byte[] signature; field in class:ProxyFactory.ProxyDetails
312 * a hexadecimal string representation of the signature bit sequence. this string also forms part
322 ProxyDetails(byte[] signature, Class proxyClass, boolean isUseWriteReplace)
324 this.signature = signature;
338 signature = null;
351 // force recompute of signature
352 signature = null
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DebuggingClassWriter.java 53 String signature,
58 super.visit(version, access, name, signature, superName, interfaces);
  /dalvik/libdex/
DexDebugInfo.cpp 29 * Decode the arguments in a method signature, which looks something
32 * Returns the type signature letter for the next argument, or ')' if
71 * references types that are inside a method type signature.
115 const char *signature; member in struct:LocalInfo
127 localInReg[reg].signature == NULL
128 ? "" : localInReg[reg].signature );
205 localInReg[reg].signature = NULL;
242 localInReg[reg].signature
245 localInReg[reg].signature = NULL;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
CertUtils.java 46 throw new IllegalStateException("cannot produce certificate signature");
58 throw new IllegalStateException("cannot produce attribute certificate signature");
70 throw new IllegalStateException("cannot produce certificate signature");
87 private static Certificate generateStructure(TBSCertificate tbsCert, AlgorithmIdentifier sigAlgId, byte[] signature)
93 v.add(new DERBitString(signature));
98 private static AttributeCertificate generateAttrStructure(AttributeCertificateInfo attrInfo, AlgorithmIdentifier sigAlgId, byte[] signature)
104 v.add(new DERBitString(signature));
109 private static CertificateList generateCRLStructure(TBSCertList tbsCertList, AlgorithmIdentifier sigAlgId, byte[] signature)
115 v.add(new DERBitString(signature));
  /external/chromium_org/chromeos/network/
network_ui_data.cc 204 void TranslateONCHierarchy(const onc::OncValueSignature& signature,
207 if (&signature == &onc::kCertificatePatternSignature)
209 else if (&signature == &onc::kEAPSignature)
211 else if (&signature == &onc::kIPsecSignature)
213 else if (&signature == &onc::kOpenVPNSignature)
224 GetFieldSignature(signature, it.key());
  /external/chromium_org/components/nacl/loader/
nacl_validation_query_unittest.cc 9 // This test makes sure that validation signature generation is performed
11 // (and no other data) we are passing the signature generator affects the final
12 // signature. To avoid tying the tests to a particular implementation, each
14 // against a specified signature.
42 virtual bool QueryKnownToValidate(const std::string& signature) OVERRIDE {
46 (int) signature.length());
50 memcpy(query_signature_, signature.data(),
55 virtual void SetKnownToValidate(const std::string& signature) OVERRIDE {
59 (int) signature.length());
63 memcpy(set_signature_, signature.data()
    [all...]
  /external/chromium_org/content/browser/android/java/
java_method.cc 178 // If we build the signature now, there's no need to store the binary name
180 std::string signature("(");
182 // Form the signature and record the parameter types.
194 signature += BinaryNameToJNIName(name_utf8, &parameter_types_[i]);
196 signature += ")";
211 signature += BinaryNameToJNIName(ConvertJavaStringToUTF8(name),
236 env, declaring_class.obj(), name_.c_str(), signature.c_str()) :
238 env, declaring_class.obj(), name_.c_str(), signature.c_str());
  /external/smack/src/org/xbill/DNS/
DNSSEC.java 178 * @param previous If this is a response, the signature from the query.
233 "does not match signature " +
241 * A DNSSEC verification failed because the signature has expired.
247 super("signature expired");
253 * @return When the signature expired
270 * A DNSSEC verification failed because the signature has not yet become valid.
276 super("signature is not yet valid");
282 * @return When the signature will become valid
299 * A DNSSEC verification failed because the cryptographic signature
304 super("signature verification failed")
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/
DrmPlugin.h 191 Vector<uint8_t>& signature) {
195 UNUSED(signature);
203 const Vector<uint8_t>& signature, bool& match) {
207 UNUSED(signature);
217 Vector<uint8_t>& signature) {
222 UNUSED(signature);
  /frameworks/base/core/jni/
android_animation_PropertyValuesHolder.cpp 54 char *signature = new char[parameterCount + 4]; local
55 signature[0] = '(';
56 memset(&(signature[1]), parameterType, parameterCount);
57 strcpy(&(signature[parameterCount + 1]), ")V");
58 jmethodID mid = env->GetMethodID(targetClass, nativeString, signature);
59 delete[] signature;
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 15 signatures (one signature per line). The output is either a windows def file,
391 The format of the input file is one C-style function signature per line, no
406 signature.
409 BadSignatureError: A line could not be parsed as a signature.
434 signatures: The list of signature hashes, as produced by ParseSignatures,
466 signatures: The list of signature hashes, as produced by ParseSignatures,
525 signatures: The list of signature hashes, as produced by ParseSignatures,
609 def StubFunctionPointer(cls, signature):
610 """Generates a function pointer declaration for the given signature.
613 signature: A signature hash, as produced by ParseSignatures
    [all...]
  /external/iproute2/misc/
rtacct.c 71 char signature[128]; member in struct:rtacct_data
163 fprintf(fp, "#%s\n", kern_db->signature);
225 fprintf(fp, "#%s\n", kern_db->signature);
371 sprintf(kern_db->signature,
605 if (hist_db && hist_db->signature[0] &&
606 strcmp(kern_db->signature, hist_db->signature)) {
615 if (hist_db && hist_db->signature[0] &&
616 strcmp(hist_db->signature, "kernel")) {
622 strcpy(kern_db->signature, "kernel")
    [all...]
  /art/runtime/mirror/
class.cc 362 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const StringPiece& signature) {
364 ArtMethod* method = FindDeclaredVirtualMethod(name, signature);
372 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature);
380 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const Signature& signature) {
382 ArtMethod* method = FindDeclaredVirtualMethod(name, signature);
390 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature);
416 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const StringPiece& signature) {
419 if (name == method->GetName() && method->GetSignature() == signature) {
426 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const Signature& signature)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubby-u2f.js 12 /** Request signature */
25 /** Test signature only, no TUP. E.g. to check for existing enrollments. */
61 /** Request signature
62 * @param {ArrayBuffer|Uint8Array} challengeHash Hashed signature challenge
66 * @param {boolean=} opt_nowink Request signature without winking
93 // A signature request that does not want winking.
96 // Tell applet to not actually produce a signature, even
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmAnalyzer.java 28 import org.objectweb.asm.signature.SignatureReader;
29 import org.objectweb.asm.signature.SignatureVisitor;
472 * Considers this signature or type signature by invoking the {@link SignatureVisitor}
475 public void considerSignature(String signature) {
476 if (signature != null) {
477 SignatureReader sr = new SignatureReader(signature);
479 // to differentiate where the signature comes from.
521 String signature, String superName, String[] interfaces) {
522 // signature is the signature of this class. May be null if the class is not a generi
    [all...]
DependencyFinder.java 31 import org.objectweb.asm.signature.SignatureReader;
32 import org.objectweb.asm.signature.SignatureVisitor;
334 * Considers this signature or type signature by invoking the {@link SignatureVisitor}
337 public void considerSignature(String signature) {
338 if (signature != null) {
339 SignatureReader sr = new SignatureReader(signature);
341 // to differentiate where the signature comes from.
397 String signature, String superName, String[] interfaces) {
398 // signature is the signature of this class. May be null if the class is not a generi
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Settings.java 65 public final String signature; field in class:Settings
119 signature = "";
143 signature = inParcel.readString();
167 signature = cursor.getString(cursor.getColumnIndex(SettingsColumns.SIGNATURE));
202 signature = json.optString(SettingsColumns.SIGNATURE, sDefault.signature);
252 json.put(SettingsColumns.SIGNATURE, getNonNull(signature, sDefault.signature))
    [all...]

Completed in 1577 milliseconds

<<21222324252627282930>>