HomeSort by relevance Sort by last modified time
    Searched defs:wbuf (Results 1 - 16 of 16) sorted by null

  /bionic/libc/bionic/
realpath.c 66 char *p, *q, wbuf[MAXPATHLEN]; local
127 (void)strcpy(wbuf, p);
140 if (*wbuf) {
141 if (strlen(resolved) + strlen(wbuf) + (1-rootd) + 1 >
148 (void)strcat(resolved, wbuf);
  /external/bison/lib/
error.c 144 wchar_t *wbuf = (len < ALLOCA_LIMIT local
145 ? alloca (len * sizeof *wbuf)
146 : len <= SIZE_MAX / sizeof *wbuf
147 ? malloc (len * sizeof *wbuf)
150 if (wbuf)
156 res = mbsrtowcs (wbuf, &tmp, len, &st);
157 wmessage = res == (size_t) -1 ? L"???" : wbuf;
162 free (wbuf);
  /external/openssl/ssl/
s2_lib.c 332 /* wbuf needs one byte more because when using two-byte headers,
334 if ((s2->wbuf=OPENSSL_malloc(
343 if (s2->wbuf != NULL) OPENSSL_free(s2->wbuf);
359 if (s2->wbuf != NULL) OPENSSL_free(s2->wbuf);
368 unsigned char *rbuf,*wbuf; local
373 wbuf=s2->wbuf;
378 s2->wbuf=wbuf
    [all...]
ssl2.h 179 unsigned char *wbuf; member in struct:ssl2_state_st
ssl3.h 416 SSL3_BUFFER wbuf; /* write IO goes into here */ member in struct:ssl3_state_st
  /external/stlport/test/unit/
codecvt_test.cpp 537 wchar_t wbuf[4096]; local
539 int len = cvt.length(state, cp936_str.data(), cp936_str.data() + cp936_str.size(), sizeof(wbuf) / sizeof(wchar_t));
545 wbuf, wbuf + sizeof(wbuf) / sizeof(wchar_t), to_next);
548 cp936_wstr.assign(wbuf, to_next);
577 wchar_t wbuf[4096]; local
579 int len = cvt.length(state, utf8_str.data(), utf8_str.data() + utf8_str.size(), sizeof(wbuf) / sizeof(wchar_t));
585 wbuf, wbuf + sizeof(wbuf) / sizeof(wchar_t), to_next)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
codecvt_test.cpp 539 wchar_t wbuf[4096]; local
541 int len = cvt.length(state, cp936_str.data(), cp936_str.data() + cp936_str.size(), sizeof(wbuf) / sizeof(wchar_t));
547 wbuf, wbuf + sizeof(wbuf) / sizeof(wchar_t), to_next);
550 cp936_wstr.assign(wbuf, to_next);
579 wchar_t wbuf[4096]; local
581 int len = cvt.length(state, utf8_str.data(), utf8_str.data() + utf8_str.size(), sizeof(wbuf) / sizeof(wchar_t));
587 wbuf, wbuf + sizeof(wbuf) / sizeof(wchar_t), to_next)
    [all...]
  /ndk/tests/device/test-stlport/unit/
codecvt_test.cpp 539 wchar_t wbuf[4096]; local
541 int len = cvt.length(state, cp936_str.data(), cp936_str.data() + cp936_str.size(), sizeof(wbuf) / sizeof(wchar_t));
547 wbuf, wbuf + sizeof(wbuf) / sizeof(wchar_t), to_next);
550 cp936_wstr.assign(wbuf, to_next);
579 wchar_t wbuf[4096]; local
581 int len = cvt.length(state, utf8_str.data(), utf8_str.data() + utf8_str.size(), sizeof(wbuf) / sizeof(wchar_t));
587 wbuf, wbuf + sizeof(wbuf) / sizeof(wchar_t), to_next)
    [all...]
  /external/chromium/third_party/libevent/test/
regress.c 71 static char wbuf[4096]; variable
136 if (woff + len >= sizeof(wbuf))
137 len = sizeof(wbuf) - woff;
139 len = write(fd, wbuf + woff, len);
149 if (woff >= sizeof(wbuf)) {
409 for (i = 0; i < sizeof(wbuf); i++)
410 wbuf[i] = i;
424 test_ok = memcmp(rbuf, wbuf, sizeof(wbuf)) == 0;
438 for (i = 0; i < sizeof(wbuf); i++
    [all...]
  /external/openssl/include/openssl/
ssl2.h 179 unsigned char *wbuf; member in struct:ssl2_state_st
ssl3.h 416 SSL3_BUFFER wbuf; /* write IO goes into here */ member in struct:ssl3_state_st
  /external/wpa_supplicant/
tls_openssl.c 331 unsigned short wbuf[255]; local
332 MultiByteToWideChar(CP_ACP, 0, name + 7, -1, wbuf, 255);
336 wbuf, NULL);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_openssl.c 287 unsigned short wbuf[255]; local
288 MultiByteToWideChar(CP_ACP, 0, name + 7, -1, wbuf, 255);
292 wbuf, NULL);
    [all...]
  /external/openssl/apps/
s_server.c 537 EBCDIC_OUTBUFF *wbuf; local
539 wbuf = (EBCDIC_OUTBUFF *)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + 1024);
540 wbuf->alloced = 1024;
541 wbuf->buff[0] = '\0';
543 bi->ptr=(char *)wbuf;
575 EBCDIC_OUTBUFF *wbuf; local
583 wbuf=(EBCDIC_OUTBUFF *)b->ptr;
585 if (inl > (num = wbuf->alloced))
590 OPENSSL_free(wbuf);
591 wbuf=(EBCDIC_OUTBUFF *)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + num)
    [all...]
  /external/stlport/src/c_locale_win32/
c_locale_win32.c 241 static void __GetLocaleInfoUsingACP(LCID lcid, const char* cp, LCTYPE lctype, char* buf, int buf_size, wchar_t* wbuf, int wbuf_size);
388 wchar_t wbuf[4]; local
402 __GetLocaleInfoUsingACP(lnum->lc.id, lnum->cp, LOCALE_SDECIMAL, lnum->decimal_point, 4, wbuf, 4);
403 __GetLocaleInfoUsingACP(lnum->lc.id, lnum->cp, LOCALE_STHOUSAND, lnum->thousands_sep, 4, wbuf, 4);
831 wchar_t wbuf[6]; local
842 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SDECIMAL, lmon->decimal_point, 4, wbuf, 6);
843 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_STHOUSAND, lmon->thousands_sep, 4, wbuf, 6);
853 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SCURRENCY, lmon->curr_symbol, 6, wbuf, 6);
854 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SNEGATIVESIGN, lmon->negative_sign, 5, wbuf, 6);
855 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SPOSITIVESIGN, lmon->positive_sign, 5, wbuf, 6)
1043 wchar_t wbuf[2]; local
1045 WideCharToMultiByte(__GetDefaultCP(ltype->lc.id), WC_COMPOSITECHECK | WC_SEPCHARS, wbuf, 2, buf, 2, NULL, FALSE); local
1063 wchar_t wbuf[2]; local
1065 WideCharToMultiByte(__GetDefaultCP(ltype->lc.id), WC_COMPOSITECHECK | WC_SEPCHARS, wbuf, 2, buf, 2, NULL, FALSE); local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 241 static void __GetLocaleInfoUsingACP(LCID lcid, const char* cp, LCTYPE lctype, char* buf, int buf_size, wchar_t* wbuf, int wbuf_size);
388 wchar_t wbuf[4]; local
402 __GetLocaleInfoUsingACP(lnum->lc.id, lnum->cp, LOCALE_SDECIMAL, lnum->decimal_point, 4, wbuf, 4);
403 __GetLocaleInfoUsingACP(lnum->lc.id, lnum->cp, LOCALE_STHOUSAND, lnum->thousands_sep, 4, wbuf, 4);
831 wchar_t wbuf[6]; local
842 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SDECIMAL, lmon->decimal_point, 4, wbuf, 6);
843 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_STHOUSAND, lmon->thousands_sep, 4, wbuf, 6);
853 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SCURRENCY, lmon->curr_symbol, 6, wbuf, 6);
854 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SNEGATIVESIGN, lmon->negative_sign, 5, wbuf, 6);
855 __GetLocaleInfoUsingACP(lmon->lc.id, lmon->cp, LOCALE_SPOSITIVESIGN, lmon->positive_sign, 5, wbuf, 6)
1043 wchar_t wbuf[2]; local
1045 WideCharToMultiByte(__GetDefaultCP(ltype->lc.id), WC_COMPOSITECHECK | WC_SEPCHARS, wbuf, 2, buf, 2, NULL, FALSE); local
1063 wchar_t wbuf[2]; local
1065 WideCharToMultiByte(__GetDefaultCP(ltype->lc.id), WC_COMPOSITECHECK | WC_SEPCHARS, wbuf, 2, buf, 2, NULL, FALSE); local
    [all...]

Completed in 687 milliseconds