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

1 2

  /external/curl/lib/
escape.h 29 char **ostring, size_t *olen,
escape.c 140 * *olen. If length == 0, the length is assumed to be strlen(string).
145 char **ostring, size_t *olen,
194 if(olen)
196 *olen = strindex;
206 * pointer to a malloced string with length given in *olen.
208 * If olen == NULL, no output length is stored.
211 int *olen)
220 if(olen)
221 *olen = curlx_uztosi(outputlen);
dict.c 101 int olen=0; local
116 dictp[olen++] = '\\';
118 dictp[olen++] = ch;
120 dictp[olen]=0;
  /external/wpa_supplicant_8/src/utils/
base64.c 34 size_t olen; local
37 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
38 olen += olen / 72; /* line feeds */
39 olen++; /* nul termination */
40 if (olen < len)
42 out = os_malloc(olen);
103 size_t i, count, olen; local
120 olen = count / 4 * 3;
121 pos = out = os_malloc(olen);
    [all...]
  /external/toybox/toys/posix/
uudecode.c 49 int olen; local
58 olen = 0;
60 if (!m) olen = (*(in++) - 32) & 0x3f;
67 if (olen < 1) break;
68 if (olen < 3) len = olen + 1;
92 olen--;
  /system/core/cpio/
mkbootfs.c 89 static void _eject(struct stat *s, char *out, int olen, char *data, unsigned datasize)
118 olen + 1,
124 total_size += 6 + 8*13 + olen + 1;
126 if(strlen(out) != (unsigned int)olen) die("ACK!");
151 static void _archive(char *in, char *out, int ilen, int olen);
157 static void _archive_dir(char *in, char *out, int ilen, int olen)
165 in, out, ilen, olen);
211 if(olen > 0) {
212 out[olen] = '/';
213 memcpy(out + olen + 1, names[i], t + 1)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
edns.py 36 def from_wire(cls, otype, wire, current, olen):
45 @param olen: The length of the wire-format option data
46 @type olen: int
111 def from_wire(cls, otype, wire, current, olen):
112 return cls(otype, wire[current : current + olen])
128 def option_from_wire(otype, wire, current, olen):
137 @param olen: The length of the wire-format option data
138 @type olen: int
142 return cls.from_wire(otype, wire, current, olen)
  /external/ppp/pppd/
cbcp.c 233 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;
ipxcp.c 1479 int code, id, len, olen; local
    [all...]
lcp.c 2001 int code, id, len, olen, i; local
    [all...]
ipv6cp.c 1423 int code, id, len, olen; local
    [all...]
ipcp.c 2153 int code, id, len, olen; local
    [all...]
  /external/speex/libspeex/
resample.c 677 spx_uint32_t olen = old_length; local
683 olen = old_length + 2*st->magic_samples[i];
690 if (st->filt_len > olen)
694 for (j=0;j<olen-1;j++)
695 st->mem[i*st->mem_alloc_size+(st->filt_len-2-j)] = st->mem[i*st->mem_alloc_size+(olen-2-j)];
700 st->last_sample[i] += (st->filt_len - olen)/2;
703 st->magic_samples[i] = (olen - st->filt_len)/2;
856 spx_uint32_t olen = *out_len; local
899 spx_uint32_t olen = *out_len; local
    [all...]
  /external/libedit/src/
vis.c 354 size_t len, olen; local
479 olen = 0;
505 if (olen + clen > (size_t)maxolen)
512 olen += clen;
526 return (int)olen;
  /ndk/sources/host-tools/make-3.81/
expand.c 527 unsigned int olen = variable_buffer_length;
536 variable_buffer_length = olen;
550 unsigned int olen = variable_buffer_length;
562 variable_buffer_length = olen;
521 unsigned int olen = variable_buffer_length; local
544 unsigned int olen = variable_buffer_length; local
  /external/curl/src/
mkhelp.pl 50 my $olen=0;
72 if($wline && ($olen == $tlen)) {
81 $olen = $tlen;
  /external/tcpdump/
print-pim.c 651 uint16_t otype, olen; local
656 olen = EXTRACT_16BITS(&bp[2]);
657 ND_TCHECK2(bp[0], 4 + olen);
661 olen));
670 if (olen != 4) {
671 ND_PRINT((ndo, "ERROR: Option Length != 4 Bytes (%u)", olen));
686 switch (olen) {
694 ND_PRINT((ndo, "ERROR: Option Length != 4 Bytes (%u)", olen));
721 while (ptr < (bp+olen)) {
736 print_unknown_data(ndo, bp, "\n\t ", olen);
    [all...]
print-fr.c 770 int olen; local
806 olen = length; /* preserve the original length for non verbose mode */
823 ND_PRINT((ndo, ", length %u", olen));
861 ND_PRINT((ndo, ", length %u", olen));
  /packages/services/Telephony/src/com/android/phone/
IccNetworkDepersonalizationPanel.java 91 public void beforeTextChanged(CharSequence buffer, int start, int olen, int nlen) {
94 public void onTextChanged(CharSequence buffer, int start, int olen, int nlen) {
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.c 313 size_t olen; local
341 olen = wpabuf_tailroom(buf);
343 out_pos, &olen, &alert);
368 if (olen < 2) {
394 wpabuf_put(buf, olen);
tlsv1_server.c 265 size_t olen; local
274 olen = out_end - out_pos;
276 out_pos, &olen, &alert);
291 if (olen < 2) {
328 out_pos += olen;
  /external/iproute2/misc/
rtacct.c 415 socklen_t olen = sizeof(cred); local
417 if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, (void*)&cred, &olen) ||
418 olen < sizeof(cred))
nstat.c 475 socklen_t olen = sizeof(cred); local
477 if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, (void*)&cred, &olen) ||
478 olen < sizeof(cred))
  /external/boringssl/src/crypto/asn1/
a_object.c 86 int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num)
205 if (len+i > olen)
  /toolchain/binutils/binutils-2.25/gas/config/
tc-rl78.c 532 int olen = rl78_bytes.n_prefix + rl78_bytes.n_base + rl78_bytes.n_ops; local
536 bytes = frag_more (olen + 3);
539 olen /* max_chars */,
541 olen /* subtype */,
546 frag_then->fr_fix = olen + (bytes - frag_then->fr_literal);
547 frag_then->fr_subtype = olen;
    [all...]

Completed in 731 milliseconds

1 2