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

1 23 4 5 6 7 8 910

  /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 */
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/ui/
ui_lib.c 87 ret->meth=UI_get_default_method();
89 ret->meth=method;
416 if (ui->meth->ui_construct_prompt)
417 prompt = ui->meth->ui_construct_prompt(ui,
481 if (ui->meth->ui_write_string
482 && !ui->meth->ui_write_string(ui, &uis))
491 if (ui->meth->ui_open_session && !ui->meth->ui_open_session(ui))
501 if (ui->meth->ui_write_string
502 && !ui->meth->ui_write_string(ui
    [all...]
ui_locl.h 141 const UI_METHOD *meth; member in struct:ui_st
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 194 ConcreteMethod meth = local
198 ropDump(meth);
200 regularDump(meth);
207 * @param meth {@code non-null;} method data to dump
209 private void regularDump(ConcreteMethod meth) {
210 BytecodeArray code = meth.getCode();
212 ByteBlockList list = BasicBlocker.identifyBlocks(meth);
282 * @param meth {@code non-null;} method data to dump
284 private void ropDump(ConcreteMethod meth) {
286 BytecodeArray code = meth.getCode()
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/rsa/
rsa.c 83 rsa->meth = ENGINE_get_RSA_method(engine);
86 if (rsa->meth == NULL) {
87 rsa->meth = (RSA_METHOD*) &RSA_default_method;
89 METHOD_ref(rsa->meth);
92 rsa->flags = rsa->meth->flags;
95 METHOD_unref(rsa->meth);
100 if (rsa->meth->init && !rsa->meth->init(rsa)) {
102 METHOD_unref(rsa->meth);
121 if (rsa->meth->finish)
    [all...]
  /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/ecdsa/
ecs_sign.c 74 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
113 return ecdsa->meth->ecdsa_sign_setup(eckey, ctx_in, kinvp, rp, NULL, 0);
ecs_locl.h 100 const ECDSA_METHOD *meth; member in struct:ecdsa_data_st
  /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);
dso.h 185 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/smack/src/org/jivesoftware/smackx/workgroup/util/
ListenerEventDispatcher.java 112 protected TripletContainer (Object inst, Method meth, Object[] args) {
116 this.listenerMethod = meth;
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x_crl.c 229 crl->meth = default_crl_method;
288 if (crl->meth->crl_init)
290 if (crl->meth->crl_init(crl) == 0)
296 if (crl->meth->crl_free)
298 if (!crl->meth->crl_free(crl))
392 if (crl->meth->crl_verify)
393 return crl->meth->crl_verify(crl, r);
400 if (crl->meth->crl_lookup)
401 return crl->meth->crl_lookup(crl, ret, serial, NULL);
407 if (crl->meth->crl_lookup
    [all...]
  /external/openssl/crypto/asn1/
x_crl.c 224 crl->meth = default_crl_method;
285 if (crl->meth->crl_init)
287 if (crl->meth->crl_init(crl) == 0)
293 if (crl->meth->crl_free)
295 if (!crl->meth->crl_free(crl))
388 if (crl->meth->crl_verify)
389 return crl->meth->crl_verify(crl, r);
396 if (crl->meth->crl_lookup)
397 return crl->meth->crl_lookup(crl, ret, serial, NULL);
403 if (crl->meth->crl_lookup
    [all...]
  /external/openssl/crypto/
ex_data.c 240 STACK_OF(CRYPTO_EX_DATA_FUNCS) *meth;
293 sk_CRYPTO_EX_DATA_FUNCS_pop_free(item->meth, def_cleanup_util_cb);
313 gen->meth = sk_CRYPTO_EX_DATA_FUNCS_new_null();
314 if(!gen->meth)
351 while (sk_CRYPTO_EX_DATA_FUNCS_num(item->meth) <= item->meth_num)
353 if (!sk_CRYPTO_EX_DATA_FUNCS_push(item->meth, NULL))
361 (void)sk_CRYPTO_EX_DATA_FUNCS_set(item->meth, toret, a);
414 mx = sk_CRYPTO_EX_DATA_FUNCS_num(item->meth);
421 storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(item->meth,i);
458 mx = sk_CRYPTO_EX_DATA_FUNCS_num(item->meth);
    [all...]
  /art/test/046-reflect/src/
Main.java 34 void printMethodInfo(Method meth) {
38 System.out.println("Method name is " + meth.getName());
40 + meth.getDeclaringClass().getName());
41 params = meth.getParameterTypes();
44 exceptions = meth.getExceptionTypes();
47 System.out.println(" Return type is " + meth.getReturnType().getName());
49 + Integer.toHexString(meth.getModifiers()));
50 //System.out.println(" GenericStr is " + meth.toGenericString());
85 Method meth; local
87 meth = target.getMethod("publicMethod", (Class[]) null)
125 Method meth = null; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /art/test/068-classloader/src/
FancyLoader.java 111 Method meth; local
114 meth = mDexClass.getMethod("loadClass",
121 meth.invoke(mDexFile, name, this);
  /external/openssl/crypto/dh/
dh_gen.c 78 if (FIPS_mode() && !(ret->meth->flags & DH_FLAG_FIPS_METHOD)
85 if(ret->meth->generate_params)
86 return ret->meth->generate_params(ret, prime_len, generator, cb);
  /external/chromium_org/net/android/
legacy_openssl.h 48 const AndroidRSA_METHOD* meth; member in struct:net::android::AndroidRSA
  /external/clang/test/Index/
get-cursor.cpp 43 void meth() { function in struct:LocalS
  /external/openssl/crypto/dso/
dso.h 185 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);
  /art/test/086-null-super/src/
Main.java 83 Method meth = mDexClass. local
91 meth.invoke(mDexFile, name, this);
  /external/javassist/src/test/test/javassist/proxy/
ProxySimpleTest.java 52 Method meth = data2.getClass().getDeclaredMethod("writeReplace", new Class[0]); local
54 meth.invoke(data2, new Object[0]).getClass().getName());

Completed in 396 milliseconds

1 23 4 5 6 7 8 910