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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/e2fsck/
e2fsck.c 50 errcode_t e2fsck_reset_context(e2fsck_t ctx)
52 ctx->flags = 0;
53 ctx->lost_and_found = 0;
54 ctx->bad_lost_and_found = 0;
55 if (ctx->inode_used_map) {
56 ext2fs_free_inode_bitmap(ctx->inode_used_map);
57 ctx->inode_used_map = 0;
59 if (ctx->inode_dir_map) {
60 ext2fs_free_inode_bitmap(ctx->inode_dir_map);
61 ctx->inode_dir_map = 0
    [all...]
dx_dirinfo.c 16 void e2fsck_add_dx_dir(e2fsck_t ctx, ext2_ino_t ino, int num_blocks)
26 if (!ctx->dx_dir_info) {
27 ctx->dx_dir_info_count = 0;
28 ctx->dx_dir_info_size = 100; /* Guess */
29 ctx->dx_dir_info = (struct dx_dir_info *)
30 e2fsck_allocate_memory(ctx, ctx->dx_dir_info_size
35 if (ctx->dx_dir_info_count >= ctx->dx_dir_info_size) {
36 old_size = ctx->dx_dir_info_size * sizeof(struct dx_dir_info)
    [all...]
pass4.c 26 static int disconnect_inode(e2fsck_t ctx, ext2_ino_t i)
28 ext2_filsys fs = ctx->fs;
32 e2fsck_read_inode(ctx, i, &inode, "pass4: disconnect_inode");
45 if (fix_problem(ctx, PR_4_ZERO_LEN_INODE, &pctx)) {
46 ext2fs_icount_store(ctx->inode_link_info, i, 0);
48 inode.i_dtime = ctx->now;
49 e2fsck_write_inode(ctx, i, &inode,
54 e2fsck_read_bitmaps(ctx);
55 ext2fs_unmark_inode_bitmap(ctx->inode_used_map, i);
56 ext2fs_unmark_inode_bitmap(ctx->inode_dir_map, i)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
AbstractItemVisitor.java 20 public Object visit (final AllItem item, final Object ctx)
22 return ctx;
25 public Object visit (final PackageItem item, final Object ctx)
27 return ctx;
30 public Object visit (final SrcFileItem item, final Object ctx)
32 return ctx;
35 public Object visit (final ClassItem item, final Object ctx)
37 return ctx;
40 public Object visit (final MethodItem item, final Object ctx)
42 return ctx;
    [all...]
  /external/elfutils/libasm/
asm_abort.c 27 asm_abort (ctx)
28 AsmCtx_t *ctx;
30 if (ctx == NULL)
34 if (likely (! ctx->textp))
36 (void) elf_end (ctx->out.elf);
39 (void) unlink (ctx->tmp_fname);
42 __libasm_finictx (ctx);
asm_getelf.c 25 asm_getelf (ctx)
26 AsmCtx_t *ctx;
28 return ctx != NULL ? ctx->out.elf : NULL;
  /external/emma/core/java12/com/vladium/jcd/cls/
AbstractClassDefVisitor.java 22 public Object visit (final ClassDef cls, final Object ctx)
24 visit (cls.getConstants (), ctx); local
25 visit (cls.getInterfaces (), ctx); local
26 visit (cls.getFields (), ctx); local
27 visit (cls.getMethods (), ctx); local
28 visit (cls.getAttributes (), ctx); local
30 return ctx;
33 public Object visit (final IAttributeCollection attributes, final Object ctx)
35 return ctx;
38 public Object visit (final IConstantCollection constants, final Object ctx)
    [all...]
IClassDefVisitor.java 19 Object visit (ClassDef cls, Object ctx);
21 Object visit (IConstantCollection constants, Object ctx);
22 Object visit (IInterfaceCollection interfaces, Object ctx);
23 Object visit (IFieldCollection fields, Object ctx);
24 Object visit (IMethodCollection methods, Object ctx);
25 Object visit (IAttributeCollection attributes, Object ctx);
  /external/openssl/crypto/
LPdir_win.c 50 WIN32_FIND_DATA ctx; member in struct:LP_dir_context_st
55 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
59 if (ctx == NULL || directory == NULL)
66 if (*ctx == NULL)
68 *ctx = (LP_DIR_CTX *)malloc(sizeof(LP_DIR_CTX));
69 if (*ctx == NULL)
74 memset(*ctx, '\0', sizeof(LP_DIR_CTX));
85 free(*ctx);
86 *ctx = NULL;
97 (*ctx)->handle = FindFirstFile(wdir, &(*ctx)->ctx)
    [all...]
LPdir_unix.c 65 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
69 if (ctx == NULL || directory == NULL)
76 if (*ctx == NULL)
78 *ctx = (LP_DIR_CTX *)malloc(sizeof(LP_DIR_CTX));
79 if (*ctx == NULL)
84 memset(*ctx, '\0', sizeof(LP_DIR_CTX));
86 (*ctx)->dir = opendir(directory);
87 if ((*ctx)->dir == NULL)
90 free(*ctx);
91 *ctx = NULL
    [all...]
LPdir_nyi.c 33 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
38 int LP_find_file_end(LP_DIR_CTX **ctx)
o_dir.h 45 const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory);
47 int OPENSSL_DIR_end(OPENSSL_DIR_CTX **ctx);
  /external/openssl/crypto/evp/
bio_ok.c 179 BIO_OK_CTX *ctx; local
181 ctx=(BIO_OK_CTX *)OPENSSL_malloc(sizeof(BIO_OK_CTX));
182 if (ctx == NULL) return(0);
184 ctx->buf_len=0;
185 ctx->buf_off=0;
186 ctx->buf_len_save=0;
187 ctx->buf_off_save=0;
188 ctx->cont=1;
189 ctx->finished=0;
190 ctx->blockout= 0
216 BIO_OK_CTX *ctx; local
287 BIO_OK_CTX *ctx; local
346 BIO_OK_CTX *ctx; local
460 BIO_OK_CTX *ctx; local
486 BIO_OK_CTX *ctx; local
523 BIO_OK_CTX *ctx; local
543 BIO_OK_CTX *ctx; local
    [all...]
bio_b64.c 114 BIO_B64_CTX *ctx; local
116 ctx=(BIO_B64_CTX *)OPENSSL_malloc(sizeof(BIO_B64_CTX));
117 if (ctx == NULL) return(0);
119 ctx->buf_len=0;
120 ctx->tmp_len=0;
121 ctx->tmp_nl=0;
122 ctx->buf_off=0;
123 ctx->cont=1;
124 ctx->start=1;
125 ctx->encode=0
146 BIO_B64_CTX *ctx; local
368 BIO_B64_CTX *ctx; local
468 BIO_B64_CTX *ctx; local
    [all...]
digest.c 121 void EVP_MD_CTX_init(EVP_MD_CTX *ctx)
123 memset(ctx,'\0',sizeof *ctx);
128 EVP_MD_CTX *ctx=OPENSSL_malloc(sizeof *ctx); local
130 if (ctx)
131 EVP_MD_CTX_init(ctx);
133 return ctx;
136 int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
138 EVP_MD_CTX_init(ctx);
414 EVP_MD_CTX ctx; local
    [all...]
evp_enc.c 70 #define M_do_cipher(ctx, out, in, inl) \
71 EVP_Cipher(ctx,out,in,inl)
73 #define M_do_cipher(ctx, out, in, inl) \
74 ctx->cipher->do_cipher(ctx,out,in,inl)
81 EVP_CIPHER_CTX *ctx=OPENSSL_malloc(sizeof *ctx); local
82 if (ctx)
83 EVP_CIPHER_CTX_init(ctx);
84 return ctx;
    [all...]
enc_min.c 69 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
74 memset(ctx,0,sizeof(EVP_CIPHER_CTX));
75 /* ctx->cipher=NULL; */
84 static int bad_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
88 static int bad_do_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
94 static int bad_set_asn1(EVP_CIPHER_CTX *ctx, ASN1_TYPE *typ)
96 static int bad_get_asn1(EVP_CIPHER_CTX *ctx, ASN1_TYPE *typ)
98 static int bad_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
125 static int do_evp_enc_engine_null(EVP_CIPHER_CTX *ctx,
133 (EVP_CIPHER_CTX *ctx, const EVP_CIPHER **pciph, ENGINE *impl
    [all...]
  /external/openssl/crypto/jpake/
jpake.c 29 BN_CTX *ctx; member in struct:JPAKE_CTX
75 static void JPAKE_CTX_init(JPAKE_CTX *ctx, const char *name,
80 ctx->p.name = OPENSSL_strdup(name);
81 ctx->p.peer_name = OPENSSL_strdup(peer_name);
82 ctx->p.p = BN_dup(p);
83 ctx->p.g = BN_dup(g);
84 ctx->p.q = BN_dup(q);
85 ctx->secret = BN_dup(secret);
87 ctx->p.gxc = BN_new();
88 ctx->p.gxd = BN_new()
120 JPAKE_CTX *ctx = OPENSSL_malloc(sizeof *ctx); local
    [all...]
  /external/openssl/crypto/hmac/
hmac.c 66 void HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
75 ctx->md=md;
78 md=ctx->md;
84 OPENSSL_assert(j <= (int)sizeof(ctx->key));
87 EVP_DigestInit_ex(&ctx->md_ctx,md, impl);
88 EVP_DigestUpdate(&ctx->md_ctx,key,len);
89 EVP_DigestFinal_ex(&(ctx->md_ctx),ctx->key,
90 &ctx->key_length);
94 OPENSSL_assert(len>=0 && len<=(int)sizeof(ctx->key))
    [all...]
  /external/openssl/crypto/x509/
x509_vfy.c 74 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
75 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
76 static int check_chain_extensions(X509_STORE_CTX *ctx);
77 static int check_trust(X509_STORE_CTX *ctx);
78 static int check_revocation(X509_STORE_CTX *ctx);
79 static int check_cert(X509_STORE_CTX *ctx);
80 static int check_policy(X509_STORE_CTX *ctx);
81 static int internal_verify(X509_STORE_CTX *ctx);
97 int X509_verify_cert(X509_STORE_CTX *ctx)
102 X509_VERIFY_PARAM *param = ctx->param
1330 X509_STORE_CTX *ctx; local
    [all...]
  /external/openssl/crypto/comp/
comp_lib.c 26 void COMP_CTX_free(COMP_CTX *ctx)
28 if(ctx == NULL)
31 if (ctx->meth->finish != NULL)
32 ctx->meth->finish(ctx);
34 OPENSSL_free(ctx);
37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
41 if (ctx->meth->compress == NULL)
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen)
    [all...]
  /external/webkit/WebCore/html/canvas/
WebGLRenderbuffer.cpp 35 PassRefPtr<WebGLRenderbuffer> WebGLRenderbuffer::create(WebGLRenderingContext* ctx)
37 return adoptRef(new WebGLRenderbuffer(ctx));
40 PassRefPtr<WebGLRenderbuffer> WebGLRenderbuffer::create(WebGLRenderingContext* ctx, Platform3DObject obj)
42 return adoptRef(new WebGLRenderbuffer(ctx, obj));
45 WebGLRenderbuffer::WebGLRenderbuffer(WebGLRenderingContext* ctx)
46 : CanvasObject(ctx)
51 WebGLRenderbuffer::WebGLRenderbuffer(WebGLRenderingContext* ctx, Platform3DObject obj)
52 : CanvasObject(ctx)
WebGLTexture.cpp 35 PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContext* ctx)
37 return adoptRef(new WebGLTexture(ctx));
40 PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContext* ctx, Platform3DObject obj)
42 return adoptRef(new WebGLTexture(ctx, obj));
45 WebGLTexture::WebGLTexture(WebGLRenderingContext* ctx)
46 : CanvasObject(ctx)
52 WebGLTexture::WebGLTexture(WebGLRenderingContext* ctx, Platform3DObject obj)
53 : CanvasObject(ctx)
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
ICONSTANTVisitor.java 20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx);
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx);
25 Object visit (CONSTANT_Methodref_info constant, Object ctx);
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx);
28 Object visit (CONSTANT_Double_info constant, Object ctx);
29 Object visit (CONSTANT_Float_info constant, Object ctx);
30 Object visit (CONSTANT_Integer_info constant, Object ctx);
31 Object visit (CONSTANT_Long_info constant, Object ctx);
32 Object visit (CONSTANT_String_info constant, Object ctx);
    [all...]
  /external/ppp/pppd/
openssl-hash.h 25 #define SHA1_Init(ctx) { \
26 EVP_MD_CTX_init(ctx); \
27 EVP_DigestInit_ex(ctx, sha1_md, NULL); \
30 #define SHA1_Final(digest, ctx) { \
32 EVP_DigestFinal_ex(ctx, digest, &md_len); \
37 #define MD4Init(ctx) { \
38 EVP_MD_CTX_init(ctx); \
39 EVP_DigestInit_ex(ctx, md4_md, NULL); \
46 #define MD5_Init(ctx) { \
47 EVP_MD_CTX_init(ctx); \
    [all...]

Completed in 62 milliseconds

1 2 3 4 5 6 7 8 91011>>