Searched defs:olen (Results 1 - 25 of 62) sorted by relevance

123

/external/openssl/crypto/comp/
H A Dc_rle.c8 unsigned int olen, unsigned char *in, unsigned int ilen);
10 unsigned int olen, unsigned char *in, unsigned int ilen);
29 unsigned int olen, unsigned char *in, unsigned int ilen)
33 if (olen < (ilen+1))
45 unsigned int olen, unsigned char *in, unsigned int ilen)
49 if (ilen == 0 || olen < (ilen-1))
28 rle_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
44 rle_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
H A Dcomp_lib.c37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, argument
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
55 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, argument
65 ret=ctx->meth->expand(ctx,out,olen,in,ilen);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbase64.c40 size_t olen; local
43 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
44 olen += olen / 72; /* line feeds */
45 olen++; /* nul termination */
46 if (olen < len)
48 out = os_malloc(olen);
107 size_t i, count, olen; local
123 olen = count / 4 * 3;
124 pos = out = os_malloc(olen);
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dbase64.c40 size_t olen; local
43 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
44 olen += olen / 72; /* line feeds */
45 olen++; /* nul termination */
46 if (olen < len)
48 out = os_malloc(olen);
107 size_t i, count, olen; local
123 olen = count / 4 * 3;
124 pos = out = os_malloc(olen);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbase64.c40 size_t olen; local
43 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
44 olen += olen / 72; /* line feeds */
45 olen++; /* nul termination */
46 if (olen < len)
48 out = os_malloc(olen);
107 size_t i, count, olen; local
123 olen = count / 4 * 3;
124 pos = out = os_malloc(olen);
[all...]
/external/wpa_supplicant/
H A Dbase64.c40 size_t olen; local
43 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
44 olen += olen / 72; /* line feeds */
45 olen++; /* nul termination */
46 out = os_malloc(olen);
105 size_t i, count, olen; local
121 olen = count / 4 * 3;
122 pos = out = os_malloc(olen);
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dbase64.c40 size_t olen; local
43 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
44 olen += olen / 72; /* line feeds */
45 olen++; /* nul termination */
46 if (olen < len)
48 out = os_malloc(olen);
107 size_t i, count, olen; local
123 olen = count / 4 * 3;
124 pos = out = os_malloc(olen);
[all...]
/external/openssl/crypto/asn1/
H A Dn_pkey.c126 int rsalen, pkeylen, olen; local
163 olen = i2d_NETSCAPE_ENCRYPTED_PKEY(enckey, NULL);
166 return olen;
H A Da_object.c86 int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num) argument
205 if (len+i > olen)
H A Dtasn_dec.c76 static int asn1_check_tlen(long *olen, int *otag, unsigned char *oclass,
1259 static int asn1_check_tlen(long *olen, int *otag, unsigned char *oclass, argument
1336 if (olen)
1337 *olen = plen;
/external/openssl/ssl/
H A Ds2_pkt.c518 unsigned int j,k,olen,p,bs; local
522 olen=len;
648 s->s2->wpend_tot=olen;
654 return(write_pending(s,buf,olen));
/external/iptables/utils/
H A Dnfnl_osf.c150 static void xt_osf_parse_opt(struct xt_osf_opt *opt, __u16 *optnum, char *obuf, int olen) argument
158 while (ptr != NULL && i < olen && *ptr != 0) {
/external/ppp/pppd/
H A Dcbcp.c233 int code, opt, id, len, olen, delay; local
259 GETCHAR(olen, p);
261 if (olen < 2 || olen > len) {
266 len -= olen;
273 if (olen > 2) {
278 if (olen > 3) {
283 memcpy(str, p, olen - 4);
284 str[olen - 4] = 0;
/external/qemu/
H A Dqemu-sockets-android.c443 int inet_listen(const char *str, char *ostr, int olen, argument
456 snprintf(ostr, olen, "[%s]:%s%s",
461 snprintf(ostr, olen, "%s:%s%s",
555 int unix_listen(const char *str, char *ostr, int olen) argument
579 snprintf(ostr, olen, "%s%s", qemu_opt_get(opts, "path"), optstr ? optstr : "");
610 int unix_listen(const char *path, char *ostr, int olen) argument
H A Dqemu-sockets.c498 int inet_listen(const char *str, char *ostr, int olen, argument
511 snprintf(ostr, olen, "[%s]:%s%s",
516 snprintf(ostr, olen, "%s:%s%s",
622 int unix_listen(const char *str, char *ostr, int olen) argument
646 snprintf(ostr, olen, "%s%s", qemu_opt_get(opts, "path"), optstr ? optstr : "");
679 int unix_listen(const char *path, char *ostr, int olen) argument
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Dtlsv1_server.c237 size_t olen; local
253 olen = out_end - out_pos;
255 out_pos, &olen, &alert);
262 out_pos += olen;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_nss.c59 int olen; local
102 if (PK11_CipherOp(ctx, cypher, &olen, 8, (void *) clear, 8) !=
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_server.c237 size_t olen; local
253 olen = out_end - out_pos;
255 out_pos, &olen, &alert);
262 out_pos += olen;
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_nss.c59 int olen; local
102 if (PK11_CipherOp(ctx, cypher, &olen, 8, (void *) clear, 8) !=
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_server.c237 size_t olen; local
253 olen = out_end - out_pos;
255 out_pos, &olen, &alert);
262 out_pos += olen;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_nss.c59 int olen; local
102 if (PK11_CipherOp(ctx, cypher, &olen, 8, (void *) clear, 8) !=
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_server.c237 size_t olen; local
253 olen = out_end - out_pos;
255 out_pos, &olen, &alert);
262 out_pos += olen;
/external/bluetooth/bluez/compat/
H A Dpand.c193 socklen_t olen = sizeof(err); local
195 getsockopt(sk, SOL_SOCKET, SO_ERROR, &err, &olen);
218 socklen_t olen; local
245 olen = sizeof(l2o);
246 if (getsockopt(sk, SOL_L2CAP, L2CAP_OPTIONS, &l2o, &olen) < 0) {
337 socklen_t olen; local
352 olen = sizeof(l2o);
353 getsockopt(sk, SOL_L2CAP, L2CAP_OPTIONS, &l2o, &olen);
/external/iproute2/misc/
H A Dnstat.c425 socklen_t olen = sizeof(cred); local
427 if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, (void*)&cred, &olen) ||
428 olen < sizeof(cred))
H A Drtacct.c416 socklen_t olen = sizeof(cred); local
418 if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, (void*)&cred, &olen) ||
419 olen < sizeof(cred))

Completed in 539 milliseconds

123