Searched refs:ws (Results 1 - 25 of 102) sorted by relevance

12345

/illumos-gate/usr/src/lib/libcurses/screen/
H A D_addwstr.c40 addwstr(wchar_t *ws) argument
42 return (waddwstr(stdscr, ws));
H A D_getwstr.c40 getwstr(wchar_t *ws) argument
42 return (wgetwstr(stdscr, ws));
H A D_inswstr.c40 inswstr(wchar_t *ws) argument
42 return (winswstr(stdscr, ws));
H A D_inwstr.c40 inwstr(wchar_t *ws) argument
42 return (winwstr(stdscr, ws));
H A D_addnwstr.c40 addnwstr(wchar_t *ws, int n) argument
42 return (waddnwstr(stdscr, ws, n));
H A D_getnwstr.c40 getnwstr(wchar_t *ws, int n) argument
42 return (wgetnwstr(stdscr, ws, n));
H A D_innwstr.c40 innwstr(wchar_t *ws, int n) argument
42 return (winnwstr(stdscr, ws, n));
H A D_insnwstr.c40 insnwstr(wchar_t *ws, int n) argument
42 return (winsnwstr(stdscr, ws, n));
H A D_mvaddwstr.c40 mvaddwstr(int y, int x, wchar_t *ws) argument
42 return (mvwaddwstr(stdscr, y, x, ws));
H A D_mvgetwstr.c40 mvgetwstr(int y, int x, wchar_t *ws) argument
42 return (mvwgetwstr(stdscr, y, x, ws));
H A D_mvinswstr.c40 mvinswstr(int y, int x, wchar_t *ws) argument
42 return (mvwinswstr(stdscr, y, x, ws));
H A D_mvinwstr.c40 mvinwstr(int y, int x, wchar_t *ws) argument
42 return (mvwinwstr(stdscr, y, x, ws));
H A D_waddwstr.c40 waddwstr(WINDOW *win, wchar_t *ws) argument
42 return (waddnwstr(win, ws, -1));
H A D_winswstr.c40 winswstr(WINDOW *win, wchar_t *ws) argument
42 return (winsnwstr(win, ws, -1));
H A D_mvaddnwstr.c40 mvaddnwstr(int y, int x, wchar_t *ws, int n) argument
42 return (mvwaddnwstr(stdscr, y, x, ws, n));
H A D_mvgetnwstr.c40 mvgetnwstr(int y, int x, wchar_t *ws, int n) argument
42 return (mvwgetnwstr(stdscr, y, x, ws, n));
H A D_mvinnwstr.c40 mvinnwstr(int y, int x, wchar_t *ws, int n) argument
42 return (mvwinnwstr(stdscr, y, x, ws, n));
H A D_mvinsnwstr.c40 mvinsnwstr(int y, int x, wchar_t *ws, int n) argument
42 return (mvwinsnwstr(stdscr, y, x, ws, n));
H A D_mvwaddwstr.c40 mvwaddwstr(WINDOW *win, int y, int x, wchar_t *ws) argument
42 return ((wmove(win, y, x) == ERR ? ERR : waddwstr(win, ws)));
H A D_mvwgetwstr.c40 mvwgetwstr(WINDOW *win, int y, int x, wchar_t *ws) argument
42 return ((wmove(win, y, x) == ERR ? ERR : wgetwstr(win, ws)));
H A D_mvwinswstr.c40 mvwinswstr(WINDOW *win, int y, int x, wchar_t *ws) argument
42 return ((wmove(win, y, x) == ERR ? ERR : winswstr(win, ws)));
H A D_mvwinwstr.c40 mvwinwstr(WINDOW *win, int y, int x, wchar_t *ws) argument
42 return ((wmove(win, y, x) == ERR ? ERR : winwstr(win, ws)));
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwmemchr.c35 wmemchr(const wchar_t *ws, wchar_t wc, size_t n) argument
39 if (*ws++ == wc)
40 return ((wchar_t *)--ws);
H A Dwmemset.c35 wmemset(wchar_t *ws, wchar_t wc, size_t n) argument
37 wchar_t *ows1 = ws;
41 *ws++ = wc;
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dfgetws.c48 _fgetws_impl(wchar_t *_RESTRICT_KYWD ws, int n, FILE *_RESTRICT_KYWD fp, argument
65 wsp = ws;
74 if (wsp == ws) {
88 return (ws);
92 fgetws(wchar_t *_RESTRICT_KYWD ws, int n, FILE *_RESTRICT_KYWD fp) argument
94 return (_fgetws_impl(ws, n, fp, 0));
98 __fgetws_xpg5(wchar_t *ws, int n, FILE *fp) argument
100 return (_fgetws_impl(ws, n, fp, 1));
104 getws(wchar_t *ws) argument
112 wsp = ws;
[all...]

Completed in 98 milliseconds

12345