Lines Matching refs:code
52 int code = ERR; in NCURSES_EXPORT() local
55 if ((code = vsscanf(buf, fmt, argp)) == EOF) { in NCURSES_EXPORT()
56 code = ERR; in NCURSES_EXPORT()
60 return code; in NCURSES_EXPORT()
67 int code = ERR; in vw_scanw() local
70 if ((code = vsscanf(buf, fmt, argp)) == EOF) { in vw_scanw()
71 code = ERR; in vw_scanw()
75 return code; in vw_scanw()
81 int code; in scanw() local
87 code = vw_scanw(stdscr, fmt, ap); in scanw()
89 return (code); in scanw()
95 int code; in wscanw() local
101 code = vw_scanw(win, fmt, ap); in wscanw()
103 return (code); in wscanw()
109 int code; in mvscanw() local
113 code = (move(y, x) == OK) ? vw_scanw(stdscr, fmt, ap) : ERR; in mvscanw()
115 return (code); in mvscanw()
121 int code; in mvwscanw() local
125 code = (wmove(win, y, x) == OK) ? vw_scanw(win, fmt, ap) : ERR; in mvwscanw()
127 return (code); in mvwscanw()