Home
last modified time | relevance | path

Searched refs:wStr (Results 1 – 3 of 3) sorted by relevance

/third_party/musl/porting/linux/user/src/hilog/
Doutput_p.inl51 wchar_t *wStr; member
57 wchar_t wStr[SECUREC_BUFFER_SIZE + 1]; member
291 if (mbtowc(buffer->wStr, tempchar, sizeof(tempchar)) < 0) {
295 buffer->wStr[0] = wchar;
297 formatBuf->wStr = buffer->wStr;
357 if (formatBuf->wStr == NULL) { /* NULL passed, use special string */
358 formatBuf->wStr = wStrNullString;
361 wStrEnd = formatBuf->wStr;
365 textLen = (int)(wStrEnd - formatBuf->wStr); /* in wchar_ts */
370 if (formatBuf->wStr == NULL) { /* NULL passed, use special string */
[all …]
/third_party/bounds_checking_function/src/
Doutput.inl88 wchar_t wStr[SECUREC_WCHAR_BUFFER_SIZE]; /* Just for %lc */ member
95 wchar_t *wStr; member
653 #define SECUREC_TEXT_CHAR_PTR(text) ((text).wStr)
696 const wchar_t *p = attr->text.wStr;
938 attr->buffer.wStr[0] = (wchar_t)c;
939 attr->text.wStr = attr->buffer.wStr;
945 attr->buffer.wStr[0] = (wchar_t)c;
946 attr->text.wStr = attr->buffer.wStr;
997 if (attr->text.wStr == NULL) {
1003 attr->text.wStr = wStrNullString;
[all …]
/third_party/benchmark/src/
Dsysinfo.cc431 std::wstring wStr(hostname, DWCOUNT); in GetSystemName() local
432 str = converter.to_bytes(wStr); in GetSystemName()