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

1 2 3 45 6 7 8 9

  /dalvik/tests/044-proxy/src/
BasicTest.java 74 Method meth = methods[methods.length -1]; local
75 System.out.println("Decl annos: " + Arrays.deepToString(meth.getDeclaredAnnotations()));
76 Annotation[][] paramAnnos = meth.getParameterAnnotations();
  /dalvik/tests/074-gc-thrash/src/
Main.java 79 Method meth; local
81 meth = vmdClass.getMethod("dumpHprofData",
88 return meth;
  /dalvik/vm/analysis/
CodeVerify.h 228 UninitInstanceMap* dvmCreateUninitInstanceMap(const Method* meth,
259 * Verify bytecode in "meth". "insnFlags" should be populated with
262 bool dvmVerifyCodeFlow(Method* meth, InsnFlags* insnFlags,
  /external/openssl/crypto/dh/
dh.h 140 const DH_METHOD *meth; member in struct:dh_st
177 void DH_set_default_method(const DH_METHOD *meth);
179 int DH_set_method(DH *dh, const DH_METHOD *meth);
  /external/openssl/include/openssl/
dh.h 140 const DH_METHOD *meth; member in struct:dh_st
177 void DH_set_default_method(const DH_METHOD *meth);
179 int DH_set_method(DH *dh, const DH_METHOD *meth);
ecdsa.h 155 * \param meth the new default ECDSA_METHOD
157 void ECDSA_set_default_method(const ECDSA_METHOD *meth);
168 * \param meth pointer to the new method
171 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
rand.h 95 int RAND_set_rand_method(const RAND_METHOD *meth);
118 int (*set_rand_func)(const RAND_METHOD *meth,
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_SUPER.S 10 /* op vAA, {vCCCC..v(CCCC+AA-1)}, meth@BBBB */
  /dalvik/vm/mterp/x86/
OP_INVOKE_DIRECT.S 15 /* op {vCCCC..v(CCCC+AA-1)}, meth@BBBB */
OP_INVOKE_SUPER.S 10 /* op vAA, {vCCCC..v(CCCC+AA-1)}, meth@BBBB */
OP_INVOKE_VIRTUAL.S 12 /* op vAA, {vCCCC..v(CCCC+AA-1)}, meth@BBBB */
  /external/openssl/crypto/ecdsa/
ecdsa.h 155 * \param meth the new default ECDSA_METHOD
157 void ECDSA_set_default_method(const ECDSA_METHOD *meth);
168 * \param meth pointer to the new method
171 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
ecs_sign.c 73 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
105 return ecdsa->meth->ecdsa_sign_setup(eckey, ctx_in, kinvp, rp);
  /dalvik/vm/
CheckJni.c 268 const Method* meth = dvmGetCurrentJNIMethod(); \
269 classDescriptor = meth->clazz->descriptor; \
270 methodName = meth->name; \
283 static void showLocation(const Method* meth, const char* func)
285 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
287 meth->clazz->descriptor, meth->name, desc, func + 6);
777 const Method* meth = (const Method*) methodID; local
780 if (expectedSigByte != meth->shorty[0]) {
783 } else if (isStatic && !dvmIsStaticMethod(meth)) {
879 const Method* meth = (const Method*) methodID; local
919 const Method* meth = (const Method*) methodID; local
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_DIRECT.S 32 * Syntax: [B=5] op {vD, vE, vF, vG, vA}, meth@CCCC (35c)
40 * op {vCCCC .. vNNNN}, meth@BBBB (3rc) (where NNNN = CCCC+AA-1, that
OP_INVOKE_SUPER.S 30 * Syntax: [B=5] op {vD, vE, vF, vG, vA}, meth@CCCC (35c)
38 * op {vCCCC .. vNNNN}, meth@BBBB (3rc) (where NNNN = CCCC+AA-1, that
OP_INVOKE_VIRTUAL.S 31 * Syntax: [B=5] op {vD, vE, vF, vG, vA}, meth@CCCC (35c)
39 * op {vCCCC .. vNNNN}, meth@BBBB (3rc) (where NNNN = CCCC+AA-1, that
  /external/openssl/crypto/asn1/
x_x509.c 139 static ASN1_METHOD meth=
149 return(&meth);
  /external/openssl/crypto/dsa/
dsa_key.c 73 if(dsa->meth->dsa_keygen)
74 return dsa->meth->dsa_keygen(dsa);
dsa_ossl.c 96 * if (!dsa->meth->bn_mod_exp(dsa, r,dsa->g,&k,dsa->p,ctx,
108 if((dsa)->meth->dsa_mod_exp) \
109 _tmp_res53 = (dsa)->meth->dsa_mod_exp((dsa), (rr), (a1), (p1), \
119 if((dsa)->meth->bn_mod_exp) \
120 _tmp_res53 = (dsa)->meth->bn_mod_exp((dsa), (r), (a), (p), \
  /external/openssl/crypto/rand/
rand.h 95 int RAND_set_rand_method(const RAND_METHOD *meth);
118 int (*set_rand_func)(const RAND_METHOD *meth,
rand_eng.c 78 int eng_RAND_set_rand_method(const RAND_METHOD *meth, const RAND_METHOD **pmeth)
85 *pmeth = meth;
  /external/openssl/crypto/store/
str_locl.h 113 const STORE_METHOD *meth; member in struct:store_st
114 /* functional reference if 'meth' is ENGINE-provided */
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 1208 Prototype meth = cstMeth.getPrototype(); local
1215 Prototype meth = cstMeth.getPrototype(); local
1222 Prototype meth = cstMeth.getPrototype(); local
1229 Prototype meth = cstMeth.getPrototype(); local
    [all...]
  /dalvik/vm/oo/
Object.h 480 * hit (e.g. "meth->insns" becomes "baseAddr + meth->insnsOffset") we
628 * Find the implementation of "meth" in "clazz".
633 const Method* meth);
638 const char* dvmGetMethodSourceFile(const Method* meth);
895 INLINE const DexCode* dvmGetMethodCode(const Method* meth) {
896 if (dvmIsBytecodeMethod(meth)) {
903 (((const u1*) meth->insns) - offsetof(DexCode, insns));
913 INLINE u4 dvmGetMethodInsnsSize(const Method* meth) {
914 const DexCode* pCode = dvmGetMethodCode(meth);
    [all...]

Completed in 5649 milliseconds

1 2 3 45 6 7 8 9