HomeSort by relevance Sort by last modified time
    Searched full:meth (Results 126 - 150 of 225) sorted by null

1 2 3 4 56 7 8 9

  /dalvik/vm/
Native.c 747 const Method* meth = (const Method*) vmethod; local
755 if (meth->clazz->classLoader != pLib->classLoader) {
757 pLib->pathName, meth->name);
760 LOGV("+++ scanning '%s' for '%s'\n", pLib->pathName, meth->name);
766 createJniNameString(meth->clazz->descriptor, meth->name, &len);
778 createMangledSignature(&meth->prototype);
Debugger.c 343 static MethodId methodToMethodId(const Method* meth)
345 return (MethodId)(u4) meth;
1188 Method* meth; local
1190 meth = methodIdToMethod(refTypeId, id);
1191 return meth->name;
1247 Method* meth; local
2864 const Method* meth; local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
DTMException.java 358 Method meth = local
362 if (null != meth) {
365 exception = (Throwable) meth.invoke(exception, (Class<?>) null);
  /external/openssl/crypto/dsa/
dsa_vrf.c 83 return dsa->meth->dsa_do_verify(dgst, dgst_len, sig, dsa);
dsa.h 184 const DSA_METHOD *meth; member in struct:dsa_st
185 /* functional reference if 'meth' is ENGINE-provided */
dsa_gen.c 95 if(ret->meth->dsa_paramgen)
96 return ret->meth->dsa_paramgen(ret, bits, seed_in, seed_len,
  /external/openssl/crypto/ecdh/
ech_locl.h 84 const ECDH_METHOD *meth; member in struct:ecdh_data_st
  /external/openssl/crypto/rsa/
rsa.h 153 const RSA_METHOD *meth; member in struct:rsa_st
154 /* functional reference if 'meth' is ENGINE-provided */
291 void RSA_set_default_method(const RSA_METHOD *meth);
294 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
rsa_gen.c 82 if(rsa->meth->rsa_keygen)
83 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
  /external/openssl/include/openssl/
rsa.h 153 const RSA_METHOD *meth; member in struct:rsa_st
154 /* functional reference if 'meth' is ENGINE-provided */
291 void RSA_set_default_method(const RSA_METHOD *meth);
294 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
dsa.h 184 const DSA_METHOD *meth; member in struct:dsa_st
185 /* functional reference if 'meth' is ENGINE-provided */
  /external/openssl/ssl/
ssl_lib.c 227 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth)
231 ctx->method=meth;
    [all...]
ssltest.c 413 SSL_METHOD *meth=NULL; local
746 meth=SSLv2_method();
749 meth=TLSv1_method();
752 meth=SSLv3_method();
754 meth=SSLv23_method();
757 meth=SSLv3_method();
759 meth=SSLv2_method();
763 c_ctx=SSL_CTX_new(meth);
764 s_ctx=SSL_CTX_new(meth);
2304 const SSL_METHOD *meth; local
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 673 for (EncodedMethod meth : allMeths) {
674 String methName = meth.getName().getString();
677 meths.put(meth.getRef().getNat(), meth); local
688 for (EncodedMethod meth : meths.values()) {
690 meth.debugPrint(pw, args.verboseDump);
702 clazz.getMethodAnnotations(meth.getRef());
704 clazz.getParameterAnnotations(meth.getRef());
    [all...]
  /dalvik/vm/oo/
Class.h 158 void dvmMakeCodeReadWrite(Method* meth);
159 void dvmMakeCodeReadOnly(Method* meth);
  /external/openssl/crypto/dh/
dh_gen.c 75 if(ret->meth->generate_params)
76 return ret->meth->generate_params(ret, prime_len, generator, cb);
  /external/openssl/crypto/rand/
rand_lcl.h 159 int (*set_rand_func)(const RAND_METHOD *meth,
163 int eng_RAND_set_rand_method(const RAND_METHOD *meth,
  /external/openssl/apps/
s_client.c 316 SSL_METHOD *meth=NULL; local
351 meth=SSLv23_client_method();
353 meth=SSLv3_client_method();
355 meth=SSLv2_client_method();
475 meth=SSLv2_client_method();
479 meth=SSLv3_client_method();
483 meth=TLSv1_client_method();
488 meth=DTLSv1_client_method();
598 /* meth=TLSv1_client_method(); */
699 ctx=SSL_CTX_new(meth);
    [all...]
  /dalvik/vm/reflect/
Annotation.c 63 Method* meth; local
96 meth = dvmFindDirectMethodByDescriptor(gDvm.classOrgApacheHarmonyLangAnnotationAnnotationFactory,
99 if (meth == NULL) {
103 gDvm.methOrgApacheHarmonyLangAnnotationAnnotationFactory_createAnnotation = meth;
105 meth = dvmFindDirectMethodByDescriptor(gDvm.classOrgApacheHarmonyLangAnnotationAnnotationMember,
108 if (meth == NULL) {
113 gDvm.methOrgApacheHarmonyLangAnnotationAnnotationMember_init = meth;
505 Method* meth = resolveAmbiguousMethod(clazz, idx); local
506 if (meth == NULL)
508 elemObj = dvmCreateReflectObjForMethod(clazz, meth);
1411 Method* meth = resolveAmbiguousMethod(clazz, avalue.value.i); local
    [all...]
  /external/openssl/crypto/conf/
conf_def.c 80 static CONF *def_create(CONF_METHOD *meth);
128 static CONF *def_create(CONF_METHOD *meth)
134 if (meth->init(ret) == 0)
147 conf->meth = &default_method;
159 conf->meth = &WIN32_method;
conf_api.c 176 if (conf->meth->is_number(conf, *str))
177 ret=ret*10+conf->meth->to_int(conf, *str);
  /dalvik/docs/
instruction-formats.html 170 pool index), and "<code>meth</code>" (method pool index).</p>
331 meth@CCCC<br/>
387 <td><i><code>op</code></i> {vCCCC .. vNNNN}, meth@BBBB<br/>
  /external/icu4c/tools/ctestfw/
uperf.cpp 374 //System.out.println("# " + meth.getName() + " " + n + " sec");
382 //System.out.println("# " + meth.getName() + " x " + loops + " = " + t);
389 //System.out.println("# " + meth.getName() + " x " + loops);
  /external/openssl/crypto/ec/
ec_lcl.h 185 const EC_METHOD *meth; member in struct:ec_group_st
267 const EC_METHOD *meth; member in struct:ec_point_st
269 /* All members except 'meth' are handled by the method functions,
  /dalvik/libdex/
InstrUtils.h 67 kFmt3rc, // op {vCCCC .. v(CCCC+AA-1)}, meth@BBBB

Completed in 258 milliseconds

1 2 3 4 56 7 8 9