/external/protobuf/src/google/protobuf/testing/ |
zcgunzip.cc | 60 int inlen; local 62 ok = in.Next(&inptr, &inlen); 66 if (inlen > 0) { 67 int err = write(STDOUT_FILENO, inptr, inlen); 68 assert(err == inlen);
|
/external/chromium/net/tools/dnssec_chain_verify/ |
dnssec_chain_verify.cc | 51 unsigned long inlen = ftell(infile); local 54 char* const input = (char *) malloc(inlen); 55 if (fread(input, inlen, 1, infile) != 1) { 67 base::StringPiece(input, inlen));
|
/external/openssl/crypto/pkcs12/ |
p12_decr.c | 72 int passlen, unsigned char *in, int inlen, unsigned char **data, 87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) { 92 EVP_CipherUpdate(&ctx, out, &i, in, inlen); 156 int inlen; local 161 inlen = ASN1_item_i2d(obj, &in, it); 166 if (!PKCS12_pbe_crypt(algor, pass, passlen, in, inlen, &oct->data, 172 if (zbuf) OPENSSL_cleanse(in, inlen);
|
/frameworks/base/media/libstagefright/codecs/aacenc/inc/ |
aacenc_core.h | 70 int inlen; member in struct:__anon14856
|
/external/dropbear/libtomcrypt/testprof/ |
der_tests.c | 457 unsigned long integer, oidbuf[10], outlen, inlen, x, y; local 492 inlen = outlen; 493 DO(der_decode_sequence(outbuf, inlen, &host[0], 1)); [all...] |
/external/openssl/crypto/pem/ |
pvkfmt.c | 735 int enctmplen, inlen; local 737 inlen=cb(psbuf,PEM_BUFSIZE,0,u); 739 inlen=PEM_def_callback(psbuf,PEM_BUFSIZE,0,u); 740 if (inlen <= 0) 752 (unsigned char *)psbuf, inlen)) 758 inlen = keylen - 8; 762 EVP_DecryptUpdate(&cctx, q, &enctmplen, p, inlen); 772 EVP_DecryptUpdate(&cctx, q, &enctmplen, p, inlen); 889 int enctmplen, inlen; local 891 inlen=cb(psbuf,PEM_BUFSIZE,1,u) [all...] |
/external/zlib/contrib/puff/ |
puff.c | 99 unsigned long inlen; /* available input at in */ member in struct:state 126 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */ 165 if (s->incnt + 4 > s->inlen) return 2; /* not enough input */ 173 if (s->incnt + len > s->inlen) return 2; /* not enough input */ 287 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */ [all...] |
/external/libxml2/ |
encoding.c | 159 * @inlen: the length of @in 164 * The value of @inlen after return is the number of octets consumed 170 const unsigned char* in, int *inlen) { 178 inend = in + (*inlen); 188 *inlen = processed - base; 195 *inlen = processed - base; 205 * @inlen: the length of @in 211 * The value of @inlen after return is the number of octets consumed 217 const unsigned char* in, int *inlen) { 226 if ((out == NULL) || (outlen == NULL) || (inlen == NULL)) return(-1) 489 unsigned int c, d, inlen; local 727 unsigned int c, d, inlen; local [all...] |
nanohttp.c | 146 int inlen; /* len of the input buffer */ member in struct:xmlNanoHTTPCtxt 516 ctxt->inlen = 65000; 528 if ((ctxt->in + ctxt->inlen) < (ctxt->inptr + XML_NANO_HTTP_CHUNK)) { 534 ctxt->inlen *= 2; 535 ctxt->in = (char *) xmlRealloc(tmp_ptr, ctxt->inlen); [all...] |
/external/openssl/ssl/ |
s3_srvr.c | 2643 size_t outlen=32, inlen; local [all...] |
/prebuilt/common/osgi/ |
osgi.jar | |