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

1 23 4 5 6 7 8 91011>>

  /dalvik/vm/reflect/
Reflect.cpp 347 static int methodToSlot(const Method* meth)
349 ClassObject* clazz = meth->clazz;
352 if (dvmIsDirectMethod(meth)) {
353 slot = meth - clazz->directMethods;
357 slot = meth - clazz->virtualMethods;
381 * "meth" to construct it.
389 static Object* createConstructorObject(Method* meth)
413 cp = dvmCopyDescriptorStringFromMethod(meth, &mangle);
414 params = convertSignatureToClassArray(&cp, meth->clazz);
424 exceptions = dvmGetMethodThrows(meth);
473 Method* meth = &clazz->directMethods[i]; local
494 Method* meth = &clazz->directMethods[i]; local
626 Method* meth = clazz->virtualMethods; local
    [all...]
  /external/chromium_org/third_party/openssl/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);
  /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);
  /art/test/087-gc-after-link/src/
Main.java 86 Method meth = dexClass.getMethod("loadClass", local
93 meth.invoke(dexFile, name, this);
97 Method meth = dexClass.getMethod("close", (Class[]) null); local
98 meth.invoke(dexFile);
  /dalvik/tests/087-gc-after-link/src/
Main.java 86 Method meth = dexClass.getMethod("loadClass", local
93 meth.invoke(dexFile, name, this);
97 Method meth = dexClass.getMethod("close", (Class[]) null); local
98 meth.invoke(dexFile);
  /dalvik/dx/src/com/android/dx/cf/direct/
MethodListParser.java 80 StdMethod meth = local
83 methods.set(n, meth);
84 return meth;
  /external/nist-sip/java/gov/nist/javax/sip/header/
CSeq.java 156 public void setMethod(String meth) throws ParseException {
157 if (meth == null)
160 + ", setMethod(), the meth parameter is null");
161 this.method = SIPRequest.getCannonicalName(meth);
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdsa/
ecs_lib.c 75 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
77 default_ECDSA_method = meth;
96 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
112 ecdsa->meth = meth;
130 ret->meth = ECDSA_get_default_method();
137 ret->meth = ENGINE_get_ECDSA(ret->engine);
138 if (!ret->meth)
148 ret->flags = ret->meth->flags;
151 if ((ret->meth->init != NULL) && !ret->meth->init(ret)
    [all...]
ecs_vrf.c 75 return ecdsa->meth->ecdsa_do_verify(dgst, dgst_len, sig, eckey);
  /external/openssl/crypto/ecdsa/
ecs_lib.c 75 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
77 default_ECDSA_method = meth;
96 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
112 ecdsa->meth = meth;
130 ret->meth = ECDSA_get_default_method();
137 ret->meth = ENGINE_get_ECDSA(ret->engine);
138 if (!ret->meth)
148 ret->flags = ret->meth->flags;
151 if ((ret->meth->init != NULL) && !ret->meth->init(ret)
    [all...]
  /art/test/046-reflect/src/
Main.java 32 void printMethodInfo(Method meth) {
36 System.out.println("Method name is " + meth.getName());
38 + meth.getDeclaringClass().getName());
39 params = meth.getParameterTypes();
42 exceptions = meth.getExceptionTypes();
45 System.out.println(" Return type is " + meth.getReturnType().getName());
47 + Integer.toHexString(meth.getModifiers()));
48 //System.out.println(" GenericStr is " + meth.toGenericString());
83 Method meth; local
85 meth = target.getMethod("publicMethod", (Class[]) null)
123 Method meth = null; local
    [all...]
  /dalvik/tests/046-reflect/src/
Main.java 18 void printMethodInfo(Method meth) {
22 System.out.println("Method name is " + meth.getName());
24 + meth.getDeclaringClass().getName());
25 params = meth.getParameterTypes();
28 exceptions = meth.getExceptionTypes();
31 System.out.println(" Return type is " + meth.getReturnType().getName());
33 + Integer.toHexString(meth.getModifiers()));
34 //System.out.println(" GenericStr is " + meth.toGenericString());
69 Method meth; local
71 meth = target.getMethod("publicMethod", (Class[]) null)
109 Method meth = null; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ecp_smpl.c 206 if (group->meth->field_encode)
207 { if (!group->meth->field_encode(group, &group->a, tmp_a, ctx)) goto err; }
213 if (group->meth->field_encode)
214 if (!group->meth->field_encode(group, &group->b, &group->b, ctx)) goto err;
242 if (group->meth->field_decode)
252 if (!group->meth->field_decode(group, a, &group->a, ctx)) goto err;
256 if (!group->meth->field_decode(group, b, &group->b, ctx)) goto err;
311 if (group->meth->field_decode)
313 if (!group->meth->field_decode(group, a, &group->a, ctx)) goto err;
314 if (!group->meth->field_decode(group, b, &group->b, ctx)) goto err
    [all...]
  /external/openssl/crypto/ec/
ecp_smpl.c 206 if (group->meth->field_encode)
207 { if (!group->meth->field_encode(group, &group->a, tmp_a, ctx)) goto err; }
213 if (group->meth->field_encode)
214 if (!group->meth->field_encode(group, &group->b, &group->b, ctx)) goto err;
242 if (group->meth->field_decode)
252 if (!group->meth->field_decode(group, a, &group->a, ctx)) goto err;
256 if (!group->meth->field_decode(group, b, &group->b, ctx)) goto err;
311 if (group->meth->field_decode)
313 if (!group->meth->field_decode(group, a, &group->a, ctx)) goto err;
314 if (!group->meth->field_decode(group, b, &group->b, ctx)) goto err
    [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 33 private final SsaMethod meth; field in class:DomFront
56 * @param meth {@code non-null;} method to process
58 public DomFront(SsaMethod meth) {
59 this.meth = meth;
60 nodes = meth.getBlocks();
86 Dominators methDom = Dominators.make(meth, domInfos, false);
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_crpt.c 79 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
86 return(rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding));
93 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
100 return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding));
107 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
114 return(rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding));
121 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
128 return(rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding));
133 return((r == NULL)?0:r->meth->flags);
242 rsa->meth->bn_mod_exp, rsa->_method_mod_n)
    [all...]
  /external/dexmaker/src/dx/java/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/rsa/
rsa_crpt.c 79 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
86 return(rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding));
93 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
100 return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding));
107 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
114 return(rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding));
121 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
128 return(rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding));
133 return((r == NULL)?0:r->meth->flags);
242 rsa->meth->bn_mod_exp, rsa->_method_mod_n)
    [all...]
  /dalvik/vm/analysis/
VfyBasicBlock.cpp 162 const Method* meth = vdata->method; local
178 gotBranch = dvmGetBranchOffset(meth, insnFlags, curIdx,
189 const u2* curInsn = &meth->insns[curIdx];
207 if (dexOpcodeFromCodeUnit(meth->insns[curIdx]) == OP_PACKED_SWITCH) {
210 assert(dexOpcodeFromCodeUnit(meth->insns[curIdx]) ==
232 meth->clazz->descriptor, meth->name, meth->shorty);
298 const Method* meth = vdata->method; local
300 const DexCode* pCode = dvmGetMethodCode(meth);
    [all...]
Optimize.h 31 void dvmUpdateCodeUnit(const Method* meth, u2* ptr, u2 newVal);
  /external/chromium_org/third_party/openssl/openssl/crypto/dsa/
dsa_key.c 76 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
83 if(dsa->meth->dsa_keygen)
84 return dsa->meth->dsa_keygen(dsa);
  /external/openssl/crypto/dsa/
dsa_key.c 76 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
83 if(dsa->meth->dsa_keygen)
84 return dsa->meth->dsa_keygen(dsa);
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
ech_locl.h 92 const ECDH_METHOD *meth; member in struct:ecdh_data_st

Completed in 842 milliseconds

1 23 4 5 6 7 8 91011>>