/dalvik/vm/mterp/c/ |
OP_INVOKE_DIRECT_EMPTY.c | 1 HANDLE_OPCODE(OP_INVOKE_DIRECT_EMPTY /*vB, {vD, vE, vF, vG, vA}, meth@CCCC*/)
|
/dalvik/vm/analysis/ |
VerifySubs.h | 41 bool dvmComputeCodeWidths(const Method* meth, InsnFlags* insnFlags, 45 bool dvmSetTryFlags(const Method* meth, InsnFlags* insnFlags); 48 bool dvmCheckSwitchTargets(const Method* meth, InsnFlags* insnFlags, 52 bool dvmCheckBranchTarget(const Method* meth, InsnFlags* insnFlags, 60 void dvmLogVerifyFailure(const Method* meth, const char* format, ...) 68 const Method* meth); 71 bool dvmGetBranchTarget(const Method* meth, InsnFlags* insnFlags,
|
CodeVerify.c | 72 static inline bool doVerboseLogging(const Method* meth) { 78 return (strcmp(meth->clazz->descriptor, cd) == 0 && 79 dvmCompareNameDescriptorAndMethod(mn, sg, meth) == 0); 117 static bool isInitMethod(const Method* meth); 123 static bool doCodeVerification(Method* meth, InsnFlags* insnFlags,\ 125 static bool verifyInstruction(Method* meth, InsnFlags* insnFlags,\ 129 static void dumpRegTypes(const Method* meth, const InsnFlags* insnFlags,\ 366 UninitInstanceMap* dvmCreateUninitInstanceMap(const Method* meth, 369 const int insnsSize = dvmGetMethodInsnsSize(meth); 370 const u2* insns = meth->insns [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/store/ |
str_lib.c | 122 ret->meth=method; 125 if (ret->meth->init && !ret->meth->init(ret)) 137 const STORE_METHOD *meth = 0; local 158 meth = ENGINE_get_STORE(e); 159 if(!meth) 169 ret = STORE_new_method(meth); 185 if (store->meth->clean) 186 store->meth->clean(store); 198 if (store->meth->ctrl [all...] |
/external/openssl/crypto/rsa/ |
rsa_eng.c | 81 void RSA_set_default_method(const RSA_METHOD *meth) 84 if (FIPS_mode() && !(meth->flags & RSA_FLAG_FIPS_METHOD)) 90 default_RSA_meth = meth; 113 return rsa->meth; 116 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) 122 if (FIPS_mode() && !(meth->flags & RSA_FLAG_FIPS_METHOD)) 128 mtmp = rsa->meth; 137 rsa->meth = meth; 138 if (meth->init) meth->init(rsa) [all...] |
/external/openssl/crypto/ec/ |
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...] |
ecp_smpl.c | 199 if (group->meth->field_encode) 200 { if (!group->meth->field_encode(group, &group->a, tmp_a, ctx)) goto err; } 206 if (group->meth->field_encode) 207 if (!group->meth->field_encode(group, &group->b, &group->b, ctx)) goto err; 235 if (group->meth->field_decode) 245 if (!group->meth->field_decode(group, a, &group->a, ctx)) goto err; 249 if (!group->meth->field_decode(group, b, &group->b, ctx)) goto err; 304 if (group->meth->field_decode) 306 if (!group->meth->field_decode(group, a, &group->a, ctx)) goto err; 307 if (!group->meth->field_decode(group, b, &group->b, ctx)) goto err [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);
|
/dalvik/vm/reflect/ |
Reflect.c | 467 static int methodToSlot(const Method* meth) 469 ClassObject* clazz = meth->clazz; 472 if (dvmIsDirectMethod(meth)) { 473 slot = meth - clazz->directMethods; 477 slot = meth - clazz->virtualMethods; 501 * "meth" to construct it. 509 static Object* createConstructorObject(Method* meth) 533 cp = dvmCopyDescriptorStringFromMethod(meth, &mangle); 534 params = convertSignatureToClassArray(&cp, meth->clazz); 544 exceptions = dvmGetMethodThrows(meth); 579 Method* meth; local 744 Method* meth; local [all...] |
/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; 119 ecdh->meth = meth; 121 if (meth->init) 122 meth->init(eckey); 140 ret->meth = ECDH_get_default_method(); 147 ret->meth = ENGINE_get_ECDH(ret->engine) [all...] |
/external/openssl/crypto/dsa/ |
dsa_lib.c | 77 void DSA_set_default_method(const DSA_METHOD *meth) 80 if (FIPS_mode() && !(meth->flags & DSA_FLAG_FIPS_METHOD)) 87 default_DSA_method = meth; 102 int DSA_set_method(DSA *dsa, const DSA_METHOD *meth) 108 if (FIPS_mode() && !(meth->flags & DSA_FLAG_FIPS_METHOD)) 114 mtmp = dsa->meth; 123 dsa->meth = meth; 124 if (meth->init) meth->init(dsa) [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
Dominators.java | 48 private final SsaMethod meth; field in class:Dominators 64 * @param meth {@code non-null;} method to process 68 private Dominators(SsaMethod meth, DomFront.DomInfo[] domInfos, 70 this.meth = meth; 73 this.blocks = meth.getBlocks(); 82 * @param meth {@code non-null;} method to process 86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, 88 Dominators result = new Dominators(meth, domInfos, postdom); 168 * @param meth {@code non-null;} method to analyz [all...] |
DomFront.java | 37 private final SsaMethod meth; field in class:DomFront 60 * @param meth {@code non-null;} method to process 62 public DomFront(SsaMethod meth) { 63 this.meth = meth; 64 nodes = meth.getBlocks(); 90 Dominators methDom = Dominators.make(meth, domInfos, false);
|
/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) 94 mtmp = ecdsa->meth; 102 ecdsa->meth = meth; 120 ret->meth = ECDSA_get_default_method(); 127 ret->meth = ENGINE_get_ECDSA(ret->engine); 128 if (!ret->meth) 138 ret->flags = ret->meth->flags [all...] |
/dalvik/tests/046-reflect/src/ |
Main.java | 11 void printMethodInfo(Method meth) { 15 System.out.println("Method name is " + meth.getName()); 17 + meth.getDeclaringClass().getName()); 18 params = meth.getParameterTypes(); 21 exceptions = meth.getExceptionTypes(); 24 System.out.println(" Return type is " + meth.getReturnType().getName()); 26 + Integer.toHexString(meth.getModifiers())); 27 //System.out.println(" GenericStr is " + meth.toGenericString()); 60 Method meth = null; local 65 meth = target.getMethod("myMethod", new Class[] { int.class }) [all...] |
/dalvik/vm/native/ |
java_security_AccessController.c | 78 const Method* meth = methods[idx]; local 81 if (dvmIsReflectionMethod(meth)) 84 if (dvmIsPrivilegedMethod(meth)) { 86 //LOGI("GSD priv frame at %s.%s\n", meth->clazz->name, meth->name); 90 meth = methods[idx]; 95 pd = dvmGetFieldObject((Object*) meth->clazz, 97 //LOGI("FOUND '%s' pd=%p\n", meth->clazz->name, pd);
|
/external/openssl/apps/ |
ciphers.c | 93 SSL_METHOD *meth=NULL; local 99 meth=SSLv23_server_method(); 101 meth=SSLv3_server_method(); 103 meth=SSLv2_server_method(); 126 meth=SSLv2_client_method(); 130 meth=SSLv3_client_method(); 134 meth=TLSv1_client_method(); 159 ctx=SSL_CTX_new(meth);
|
/external/openssl/crypto/comp/ |
comp.h | 32 COMP_METHOD *meth; member in struct:comp_ctx_st 42 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
|
/external/openssl/crypto/dso/ |
README | 17 (i) checks if we're win32 (if(strstr(dso->meth->name, "win32")....) 21 finish with (return dso->meth->dso_name_converter(dso,NULL)).
|
/external/openssl/include/openssl/ |
comp.h | 32 COMP_METHOD *meth; member in struct:comp_ctx_st 42 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
|
/external/openssl/crypto/conf/ |
conf_lib.c | 84 int CONF_set_default_method(CONF_METHOD *meth) 86 default_CONF_method = meth; 228 CONF *NCONF_new(CONF_METHOD *meth) 232 if (meth == NULL) 233 meth = NCONF_default(); 235 ret = meth->create(meth); 249 conf->meth->destroy(conf); 256 conf->meth->destroy_data(conf); 267 return conf->meth->load(conf, file, eline) [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 193 ConcreteMethod meth = new ConcreteMethod((Method) member, classFile, local 197 ropDump(meth); 199 regularDump(meth); 206 * @param meth {@code non-null;} method data to dump 208 private void regularDump(ConcreteMethod meth) { 209 BytecodeArray code = meth.getCode(); 211 ByteBlockList list = BasicBlocker.identifyBlocks(meth); 281 * @param meth {@code non-null;} method data to dump 283 private void ropDump(ConcreteMethod meth) { 284 BytecodeArray code = meth.getCode() [all...] |
/external/openssl/crypto/asn1/ |
a_hdr.c | 69 M_ASN1_I2D_len(a->data, a->meth->i2d); 74 M_ASN1_I2D_put(a->data, a->meth->i2d); 87 if (ret->meth != NULL) 89 M_ASN1_D2I_get_x(void,ret->data,ret->meth->d2i); 106 ret->meth=NULL; 116 if (a->meth != NULL) 117 a->meth->destroy(a->data);
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
MethodListParser.java | 80 StdMethod meth = local 83 methods.set(n, meth); 84 return meth;
|