HomeSort by relevance Sort by last modified time
    Searched refs:meth (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/openssl/crypto/rand/
rand_lib.c 73 int RAND_set_rand_method(const RAND_METHOD *meth)
82 default_RAND_meth = meth;
134 const RAND_METHOD *meth = RAND_get_rand_method(); local
135 if (meth && meth->cleanup)
136 meth->cleanup();
142 const RAND_METHOD *meth = RAND_get_rand_method(); local
143 if (meth && meth->seed)
144 meth->seed(buf,num)
149 const RAND_METHOD *meth = RAND_get_rand_method(); local
156 const RAND_METHOD *meth = RAND_get_rand_method(); local
164 const RAND_METHOD *meth = RAND_get_rand_method(); local
172 const RAND_METHOD *meth = RAND_get_rand_method(); local
    [all...]
  /dalvik/vm/analysis/
VerifySubs.cpp 29 bool dvmWantVerboseVerification(const Method* meth)
36 return (strcmp(meth->clazz->descriptor, cd) == 0 &&
37 dvmCompareNameDescriptorAndMethod(mn, sg, meth) == 0);
45 void dvmLogVerifyFailure(const Method* meth, const char* format, ...)
59 if (meth != NULL) {
60 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
62 meth->clazz->descriptor, meth->name, desc);
75 const Method* meth)
82 std::string dotFromClass = dvmHumanReadableDescriptor(meth->clazz->descriptor)
    [all...]
VerifySubs.h 43 bool dvmComputeCodeWidths(const Method* meth, InsnFlags* insnFlags,
47 bool dvmSetTryFlags(const Method* meth, InsnFlags* insnFlags);
54 void dvmLogVerifyFailure(const Method* meth, const char* format, ...)
62 const Method* meth);
65 bool dvmGetBranchOffset(const Method* meth, const InsnFlags* insnFlags,
72 bool dvmWantVerboseVerification(const Method* meth);
DexVerify.cpp 27 static bool verifyMethod(Method* meth);
85 const Method* meth = vdata->method; local
88 const u2* insns = meth->insns;
97 LOG_VFY_METH(meth, "VFY: invalid instruction (0x%04x)", *insns);
100 LOG_VFY_METH(meth,
115 LOG_VFY_METH(meth, "VFY: code did not end where expected (%d vs. %d)",
116 i, dvmGetMethodInsnsSize(meth));
137 static bool scanTryCatchBlocks(const Method* meth, InsnFlags* insnFlags)
139 u4 insnsSize = dvmGetMethodInsnsSize(meth);
140 const DexCode* pCode = dvmGetMethodCode(meth);
796 const Method* meth = vdata->method; local
    [all...]
  /dalvik/vm/native/
java_lang_reflect_Method.cpp 35 Method* meth; local
37 meth = dvmSlotToMethod(declaringClass, slot);
38 RETURN_INT(dvmFixMethodFlags(meth->accessFlags));
58 const Method* meth; local
65 meth = dvmSlotToMethod(declaringClass, slot);
66 assert(meth != NULL);
68 if (dvmIsStaticMethod(meth)) {
89 meth = dvmGetVirtualizedMethod(methObj->clazz, meth);
90 if (meth == NULL)
125 Method* meth; local
146 Method* meth = dvmSlotToMethod(clazz, slot); local
161 Method* meth = dvmSlotToMethod(clazz, slot); local
175 Method* meth; local
197 Method* meth; local
221 Method* meth; local
    [all...]
java_lang_reflect_Constructor.cpp 44 Method* meth; local
65 meth = dvmSlotToMethod(declaringClass, slot);
66 assert(meth != NULL);
68 (void) dvmInvokeMethod(newObj, meth, argList, params, NULL, noAccessCheck);
  /external/clang/test/Index/
annotate-macro-args.h 2 +(void)meth;
9 MACRO([MyClass meth]);
15 INVOKE(meth, MyClass);
get-cursor-macro-args.h 2 +(void)meth;
9 MACRO([MyClass meth]);
15 INVOKE(meth, MyClass);
  /external/openssl/crypto/comp/
comp_lib.c 7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
17 ret->meth=meth;
18 if ((ret->meth->init != NULL) && !ret->meth->init(ret))
31 if (ctx->meth->finish != NULL)
32 ctx->meth->finish(ctx);
41 if (ctx->meth->compress == NULL)
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
60 if (ctx->meth->expand == NULL
    [all...]
  /external/openssl/crypto/ec/
ec_lib.c 76 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
80 if (meth == NULL)
85 if (meth->group_init == 0)
98 ret->meth = meth;
113 if (!meth->group_init(ret))
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
148 if (group->meth->group_clear_finish != 0)
149 group->meth->group_clear_finish(group)
    [all...]
ec_cvt.c 78 const EC_METHOD *meth; local
81 meth = EC_GFp_nist_method();
83 ret = EC_GROUP_new(meth);
109 meth = EC_GFp_mont_method();
111 ret = EC_GROUP_new(meth);
128 const EC_METHOD *meth; local
131 meth = EC_GF2m_simple_method();
133 ret = EC_GROUP_new(meth);
ec2_mult.c 92 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
93 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
94 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
95 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
96 if (!group->meth->field_sqr(group, t1, t1, ctx)) goto err;
97 if (!group->meth->field_mul(group, t1, &group->b, t1, ctx)) goto err;
126 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err;
127 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err;
128 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err;
130 if (!group->meth->field_sqr(group, z1, z1, ctx)) goto err
    [all...]
  /external/openssl/crypto/dso/
dso_lib.c 71 void DSO_set_default_method(DSO_METHOD *meth)
73 default_DSO_meth = meth;
83 return(dso->meth);
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth)
89 mtmp = dso->meth;
90 dso->meth = meth;
94 DSO *DSO_new_method(DSO_METHOD *meth)
118 if(meth == NULL)
119 ret->meth = default_DSO_meth
463 DSO_METHOD *meth = default_DSO_meth; local
475 DSO_METHOD *meth = default_DSO_meth; local
    [all...]
  /dalvik/tests/032-concrete-sub/src/
ConcreteSub.java 41 Method meth; local
46 meth = absClass.getMethod("redefineMe", (Class[]) null);
51 System.out.println("meth modifiers=" + meth.getModifiers());
  /dalvik/tests/085-old-style-inner-class/src/
Main.java 37 private static String nameOf(Method meth) {
38 return (meth == null) ? "(null)" : meth.toString();
  /external/chromium/net/base/
completion_callback.h 22 CompletionCallbackImpl(T* obj, void (T::* meth)(int))
24 Tuple1<int> >::CallbackImpl(obj, meth) {
38 CancelableCompletionCallback(T* obj, void (T::* meth)(int))
39 : CompletionCallbackImpl<T>(obj, meth), is_canceled_(false) {
  /external/openssl/crypto/x509v3/
v3_int.c 77 static void * s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, char *value)
79 return s2i_ASN1_INTEGER(meth, value);
  /external/openssl/crypto/ecdh/
ech_lib.c 85 void ECDH_set_default_method(const ECDH_METHOD *meth)
87 default_ECDH_method = meth;
97 int ECDH_set_method(EC_KEY *eckey, const ECDH_METHOD *meth)
107 mtmp = ecdh->meth;
118 ecdh->meth = meth;
120 if (meth->init)
121 meth->init(eckey);
139 ret->meth = ECDH_get_default_method();
146 ret->meth = ENGINE_get_ECDH(ret->engine)
    [all...]
  /external/openssl/crypto/ecdsa/
ecs_lib.c 72 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
74 default_ECDSA_method = meth;
84 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
100 ecdsa->meth = meth;
118 ret->meth = ECDSA_get_default_method();
125 ret->meth = ENGINE_get_ECDSA(ret->engine);
126 if (!ret->meth)
136 ret->flags = ret->meth->flags;
139 if ((ret->meth->init != NULL) && !ret->meth->init(ret)
    [all...]
  /external/openssl/crypto/dh/
dh_lib.c 71 void DH_set_default_method(const DH_METHOD *meth)
73 default_DH_method = meth;
83 int DH_set_method(DH *dh, const DH_METHOD *meth)
88 mtmp = dh->meth;
97 dh->meth = meth;
98 if (meth->init) meth->init(dh);
118 ret->meth = DH_get_default_method();
134 ret->meth = ENGINE_get_DH(ret->engine)
    [all...]
  /external/openssl/crypto/dsa/
dsa_lib.c 77 void DSA_set_default_method(const DSA_METHOD *meth)
79 default_DSA_method = meth;
94 int DSA_set_method(DSA *dsa, const DSA_METHOD *meth)
99 mtmp = dsa->meth;
108 dsa->meth = meth;
109 if (meth->init) meth->init(dsa);
123 ret->meth = DSA_get_default_method();
139 ret->meth = ENGINE_get_DSA(ret->engine)
    [all...]
  /external/openssl/crypto/conf/
conf_lib.c 84 int CONF_set_default_method(CONF_METHOD *meth)
86 default_CONF_method = meth;
234 CONF *NCONF_new(CONF_METHOD *meth)
238 if (meth == NULL)
239 meth = NCONF_default();
241 ret = meth->create(meth);
255 conf->meth->destroy(conf);
262 conf->meth->destroy_data(conf);
273 return conf->meth->load(conf, file, eline)
    [all...]
  /external/openssl/crypto/rsa/
rsa_lib.c 81 void RSA_set_default_method(const RSA_METHOD *meth)
83 default_RSA_meth = meth;
106 return rsa->meth;
109 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth)
114 mtmp = rsa->meth;
123 rsa->meth = meth;
124 if (meth->init) meth->init(rsa);
139 ret->meth = RSA_get_default_method()
    [all...]
  /dalvik/vm/reflect/
Reflect.cpp 346 static int methodToSlot(const Method* meth)
348 ClassObject* clazz = meth->clazz;
351 if (dvmIsDirectMethod(meth)) {
352 slot = meth - clazz->directMethods;
356 slot = meth - clazz->virtualMethods;
380 * "meth" to construct it.
388 static Object* createConstructorObject(Method* meth)
412 cp = dvmCopyDescriptorStringFromMethod(meth, &mangle);
413 params = convertSignatureToClassArray(&cp, meth->clazz);
423 exceptions = dvmGetMethodThrows(meth);
471 Method* meth = &clazz->directMethods[i]; local
492 Method* meth = &clazz->directMethods[i]; local
623 Method* meth = clazz->virtualMethods; local
    [all...]
  /external/openssl/apps/
ciphers.c 94 const SSL_METHOD *meth=NULL; local
100 meth=SSLv23_server_method();
102 meth=SSLv3_server_method();
104 meth=SSLv2_server_method();
131 meth=SSLv2_client_method();
135 meth=SSLv3_client_method();
139 meth=TLSv1_client_method();
164 ctx=SSL_CTX_new(meth);

Completed in 2227 milliseconds

1 2 3 4 5 6 7