Searched defs:ws (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dfgetws.c40 fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp) argument
53 wsp = ws;
59 if (wsp == ws) {
74 return (ws);
/bionic/libc/bionic/
H A Dpty.cpp118 int openpty(int* master, int* slave, char* name, const termios* t, const winsize* ws) { argument
147 if (ws != NULL) {
148 ioctl(*slave, TIOCSWINSZ, ws);
154 int forkpty(int* master, char* name, const termios* t, const winsize* ws) { argument
156 if (openpty(master, &slave, name, t, ws) == -1) {
/bionic/tests/
H A Dstdio_test.cpp258 wchar_t* ws = NULL; local
259 EXPECT_EQ(8, snprintf(buf, sizeof(buf), "<%ls>", ws));
263 ws = chars;
264 EXPECT_EQ(4, snprintf(buf, sizeof(buf), "<%ls>", ws));

Completed in 92 milliseconds