Searched defs:code (Results 1 - 25 of 584) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libnsl/yp/
H A Dyperr_string.c32 * Portions of this source code were derived from Berkeley
45 * yp error code. An input value of zero will return a success message.
51 yperr_string(int code) argument
53 switch (code) {
89 return ("unknown yp client error code");
/illumos-gate/usr/src/cmd/isns/isnsadm/
H A Disnsadm_msg.c34 char *getTextMessage(msg_code_t code) { argument
35 switch (code) {
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dutils.c33 result_code_to_str(int code) argument
35 switch (code) {
160 return ((char *)gettext("Unknown error code"));
/illumos-gate/usr/src/boot/sys/boot/ofw/libofw/
H A Dofw_reboot.c8 * 1. Redistributions of source code must retain the above copyright
34 exit(int code) argument
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A Dreboot.c8 * 1. Redistributions of source code must retain the above copyright
34 exit(int code) argument
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dcompare_name.c39 krb5_error_code code; local
51 code = krb5_gss_init_context(&context);
52 if (code) {
53 *minor_status = code;
H A Ddisp_name.c34 krb5_error_code code; local
37 code = krb5_gss_init_context(&context);
38 if (code) {
39 *minor_status = code;
52 if ((code = krb5_unparse_name(context,
54 *minor_status = code;
H A Drel_name.c33 krb5_error_code code; local
35 code = krb5_gss_init_context(&context);
36 if (code) {
37 *minor_status = code;
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dbkgrnd.c57 int code; local
63 code = wbkgrnd(stdscr, bg);
65 return __m_return_code("bkgrnd", code);
H A Dbox_set.c53 int code; local
59 code = wborder_set(
65 return __m_return_code("box_set", code);
H A Dbrdr_st.c52 int code; local
61 code = wborder_set(stdscr, ls, rs, ts, bs, tl, tr, bl, br);
63 return __m_return_code("border_set", code);
H A Dclear.c52 int code; local
58 code = wclear(stdscr);
60 return __m_return_code("clear", code);
69 int code; local
75 code = werase(stdscr);
77 return __m_return_code("erase", code);
H A Dkillwch.c50 int code; local
56 code = __m_tty_wc(VERASE, wcp);
58 return __m_return_int("erasewchar", code);
65 int code; local
71 code = __m_tty_wc(VKILL, wcp);
73 return __m_return_int("killwchar", code);
H A Dnonl.c52 int code; local
64 if ((code = __m_tty_set(&cur_term->_prog)) == OK)
67 return __m_return_code("nl", code);
76 int code; local
89 if ((code = __m_tty_set(&cur_term->_prog)) == OK)
92 return __m_return_code("nonl", code);
H A Doverlay.c51 int code; local
57 code = __m_copywin(s, t, 1);
67 int code; local
73 code = __m_copywin(s, t, 0);
H A Dredraw.c50 int code; local
56 code = wredrawln(w, 0, w->_maxy);
58 return __m_return_code("redrawwin", code);
H A Drefresh.c51 int code; local
57 code = wrefresh(stdscr);
59 return __m_return_code("wrefresh", code);
H A Dvw_scanw.c59 int code; local
65 if ((code = wgetnstr(w, buffer, (int) sizeof buffer)) == OK)
72 return __m_return_code("vw_scanw", code);
H A Dwaddch.c51 int code; local
59 code = wadd_wch(w, &cc);
61 return __m_return_code("waddch", code);
H A Dwinsch.c51 int code; local
59 code = wins_wch(w, &cc);
61 return __m_return_code("winsch", code);
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dbkgrnd.c61 int code; local
63 code = wbkgrnd(stdscr, bg);
65 return (code);
H A Dclear.c57 int code; local
59 code = wclear(stdscr);
61 return (code);
71 int code; local
73 code = werase(stdscr);
75 return (code);
H A Dnonl.c57 int code; local
65 if ((code = __m_tty_set_prog_mode()) == OK)
68 return (code);
77 int code; local
86 if ((code = __m_tty_set_prog_mode()) == OK)
89 return (code);
H A Dredraw.c54 int code; local
56 code = wredrawln(w, 0, w->_maxy);
58 return (code);
H A Drefresh.c54 int code; local
56 code = wrefresh(stdscr);
58 return (code);

Completed in 90 milliseconds

1234567891011>>