Home
last modified time | relevance | path

Searched refs:ws (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dfputws.c40 fputws(ws, fp) in fputws() argument
41 const wchar_t * __restrict ws; in fputws()
47 while (*ws != '\0') {
48 if (__fputwc_unlock(*ws++, fp) == WEOF) {
Dfgetws.c40 fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp) in fgetws() argument
53 wsp = ws; in fgetws()
59 if (wsp == ws) { in fgetws()
74 return (ws); in fgetws()
/bionic/libc/bionic/
Dpty.cpp118 int openpty(int* master, int* slave, char* name, const termios* t, const winsize* ws) { in openpty() argument
147 if (ws != NULL) { in openpty()
148 ioctl(*slave, TIOCSWINSZ, ws); in openpty()
154 int forkpty(int* amaster, char* name, const termios* t, const winsize* ws) { in forkpty() argument
157 if (openpty(&master, &slave, name, t, ws) == -1) { in forkpty()
/bionic/tests/
Dstdio_test.cpp270 wchar_t* ws = NULL; in TEST() local
271 EXPECT_EQ(8, snprintf(buf, sizeof(buf), "<%ls>", ws)); in TEST()
275 ws = chars; in TEST()
276 EXPECT_EQ(4, snprintf(buf, sizeof(buf), "<%ls>", ws)); in TEST()