HomeSort by relevance Sort by last modified time
    Searched refs:kMethods (Results 1 - 4 of 4) sorted by null

  /external/boringssl/src/ssl/
ssl_ecdh.c 301 static const SSL_ECDH_METHOD kMethods[] = {
349 for (size_t i = 0; i < OPENSSL_ARRAY_SIZE(kMethods); i++) {
350 if (kMethods[i].group_id == group_id) {
351 return &kMethods[i];
358 for (size_t i = 0; i < OPENSSL_ARRAY_SIZE(kMethods); i++) {
359 if (kMethods[i].nid == nid) {
360 return &kMethods[i];
367 for (size_t i = 0; i < OPENSSL_ARRAY_SIZE(kMethods); i++) {
368 if (len == strlen(kMethods[i].name) &&
369 !strncmp(kMethods[i].name, name, len))
    [all...]
  /art/runtime/
dex_file_verifier_test.cc 493 constexpr const char* kMethods[] = { "foo", "bar"};
494 for (size_t i = 0; i < arraysize(kMethods); ++i) {
503 OrMaskToMethodFlags(dex_file, kMethods[i], kAccConstructor);
514 OrMaskToMethodFlags(dex_file, kMethods[i], kAccNative);
525 OrMaskToMethodFlags(dex_file, kMethods[i], kAccAbstract);
536 RemoveCode(dex_file, kMethods[i]);
557 RemoveCode(dex_file, kMethods[i]);
561 if (((GetMethodFlags(dex_file, kMethods[i]) & kAccPublic) != 0) &&
564 OrMaskToMethodFlags(dex_file, kMethods[i], kAccAbstract | kAccFinal);
566 OrMaskToMethodFlags(dex_file, kMethods[i], kAccAbstract | kAbstractDisallowed[j])
    [all...]
  /packages/apps/Messaging/jni/
GifTranscoder.cpp 557 JNINativeMethod kMethods[] = {
579 kMethods, sizeof(kMethods) / sizeof(kMethods[0]))) {
  /external/libmojo/base/android/jni_generator/
jni_generator.py 806 """Substitutes JAVA_CLASS and KMETHODS in the provided template."""
811 kmethods = self.GetKMethodsString(clazz)
812 if kmethods:
814 'KMETHODS': kmethods}
824 static const JNINativeMethod kMethods${JAVA_CLASS}[] = {
825 ${KMETHODS}
861 const int kMethods${JAVA_CLASS}Size = arraysize(kMethods${JAVA_CLASS});
864 kMethods${JAVA_CLASS}
    [all...]

Completed in 114 milliseconds