Searched defs:wlen (Results 1 - 11 of 11) sorted by relevance

/external/qemu/proxy/
H A Dproxy_http.c114 int wlen; local
140 wlen = proxy_base64_encode(user_pass, uplen, encoded, (int)sizeof(encoded));
141 if (wlen < 0) {
146 p += snprintf(p, end-p, "Proxy-authorization: Basic %.*s\r\n", wlen, encoded);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32.cc103 int wlen = ::MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), utf8.length() + 1, local
105 if (0 == wlen) {
108 wchar_t* wfilename = STACK_ARRAY(wchar_t, wlen);
110 wfilename, wlen)) {
114 std::replace(wfilename, wfilename + wlen, L'/', L'\\');
/external/bluetooth/bluez/test/
H A Dhstest.c154 int maxfd, sel, rlen, wlen; local
270 wlen = write(rd, "OK\r\n", 4);
282 wlen = 0;
285 wlen += write(sd, p, sco_mtu);
289 wlen += write(sd, p, rlen);
292 wlen = write(fd, buf, rlen);
/external/oprofile/utils/
H A Dophelp.c69 int wlen = strcspn(msg, " "); local
70 if (*column + wlen > LINE_LEN) {
74 printf("%.*s ", wlen, msg);
75 *column += wlen + 1;
76 msg += wlen;
/external/ppp/pppd/
H A Dupap.c620 int mlen, ulen, wlen; local
646 wlen = p[ulen + 1];
647 if (len < ulen + wlen + 2)
651 p += ulen + wlen + 2;
652 len -= ulen + wlen + 2;
657 print_string(pwd, wlen, printer, arg);
/external/openssl/ssl/
H A Ds3_lib.c2179 size_t rlen, wlen; local
2217 wlen = s->s3->wbuf.len;
2229 s->s3->wbuf.len = wlen;
/external/srec/srec/crec/
H A Dword_lattice.c237 int wlen; local
274 wlen = strlen(w);
275 if (wlen + tr_end - transcription + 1 >= len)
282 to_p = tr_end + wlen + 1;
291 end = to_p + wlen;
/external/icu4c/tools/genpname/
H A Dgenpname.cpp1191 int32_t wlen = writeDataFile(options[3].value, builder); local
1194 U_ICUDATA_NAME "_" PNAME_DATA_NAME, PNAME_DATA_TYPE, (long)wlen);
/external/libpng/
H A Dpngwutil.c1675 png_size_t wlen, hlen, total_len; local
1679 wlen = png_strlen(width);
1681 total_len = wlen + hlen + 2;
1689 png_memcpy(buf + 1, width, wlen + 1); /* Append the '\0' here */
1690 png_memcpy(buf + wlen + 2, height, hlen); /* Do NOT append the '\0' here */
/external/qemu/distrib/libpng-1.2.19/
H A Dpngwutil.c1645 png_size_t wlen, hlen, total_len; local
1649 wlen = png_strlen(width);
1651 total_len = wlen + hlen + 2;
1659 png_memcpy(buf + 1, width, wlen + 1); /* append the '\0' here */
1660 png_memcpy(buf + wlen + 2, height, hlen); /* do NOT append the '\0' here */
/external/mksh/src/
H A Dedit.c747 size_t add = 0, wlen = len; local
751 while (wlen - add > 0)
764 wlen -= add;
769 if (wlen > 0 && rval == 0)
770 rval = putbuf_func(s, wlen);

Completed in 4007 milliseconds