Searched refs:meth (Results 51 - 75 of 153) sorted by relevance

1234567

/external/clang/test/Index/
H A Dget-cursor.cpp43 void meth() { function in struct:LocalS
/external/openssl/crypto/dso/
H A Ddso.h185 DSO_METHOD *meth; member in struct:dso_st
198 * be used in DSO_load() in place of meth->dso_name_converter. NB: This
202 * be used in DSO_load() in place of meth->dso_merger. NB: This
261 void DSO_set_default_method(DSO_METHOD *meth);
264 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth);
271 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags);
/external/openssl/crypto/ecdsa/
H A Decs_locl.h100 const ECDSA_METHOD *meth; member in struct:ecdsa_data_st
H A Decdsa.h148 * \param meth new default ECDSA_METHOD
150 void ECDSA_set_default_method(const ECDSA_METHOD *meth);
159 * \param meth new method
162 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
/external/openssl/crypto/ui/
H A Dui_locl.h141 const UI_METHOD *meth; member in struct:ui_st
/external/openssl/include/openssl/
H A Ddso.h185 DSO_METHOD *meth; member in struct:dso_st
198 * be used in DSO_load() in place of meth->dso_name_converter. NB: This
202 * be used in DSO_load() in place of meth->dso_merger. NB: This
261 void DSO_set_default_method(DSO_METHOD *meth);
264 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth);
271 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags);
H A Decdsa.h148 * \param meth new default ECDSA_METHOD
150 void ECDSA_set_default_method(const ECDSA_METHOD *meth);
159 * \param meth new method
162 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
H A Ddh.h153 const DH_METHOD *meth; member in struct:dh_st
186 void DH_set_default_method(const DH_METHOD *meth);
188 int DH_set_method(DH *dh, const DH_METHOD *meth);
H A Dconf.h91 CONF *(*create)(CONF_METHOD *meth);
121 int CONF_set_default_method(CONF_METHOD *meth);
148 CONF_METHOD *meth; member in struct:conf_st
153 CONF *NCONF_new(CONF_METHOD *meth);
H A Drand.h95 int RAND_set_rand_method(const RAND_METHOD *meth);
/external/javassist/src/test/test/javassist/proxy/
H A DProxySimpleTest.java52 Method meth = data2.getClass().getDeclaredMethod("writeReplace", new Class[0]);
54 meth.invoke(data2, new Object[0]).getClass().getName());
/external/openssl/crypto/ec/
H A Decp_oct.c103 if (group->meth->field_decode == 0)
106 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) goto err;
107 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) goto err;
124 if (group->meth->field_decode)
126 if (!group->meth->field_decode(group, tmp2, &group->a, ctx)) goto err;
132 if (!group->meth->field_mul(group, tmp2, &group->a, x, ctx)) goto err;
139 if (group->meth->field_decode)
141 if (!group->meth->field_decode(group, tmp2, &group->b, ctx)) goto err;
H A Dec2_oct.c124 if (!group->meth->field_sqr(group, tmp, x, ctx)) goto err;
125 if (!group->meth->field_div(group, tmp, &group->b, tmp, ctx)) goto err;
142 if (!group->meth->field_mul(group, y, x, z, ctx)) goto err;
230 if (!group->meth->field_div(group, yxi, y, x, ctx)) goto err;
382 if (!group->meth->field_div(group, yxi, y, x, ctx)) goto err;
/external/openssl/crypto/dh/
H A Ddh_key.c77 if (FIPS_mode() && !(dh->meth->flags & DH_FLAG_FIPS_METHOD)
84 return dh->meth->generate_key(dh);
90 if (FIPS_mode() && !(dh->meth->flags & DH_FLAG_FIPS_METHOD)
97 return dh->meth->compute_key(key, pub_key, dh);
187 if (!dh->meth->bn_mod_exp(dh, pub_key, dh->g, prk, dh->p, ctx, mont)) goto err;
247 if (!dh->meth->bn_mod_exp(dh, tmp, pub_key, dh->priv_key,dh->p,ctx,mont))
H A Ddh.h153 const DH_METHOD *meth; member in struct:dh_st
186 void DH_set_default_method(const DH_METHOD *meth);
188 int DH_set_method(DH *dh, const DH_METHOD *meth);
/external/openssl/crypto/rsa/
H A Drsa_sign.c81 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
88 if((rsa->flags & RSA_FLAG_SIGN_VER) && rsa->meth->rsa_sign)
90 return rsa->meth->rsa_sign(type, m, m_len,
184 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
330 if((rsa->flags & RSA_FLAG_SIGN_VER) && rsa->meth->rsa_verify)
332 return rsa->meth->rsa_verify(dtype, m, m_len,
/external/jdiff/src/jdiff/
H A DHTMLIndexes.java662 MethodAPI meth = (MethodAPI)(iterMeth.next());
663 methNames.add(new Index(meth.name_, 0, pkgName, className, meth.getSignature()));
667 MethodAPI meth = (MethodAPI)(iterMeth.next());
668 Index idx = new Index(meth.name_, 1, pkgName, className, meth.getSignature());
669 idx.doc_ = meth.doc_; // Used for checking @since
674 MemberDiff meth = (MemberDiff)(iterMeth.next());
675 methNames.add(new Index(meth.name_, 2, pkgName, className, meth
687 emitMethodIndexEntry(Index meth, char oldsw, int multipleMarker) argument
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java910 Method meth = (Method)e.getValue();
911 int mod = meth.getModifiers();
913 override(className, meth, prefix, index,
922 private void override(String thisClassname, Method meth, String prefix, argument
926 Class declClass = meth.getDeclaringClass();
927 String delegatorName = prefix + index + meth.getName();
928 if (Modifier.isAbstract(meth.getModifiers()))
932 = makeDelegator(meth, desc, cp, declClass, delegatorName);
939 = makeForwarder(thisClassname, meth, desc, cp, declClass,
990 private static boolean isVisible(int mod, String from, Member meth) { argument
1095 makeDelegator(Method meth, String desc, ConstPool cp, Class declClass, String delegatorName) argument
1118 makeForwarder(String thisClassName, Method meth, String desc, ConstPool cp, Class declClass, String delegatorName, int index) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DCythonFunction.c562 PyCFunction meth = PyCFunction_GET_FUNCTION(func); local
569 return (*meth)(self, arg);
572 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw);
577 return (*meth)(self, NULL);
588 return (*meth)(self, PyTuple_GET_ITEM(arg, 0));
803 __pyx_FusedFunctionObject *func, *meth; local
816 meth = (__pyx_FusedFunctionObject *) __pyx_FusedFunction_NewEx(
824 if (!meth)
828 meth->func.func_classobj = func->func.func_classobj;
831 meth
[all...]
/external/openssl/crypto/conf/
H A Dconf.h91 CONF *(*create)(CONF_METHOD *meth);
121 int CONF_set_default_method(CONF_METHOD *meth);
148 CONF_METHOD *meth; member in struct:conf_st
153 CONF *NCONF_new(CONF_METHOD *meth);
/external/openssl/crypto/rand/
H A Drand.h95 int RAND_set_rand_method(const RAND_METHOD *meth);
/external/chromium_org/third_party/webrtc/base/
H A Dopenssladapter.cc675 const X509V3_EXT_METHOD* meth = X509V3_EXT_get(extension); local
676 if (!meth)
689 if (meth->it) {
692 ASN1_ITEM_ptr(meth->it));
694 ext_str = meth->d2i(NULL, ext_value_data_ptr, extension->value->length);
697 STACK_OF(CONF_VALUE)* value = meth->i2v(meth, ext_str, NULL);
712 if (meth->it) {
714 ASN1_ITEM_ptr(meth->it));
716 meth
[all...]
/external/openssl/crypto/dsa/
H A Ddsa_ossl.c97 * if (!dsa->meth->bn_mod_exp(dsa, r,dsa->g,&k,dsa->p,ctx,
109 if((dsa)->meth->dsa_mod_exp) \
110 _tmp_res53 = (dsa)->meth->dsa_mod_exp((dsa), (rr), (a1), (p1), \
120 if((dsa)->meth->bn_mod_exp) \
121 _tmp_res53 = (dsa)->meth->bn_mod_exp((dsa), (r), (a), (p), \
159 if (!dsa->meth->dsa_sign_setup(dsa,ctx,&kinv,&r,dgst,dlen))
/external/openssl/crypto/engine/
H A Deng_cryptodev.c1052 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); local
1054 ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont);
1057 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); local
1059 ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont);
1107 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); local
1109 ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx);
1112 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); local
1114 ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx);
1160 if (!dsa->meth->bn_mod_exp(dsa,t1,dsa->g,u1,dsa->p,ctx,mont))
1164 if (!dsa->meth
1214 const DSA_METHOD *meth = DSA_OpenSSL(); local
1256 const DSA_METHOD *meth = DSA_OpenSSL(); local
1295 const DH_METHOD *meth = DH_OpenSSL(); local
1319 const DH_METHOD *meth = DH_OpenSSL(); local
1418 const DSA_METHOD *meth = DSA_OpenSSL(); local
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRops.java1208 Prototype meth = cstMeth.getPrototype();
1210 meth = meth.withFirstParameter(definer.getClassType());
1211 return opInvokeVirtual(meth);
1215 Prototype meth = cstMeth.getPrototype();
1217 meth = meth.withFirstParameter(definer.getClassType());
1218 return opInvokeSuper(meth);
1222 Prototype meth = cstMeth.getPrototype();
1224 meth
1983 opInvokeStatic(Prototype meth) argument
1997 opInvokeVirtual(Prototype meth) argument
2011 opInvokeSuper(Prototype meth) argument
2025 opInvokeDirect(Prototype meth) argument
2039 opInvokeInterface(Prototype meth) argument
[all...]

Completed in 1867 milliseconds

1234567