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

1 2 3 4 5 6 7

  /external/iproute2/lib/
ll_addr.c 32 const char *ll_addr_n2a(const unsigned char *addr, int alen, int type, char *buf, int blen)
39 return inet_ntop(AF_INET, addr, buf, blen);
42 return inet_ntop(AF_INET6, addr, buf, blen);
47 snprintf(buf+l, blen, "%02x", addr[i]);
48 blen -= 2;
51 snprintf(buf+l, blen, ":%02x", addr[i]);
52 blen -= 3;
  /external/libcap/libcap/
cap_extint.c 87 int set, blen; local
100 blen = export->length_of_capset;
107 if (bno != blen)
109 if (bno != blen)
111 if (bno != blen)
113 if (bno != blen)
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 414 size_t blen; local
419 blen = sizeof(buf);
420 if (scard_select_file(scard, SCARD_FILE_EF_DIR, buf, &blen)) {
424 wpa_hexdump(MSG_DEBUG, "SCARD: EF_DIR select", buf, blen);
434 blen = sizeof(buf);
435 if (rlen > (int) blen) {
528 size_t blen; local
632 blen = sizeof(buf);
635 if (_scard_select_file(scard, SCARD_FILE_MF, buf, &blen,
645 blen = sizeof(buf)
900 size_t blen; local
935 size_t blen = len + 3; local
981 size_t blen = len + 3; local
1110 size_t blen, imsilen, i; local
1184 size_t blen; local
    [all...]
edit_readline.c 131 size_t blen = os_strlen(ps) + 3; local
132 char *ps2 = os_malloc(blen);
134 os_snprintf(ps2, blen, "%s> ", ps);
wpabuf.c 278 size_t blen; local
283 blen = wpabuf_len(buf);
284 if (blen >= len)
289 os_memset(wpabuf_put(ret, len - blen), 0, len - blen);
  /external/strace/tests/
sendfile64.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
100 == (long) blen);
102 sv[1], reg_in, alen, file_size, file_size + 1, blen);
sendfile.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
107 == (long) blen);
109 sv[1], reg_in, alen, file_size, file_size + 1, blen);
  /external/strace/tests-m32/
sendfile64.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
100 == (long) blen);
102 sv[1], reg_in, alen, file_size, file_size + 1, blen);
sendfile.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
107 == (long) blen);
109 sv[1], reg_in, alen, file_size, file_size + 1, blen);
  /external/strace/tests-mx32/
sendfile64.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
100 == (long) blen);
102 sv[1], reg_in, alen, file_size, file_size + 1, blen);
sendfile.c 70 const unsigned int blen = file_size / 3; local
71 const unsigned int alen = file_size - blen;
107 == (long) blen);
109 sv[1], reg_in, alen, file_size, file_size + 1, blen);
  /external/svox/pico/lib/
picodata.c 53 picoos_uint16 *blen);
57 picoos_uint16 *blen, const picoos_uint8 issd);
83 picoos_uint16 *blen);
87 picoos_uint16 *blen, const picoos_uint8 issd);
178 picoos_uint16 *blen, const picoos_uint8 issd)
183 *blen = 0;
192 *blen = PICODATA_ITEM_HEADSIZE + (picoos_uint8)(this->buf[((this->front) +
201 for (i=0; i<*blen; i++) {
206 *blen = 0;
211 if (*blen > this->len) { /* item in cb not complete? *
    [all...]
  /external/pdfium/third_party/bigint/
NumberlikeArray.hh 76 NumberlikeArray(const Blk *b, Index blen);
158 NumberlikeArray<Blk>::NumberlikeArray(const Blk *b, Index blen)
159 : cap(blen), len(blen) {
  /external/wpa_supplicant_8/wpa_supplicant/
win_if_list.c 77 size_t blen = sizeof(*b) + 1024; local
84 b = malloc(blen);
89 memset(b, 0, blen);
93 (DWORD) blen, &written, NULL)) {
  /external/toybox/toys/pending/
compress.c 120 int click = bb->bitpos >> 3, blow, blen; local
127 blen = 8-blow;
128 if (blen > bits) blen = bits;
129 result |= ((bb->buf[click] >> blow) & ((1<<blen)-1)) << offset;
130 offset += blen;
131 bits -= blen;
132 bb->bitpos += blen;
150 int click = bb->bitpos >> 3, blow, blen; local
158 blen = 8-blow
162 data >>= blen; local
    [all...]
  /external/libmicrohttpd/src/microhttpd/
postprocessor.c 201 size_t blen; member in struct:MHD_PostProcessor
279 size_t blen; local
302 blen = strlen (boundary);
303 if ((blen == 0) || (blen * 2 + 2 > buffer_size))
305 if ( (boundary[0] == '"') && (boundary[blen - 1] == '"') )
309 blen -= 2;
313 blen = 0;
326 ret->blen = blen;
    [all...]
  /bionic/libc/dns/nameser/
ns_name.c 999 int b, blen, plen, i; local
1001 if ((blen = (*cp & 0xff)) == 0)
1002 blen = 256;
1003 plen = (blen + 3) / 4;
1004 plen += (int)sizeof("\\[x/]") + (blen > 99 ? 3 : (blen > 9) ? 2 : 1);
1013 for (b = blen; b > 7; b -= 8, cp++) {
1033 i = snprintf(dn, eom - dn, "/%d]", blen);
1053 int value = 0, count = 0, tbcount = 0, blen = 0; local
1064 if (!isxdigit((*cp) & 0xff)) /* reject '\[x/BLEN]' */
    [all...]
  /external/ipsec-tools/src/racoon/
policy.c 444 int blen, i; local
446 blen = sizeof(buf) - 1;
456 i = snprintf(p, blen, "%s/%d[%s ", a, spidx->prefs, b);
457 if (i < 0 || i >= blen)
460 blen -= i;
469 i = snprintf(p, blen, "%s/%d[%s ", a, spidx->prefd, b);
470 if (i < 0 || i >= blen)
473 blen -= i;
475 i = snprintf(p, blen, "proto=%s dir=%s",
481 blen -= i
    [all...]
  /external/openssh/
key.c 95 key_from_blob(const u_char *blob, u_int blen)
100 if ((r = sshkey_from_blob(blob, blen, &ret)) != 0) {
112 size_t blen; local
119 if ((r = sshkey_to_blob(key, &blob, &blen)) != 0) {
124 if (blen > INT_MAX)
125 fatal("%s: giant len %zu", __func__, blen);
129 *lenp = blen;
130 return blen;
ssh-pkcs11-client.c 111 u_int blen, slen = 0; local
119 if (key_to_blob(&key, &blob, &blen) == 0)
123 buffer_put_string(&msg, blob, blen);
192 u_int blen; local
209 blob = buffer_get_string(&msg, &blen);
211 k = key_from_blob(blob, blen);
  /external/toybox/toys/posix/
paste.c 48 size_t blen; local
56 if (!ff || 0>=(len = getline(&buf, &blen, ff))) {
  /external/boringssl/src/crypto/bio/
bio_mem.c 167 int blen; local
178 blen = b->length;
179 if (INT_MAX - blen < inl) {
182 if (BUF_MEM_grow_clean(b, blen + inl) != ((size_t) blen) + inl) {
185 OPENSSL_memcpy(&b->data[blen], in, inl);
  /libcore/ojluni/src/main/java/java/util/zip/
ZipInputStream.java 300 int blen = b.length; local
301 if (len > blen) {
303 blen = blen * 2;
304 } while (len > blen);
305 b = new byte[blen];
  /external/libxml2/
nanohttp.c 1353 int blen; local
    [all...]
  /external/curl/src/
tool_doswin.c 591 size_t blen = strlen(base); local
592 if(blen) {
594 --blen;
595 if(!(flags & SANITIZE_ALLOW_TRUNCATE) || truncate_dryrun(base, blen))
597 base[blen] = '\0';
599 memmove(base + 1, base, blen + 1);
601 ++blen;

Completed in 843 milliseconds

1 2 3 4 5 6 7