HomeSort by relevance Sort by last modified time
    Searched refs:ctx (Results 251 - 275 of 795) sorted by null

<<11121314151617181920>>

  /external/elfutils/libasm/
asm_newscn.c 116 result->data.main.strent = ebl_strtabadd (result->ctx->section_strtab,
121 result->data.main.scn = scn = elf_newscn (result->ctx->out.elf);
145 asm_newscn (ctx, scnname, type, flags)
146 AsmCtx_t *ctx;
156 if (ctx == NULL)
172 rwlock_wrlock (ctx->lock);
182 result->ctx = ctx;
185 result = (unlikely (ctx->textp)
193 result->allnext = ctx->section_list
    [all...]
libasm.h 50 extern int asm_abort (AsmCtx_t *ctx);
53 extern int asm_end (AsmCtx_t *ctx);
58 extern AsmScn_t *asm_newscn (AsmCtx_t *ctx, const char *scnname,
63 extern AsmScn_t *asm_newscn_ingrp (AsmCtx_t *ctx, const char *scnname,
73 extern AsmScnGrp_t *asm_newscngrp (AsmCtx_t *ctx, const char *grpname,
121 extern AsmSym_t *asm_newcomsym (AsmCtx_t *ctx, const char *name,
125 extern AsmSym_t *asm_newabssym (AsmCtx_t *ctx, const char *name,
138 extern Elf *asm_getelf (AsmCtx_t *ctx);
  /external/openssl/crypto/evp/
evp.h 233 int (*init)(EVP_MD_CTX *ctx);
234 int (*update)(EVP_MD_CTX *ctx,const void *data,size_t count);
235 int (*final)(EVP_MD_CTX *ctx,unsigned char *md);
237 int (*cleanup)(EVP_MD_CTX *ctx);
247 int ctx_size; /* how big does the ctx->md_data need to be */
318 #define EVP_MD_CTX_FLAG_REUSE 0x0004 /* Don't free up ctx->md_data
327 #define M_EVP_MD_CTX_FLAG_PSS_SALT(ctx) \
328 ((ctx->flags>>16) &0xFFFF) /* seed length */
339 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
341 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out
    [all...]
  /external/openssl/include/openssl/
evp.h 233 int (*init)(EVP_MD_CTX *ctx);
234 int (*update)(EVP_MD_CTX *ctx,const void *data,size_t count);
235 int (*final)(EVP_MD_CTX *ctx,unsigned char *md);
237 int (*cleanup)(EVP_MD_CTX *ctx);
247 int ctx_size; /* how big does the ctx->md_data need to be */
318 #define EVP_MD_CTX_FLAG_REUSE 0x0004 /* Don't free up ctx->md_data
327 #define M_EVP_MD_CTX_FLAG_PSS_SALT(ctx) \
328 ((ctx->flags>>16) &0xFFFF) /* seed length */
339 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
341 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out
    [all...]
bn.h 406 void BN_CTX_start(BN_CTX *ctx);
407 BIGNUM *BN_CTX_get(BN_CTX *ctx);
408 void BN_CTX_end(BN_CTX *ctx);
428 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
429 int BN_sqr(BIGNUM *r, const BIGNUM *a,BN_CTX *ctx);
442 BN_CTX *ctx);
443 #define BN_mod(rem,m,d,ctx) BN_div(NULL,(rem),(m),(d),(ctx))
444 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx);
445 int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx);
    [all...]
  /external/webkit/JavaScriptCore/API/
JSBase.h 91 @param ctx The execution context to use.
99 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
104 @param ctx The execution context to use.
111 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
116 @param ctx The execution context to use.
126 JS_EXPORT void JSGarbageCollect(JSContextRef ctx);
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_server.h 38 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
55 void radius_server_eap_pending_cb(struct radius_server_data *data, void *ctx);
76 radius_server_eap_pending_cb(struct radius_server_data *data, void *ctx)
  /external/openssl/crypto/bn/
bn_kron.c 63 int BN_kronecker(const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
80 BN_CTX_start(ctx);
81 A = BN_CTX_get(ctx);
82 B = BN_CTX_get(ctx);
173 err = !BN_nnmod(B, B, A, ctx);
179 BN_CTX_end(ctx);
bntest.c 97 int test_lshift(BIO *bp,BN_CTX *ctx,BIGNUM *a_);
99 int test_rshift(BIO *bp,BN_CTX *ctx);
100 int test_div(BIO *bp,BN_CTX *ctx);
102 int test_div_recp(BIO *bp,BN_CTX *ctx);
104 int test_sqr(BIO *bp,BN_CTX *ctx);
105 int test_mont(BIO *bp,BN_CTX *ctx);
106 int test_mod(BIO *bp,BN_CTX *ctx);
107 int test_mod_mul(BIO *bp,BN_CTX *ctx);
108 int test_mod_exp(BIO *bp,BN_CTX *ctx);
109 int test_mod_exp_mont_consttime(BIO *bp,BN_CTX *ctx);
140 BN_CTX *ctx; local
625 BN_CTX *ctx; local
    [all...]
bn.h 406 void BN_CTX_start(BN_CTX *ctx);
407 BIGNUM *BN_CTX_get(BN_CTX *ctx);
408 void BN_CTX_end(BN_CTX *ctx);
428 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
429 int BN_sqr(BIGNUM *r, const BIGNUM *a,BN_CTX *ctx);
442 BN_CTX *ctx);
443 #define BN_mod(rem,m,d,ctx) BN_div(NULL,(rem),(m),(d),(ctx))
444 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx);
445 int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx);
    [all...]
  /external/openssl/crypto/ecdh/
ecdhtest.c 123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
159 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err;
164 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err;
184 EC_KEY_get0_public_key(b), x_b, y_b, ctx)) goto err;
189 EC_KEY_get0_public_key(b), x_b, y_b, ctx)) goto err;
301 BN_CTX *ctx=NULL; local
319 if ((ctx=BN_CTX_new()) == NULL) goto err;
322 if (!test_ecdh_curve(NID_X9_62_prime192v1, "NIST Prime-Curve P-192", ctx, out)) goto err;
323 if (!test_ecdh_curve(NID_secp224r1, "NIST Prime-Curve P-224", ctx, out)) goto err;
324 if (!test_ecdh_curve(NID_X9_62_prime256v1, "NIST Prime-Curve P-256", ctx, out)) goto err
    [all...]
  /external/clearsilver/util/
skiplist.h 43 typedef void (*skipFreeValue)(void *value, void *ctx);
46 int flushLimit, skipFreeValue freeValue, void *ctx);
63 * ctx - context to pass to <freeValue>.
  /external/emma/core/java12/com/vladium/emma/report/
AllItem.java 30 public void accept (final IItemVisitor visitor, final Object ctx)
32 visitor.visit (this, ctx);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
BridgeAttribute_info.java 40 public void accept (final IAttributeVisitor visitor, final Object ctx)
42 visitor.visit (this, ctx);
SyntheticAttribute_info.java 57 public void accept (final IAttributeVisitor visitor, final Object ctx)
59 visitor.visit (this, ctx);
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_String_info.java 51 public Object accept (final ICONSTANTVisitor visitor, final Object ctx)
53 return visitor.visit (this, ctx);
  /external/libxml2/
libxml.h 66 void __xmlLoaderErr(void *ctx, const char *msg, const char *filename);
72 void __htmlParseContent(void *ctx);
  /external/webkit/WebCore/html/canvas/
WebGLBuffer.cpp 35 PassRefPtr<WebGLBuffer> WebGLBuffer::create(WebGLRenderingContext* ctx)
37 return adoptRef(new WebGLBuffer(ctx));
40 PassRefPtr<WebGLBuffer> WebGLBuffer::create(WebGLRenderingContext* ctx, Platform3DObject obj)
42 return adoptRef(new WebGLBuffer(ctx, obj));
45 WebGLBuffer::WebGLBuffer(WebGLRenderingContext* ctx)
46 : CanvasObject(ctx)
55 WebGLBuffer::WebGLBuffer(WebGLRenderingContext* ctx, Platform3DObject obj)
56 : CanvasObject(ctx)
  /external/wpa_supplicant/
md4.c 33 static void MD4Init(MD4_CTX *ctx);
34 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len);
35 static void MD4Final(unsigned char digest[MD4_DIGEST_LENGTH], MD4_CTX *ctx);
40 MD4_CTX ctx; local
43 MD4Init(&ctx);
45 MD4Update(&ctx, addr[i], len[i]);
46 MD4Final(mac, &ctx);
103 static void MD4Init(MD4_CTX *ctx)
105 ctx->count = 0;
106 ctx->state[0] = 0x67452301
    [all...]
md5.c 139 MD5_CTX ctx; local
142 MD5Init(&ctx);
144 MD5Update(&ctx, addr[i], len[i]);
145 MD5Final(mac, &ctx);
189 void MD5Init(struct MD5Context *ctx)
191 ctx->buf[0] = 0x67452301;
192 ctx->buf[1] = 0xefcdab89;
193 ctx->buf[2] = 0x98badcfe;
194 ctx->buf[3] = 0x10325476;
196 ctx->bits[0] = 0
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
md4.c 33 static void MD4Init(MD4_CTX *ctx);
34 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len);
35 static void MD4Final(unsigned char digest[MD4_DIGEST_LENGTH], MD4_CTX *ctx);
40 MD4_CTX ctx; local
43 MD4Init(&ctx);
45 MD4Update(&ctx, addr[i], len[i]);
46 MD4Final(mac, &ctx);
103 static void MD4Init(MD4_CTX *ctx)
105 ctx->count = 0;
106 ctx->state[0] = 0x67452301
    [all...]
  /external/openssl/crypto/pkcs7/
dec.c 67 int verify_callback(int ok, X509_STORE_CTX *ctx);
200 int verify_callback(int ok, X509_STORE_CTX *ctx)
206 err_cert=X509_STORE_CTX_get_current_cert(ctx);
207 err= X509_STORE_CTX_get_error(ctx);
208 depth= X509_STORE_CTX_get_error_depth(ctx);
219 X509_STORE_CTX_set_error(ctx,X509_V_OK);
224 X509_STORE_CTX_set_error(ctx,X509_V_ERR_CERT_CHAIN_TOO_LONG);
227 switch (ctx->error)
230 X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert),buf,256);
236 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert))
    [all...]
verify.c 67 int verify_callback(int ok, X509_STORE_CTX *ctx);
215 int verify_callback(int ok, X509_STORE_CTX *ctx)
221 err_cert=X509_STORE_CTX_get_current_cert(ctx);
222 err= X509_STORE_CTX_get_error(ctx);
223 depth= X509_STORE_CTX_get_error_depth(ctx);
234 X509_STORE_CTX_set_error(ctx,X509_V_OK);
239 X509_STORE_CTX_set_error(ctx,X509_V_ERR_CERT_CHAIN_TOO_LONG);
242 switch (ctx->error)
245 X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert),buf,256);
251 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert))
    [all...]
  /dalvik/vm/hprof/
HprofOutput.c 65 hprofContextInit(hprof_context_t *ctx, char *fileName, FILE *fp,
68 memset(ctx, 0, sizeof (*ctx));
77 fp = open_memstream(&ctx->fileDataPtr, &ctx->fileDataSize);
85 ctx->directToDdms = directToDdms;
86 ctx->fileName = fileName;
87 ctx->fp = fp;
89 ctx->curRec.allocLen = 128;
90 ctx->curRec.body = malloc(ctx->curRec.allocLen)
    [all...]
  /external/openssl/ssl/
ssl_rsa.c 112 x=PEM_read_bio_X509(in,NULL,ssl->ctx->default_passwd_callback,ssl->ctx->default_passwd_callback_userdata);
256 ssl->ctx->default_passwd_callback,ssl->ctx->default_passwd_callback_userdata);
336 ssl->ctx->default_passwd_callback,ssl->ctx->default_passwd_callback_userdata);
379 int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x)
386 if (!ssl_cert_inst(&ctx->cert))
391 return(ssl_set_cert(ctx->cert, x));
454 int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type
    [all...]

Completed in 371 milliseconds

<<11121314151617181920>>