HomeSort by relevance Sort by last modified time
    Searched refs:meth (Results 201 - 225 of 349) sorted by null

1 2 3 4 5 6 7 891011>>

  /dalvik/vm/
Debugger.cpp 323 static MethodId methodToMethodId(const Method* meth)
325 return (MethodId)(u4) meth;
1146 Method* meth; local
1148 meth = methodIdToMethod(refTypeId, id);
1149 return meth->name;
1217 Method* meth; local
1230 meth = &clazz->directMethods[i];
1232 expandBufAddMethodId(pReply, methodToMethodId(meth))
2762 const Method* meth; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_eay.c 230 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
431 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
451 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
565 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
583 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
696 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
805 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
828 if (!rsa->meth->bn_mod_exp(r0,r1,dmp1,rsa->p,ctx,
863 if (!rsa->meth->bn_mod_exp(vrfy,r0,rsa->e,rsa->n,ctx,rsa->_method_mod_n)) goto err;
888 if (!rsa->meth->bn_mod_exp(r0,I,d,rsa->n,ctx
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_sess.c 795 const SSL_METHOD *meth; local
799 meth=s->ctx->method->get_ssl_method(session->ssl_version);
800 if (meth == NULL)
801 meth=s->method->get_ssl_method(session->ssl_version);
802 if (meth == NULL)
808 if (meth != s->method)
810 if (!SSL_set_ssl_method(s,meth))
842 meth=s->ctx->method;
843 if (meth != s->method)
845 if (!SSL_set_ssl_method(s,meth))
    [all...]
ssltest.c 522 const SSL_METHOD *meth=NULL; local
879 meth=SSLv2_method();
882 meth=TLSv1_method();
885 meth=SSLv3_method();
887 meth=SSLv23_method();
890 meth=SSLv3_method();
892 meth=SSLv2_method();
896 c_ctx=SSL_CTX_new(meth);
897 s_ctx=SSL_CTX_new(meth);
2537 const SSL_METHOD *meth; local
    [all...]
ssl_lib.c 258 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,const SSL_METHOD *meth)
262 ctx->method=meth;
266 meth->version == SSL2_VERSION ? "SSLv2" : SSL_DEFAULT_CIPHER_LIST);
    [all...]
  /external/openssl/crypto/rsa/
rsa_eay.c 230 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
431 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
451 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
565 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
583 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
696 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
805 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
828 if (!rsa->meth->bn_mod_exp(r0,r1,dmp1,rsa->p,ctx,
863 if (!rsa->meth->bn_mod_exp(vrfy,r0,rsa->e,rsa->n,ctx,rsa->_method_mod_n)) goto err;
888 if (!rsa->meth->bn_mod_exp(r0,I,d,rsa->n,ctx
    [all...]
  /external/openssl/ssl/
ssl_sess.c 795 const SSL_METHOD *meth; local
799 meth=s->ctx->method->get_ssl_method(session->ssl_version);
800 if (meth == NULL)
801 meth=s->method->get_ssl_method(session->ssl_version);
802 if (meth == NULL)
808 if (meth != s->method)
810 if (!SSL_set_ssl_method(s,meth))
842 meth=s->ctx->method;
843 if (meth != s->method)
845 if (!SSL_set_ssl_method(s,meth))
    [all...]
ssltest.c 522 const SSL_METHOD *meth=NULL; local
879 meth=SSLv2_method();
882 meth=TLSv1_method();
885 meth=SSLv3_method();
887 meth=SSLv23_method();
890 meth=SSLv3_method();
892 meth=SSLv2_method();
896 c_ctx=SSL_CTX_new(meth);
897 s_ctx=SSL_CTX_new(meth);
2537 const SSL_METHOD *meth; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_descr.py 63 def unop_test(self, a, res, expr="len(a)", meth="__len__"):
67 m = getattr(t, meth)
70 while meth not in t.__dict__:
74 self.assertEqual(getattr(m, 'im_func', m), t.__dict__[meth])
76 bm = getattr(a, meth)
79 def binop_test(self, a, b, res, expr="a+b", meth="__add__"):
83 if meth == "__div__" and 1/2 == 0.5:
84 meth = "__truediv__"
86 if meth == '__divmod__': pass
90 m = getattr(t, meth)
544 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.A
547 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.B
550 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.C
553 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.D
557 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.E
2376 def meth(self, a): member in class:.test_supers.A
2384 def meth(self, a): member in class:.test_supers.B
2390 def meth(self, a): member in class:.test_supers.C
2397 def meth(self, a): member in class:.test_supers.D
2409 def meth(self, a): member in class:.test_supers.E
2415 def meth(self, a): member in class:.test_supers.F
3930 def meth(self): member in class:.test_mutable_bases.C2
4652 def meth(self): member in class:DictProxyTests.setUp.C
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_descr.py 63 def unop_test(self, a, res, expr="len(a)", meth="__len__"):
67 m = getattr(t, meth)
70 while meth not in t.__dict__:
74 self.assertEqual(getattr(m, 'im_func', m), t.__dict__[meth])
76 bm = getattr(a, meth)
79 def binop_test(self, a, b, res, expr="a+b", meth="__add__"):
83 if meth == "__div__" and 1/2 == 0.5:
84 meth = "__truediv__"
86 if meth == '__divmod__': pass
90 m = getattr(t, meth)
544 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.A
547 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.B
550 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.C
553 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.D
557 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.E
2376 def meth(self, a): member in class:.test_supers.A
2384 def meth(self, a): member in class:.test_supers.B
2390 def meth(self, a): member in class:.test_supers.C
2397 def meth(self, a): member in class:.test_supers.D
2409 def meth(self, a): member in class:.test_supers.E
2415 def meth(self, a): member in class:.test_supers.F
3930 def meth(self): member in class:.test_mutable_bases.C2
4652 def meth(self): member in class:DictProxyTests.setUp.C
    [all...]
  /art/test/031-class-attributes/src/
ClassAttrs.java 123 Method meth; local
124 meth = MemberClass.class.getMethod("foo", (Class[]) null);
126 + getSignatureAttribute(meth));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
runpy.py 94 meth = getattr(loader, attr, None)
95 if meth is not None:
96 return meth(mod_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
runpy.py 94 meth = getattr(loader, attr, None)
95 if meth is not None:
96 return meth(mod_name)
  /dalvik/vm/analysis/
CodeVerify.h 318 UninitInstanceMap* dvmCreateUninitInstanceMap(const Method* meth,
327 * Verify bytecode in "meth". "insnFlags" should be populated with
  /dalvik/vm/interp/
Stack.h 218 Object* dvmInvokeMethod(Object* invokeObj, const Method* meth,
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 998 meths.put(meth.getRef().getNat(), meth); local
    [all...]
  /dalvik/vm/mterp/mips/
OP_INVOKE_STATIC.S 10 # op {vCCCC..v(CCCC+AA-1)}, meth /* BBBB */
OP_INVOKE_SUPER.S 10 # op vAA, {vCCCC..v(CCCC+AA-1)}, meth /* BBBB */
  /external/chromium/net/http/
disk_cache_based_ssl_host_info.cc 18 void (DiskCacheBasedSSLHostInfo::*meth)(int))
20 meth_(meth),
  /external/chromium_org/third_party/openssl/openssl/crypto/conf/
conf_api.c 173 if (conf->meth->is_number(conf, *str))
174 ret=ret*10+conf->meth->to_int(conf, *str);
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;
  /external/openssl/crypto/conf/
conf_api.c 173 if (conf->meth->is_number(conf, *str))
174 ret=ret*10+conf->meth->to_int(conf, *str);
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;
  /external/chromium_org/third_party/openssl/openssl/apps/
s_client.c 590 const SSL_METHOD *meth=NULL; local
631 meth=SSLv23_client_method();
778 meth=TLSv1_client_method();
784 meth=TLSv1_client_method();
791 meth=TLSv1_client_method();
796 meth=TLSv1_client_method();
801 meth=TLSv1_client_method();
806 meth=SSLv2_client_method();
810 meth=SSLv3_client_method();
814 meth=TLSv1_2_client_method()
    [all...]
  /external/openssl/apps/
s_client.c 591 const SSL_METHOD *meth=NULL; local
633 meth=SSLv23_client_method();
780 meth=TLSv1_client_method();
786 meth=TLSv1_client_method();
793 meth=TLSv1_client_method();
798 meth=TLSv1_client_method();
803 meth=TLSv1_client_method();
808 meth=SSLv2_client_method();
812 meth=SSLv3_client_method();
816 meth=TLSv1_2_client_method()
    [all...]

Completed in 2428 milliseconds

1 2 3 4 5 6 7 891011>>