Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 1368) sorted by relevance

12345678910>>...55

/titanic_52/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_solaris.c40 errcode_t code, code2; in __profile_iter_name_value() local
49 if (code = init_list(&values)) in __profile_iter_name_value()
50 return (code); in __profile_iter_name_value()
52 code = profile_iterator_create(profile, hierarchy, in __profile_iter_name_value()
54 while (code == 0) { in __profile_iter_name_value()
55 code = profile_iterator(&state, &name, &value); in __profile_iter_name_value()
56 if (code == 0 && name != NULL) { in __profile_iter_name_value()
62 code2 = code; in __profile_iter_name_value()
77 code = 0; in __profile_iter_name_value()
92 return (code); in __profile_iter_name_value()
109 errcode_t code; __profile_set_appdefaults() local
142 errcode_t code; __profile_set_logging() local
195 errcode_t code; __profile_set_libdefaults() local
219 errcode_t code; __profile_set_kdc() local
256 errcode_t code; __profile_release() local
297 errcode_t code = 0; __profile_add_domain_mapping() local
329 errcode_t code; __profile_remove_domain_mapping() local
373 errcode_t code; __profile_get_realm_entry() local
413 errcode_t code; __profile_add_realm_entry() local
450 errcode_t code; __profile_get_default_realm() local
509 errcode_t code; __profile_add_realm() local
581 errcode_t code, code2, code3; __profile_remove_xrealm_mapping() local
676 errcode_t code; __profile_remove_realm() local
741 errcode_t code; __profile_add_xrealm_mapping() local
799 errcode_t code; __profile_validate() local
931 errcode_t code = 0; __profile_init() local
[all...]
/titanic_52/usr/src/lib/iconv_modules/ko/common/
H A Deuc_to_johap92.c31 static unsigned short _wansung_to_johap92(unsigned short code);
91 unsigned short code; in _icv_iconv() local
107 code = _wansung_to_johap92((unsigned short)(*ib)<<8 | in _icv_iconv()
109 if (code != FAILED && code != ILLEGAL_SEQ) in _icv_iconv()
111 *ob++ = (unsigned char)(code >> 8); in _icv_iconv()
112 *ob++ = (unsigned char)(code & 0xFF); in _icv_iconv()
134 static unsigned short _wansung_to_johap92(unsigned short code) in _wansung_to_johap92() argument
142 if ((unsigned short)(code & 0xFF) < 0xA1) in _wansung_to_johap92()
145 if (code > in _wansung_to_johap92()
[all...]
/titanic_52/usr/src/cmd/krb5/kadmin/kclient/
H A Dksetpw.c52 krb5_error_code code = 0; in main() local
77 code = krb5_init_context(&ctx); in main()
78 if (code != 0) { in main()
79 com_err(whoami, code, gettext("krb5_init_context() failed")); in main()
98 if ((code = krb5_kt_resolve(ctx, ktname, &kt)) != 0) { in main()
99 com_err(whoami, code, in main()
108 if ((code = krb5_cc_resolve(ctx, optarg, &cc)) != 0) { in main()
109 com_err(whoami, code, in main()
133 code = krb5_string_to_enctype(token, in main()
136 if (code ! in main()
261 krb5_error_code code; kt_remove_entries() local
336 krb5_error_code code; kt_add_entry() local
[all...]
/titanic_52/usr/src/cmd/krb5/kadmin/cli/
H A Dkeytab.c83 int code; in process_keytab() local
87 if (code = krb5_kt_default(my_context, keytab)) { in process_keytab()
88 com_err(whoami, code, gettext("while opening default keytab")); in process_keytab()
91 if (code = krb5_kt_get_name(my_context, *keytab, buf, BUFSIZ)) { in process_keytab()
92 com_err(whoami, code, gettext("while retrieving keytab name")); in process_keytab()
120 code = krb5_kt_resolve(my_context, *keytab_str, keytab); in process_keytab()
121 if (code != 0) { in process_keytab()
122 com_err(whoami, code, in process_keytab()
137 int code, num, i; in kadmin_keytab_add() local
190 code in kadmin_keytab_add()
223 int code; kadmin_keytab_remove() local
268 int code, nkeys, i; add_principal() local
431 int code, did_something; remove_principal() local
[all...]
/titanic_52/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dgetnstr.c54 int code; in getnstr() local
56 code = wgetnstr(stdscr, str, n); in getnstr()
58 return (code); in getnstr()
66 int code; in mvgetnstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvgetnstr()
69 code = wgetnstr(stdscr, str, n); in mvgetnstr()
71 return (code); in mvgetnstr()
79 int code; in mvwgetnstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwgetnstr()
82 code in mvwgetnstr()
92 int code; getstr() local
104 int code; mvgetstr() local
117 int code; mvwgetstr() local
130 int code; wgetstr() local
[all...]
H A Dinsnstr.c54 int code; in insnstr() local
56 code = winsnstr(stdscr, mbs, n); in insnstr()
58 return (code); in insnstr()
66 int code; in mvinsnstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvinsnstr()
69 code = winsnstr(stdscr, mbs, n); in mvinsnstr()
71 return (code); in mvinsnstr()
79 int code; in mvwinsnstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwinsnstr()
82 code in mvwinsnstr()
92 int code; insstr() local
104 int code; mvinsstr() local
117 int code; mvwinsstr() local
130 int code; winsstr() local
[all...]
H A Daddnstr.c54 int code; in addnstr() local
56 code = waddnstr(stdscr, str, n); in addnstr()
58 return (code); in addnstr()
66 int code; in mvaddnstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvaddnstr()
69 code = waddnstr(stdscr, str, n); in mvaddnstr()
71 return (code); in mvaddnstr()
79 int code; in mvwaddnstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwaddnstr()
82 code in mvwaddnstr()
92 int code; addstr() local
104 int code; mvaddstr() local
117 int code; mvwaddstr() local
130 int code; waddstr() local
[all...]
H A Daddnws.c54 int code; in addnwstr() local
56 code = waddnwstr(stdscr, wcs, n); in addnwstr()
58 return (code); in addnwstr()
66 int code; in mvaddnwstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvaddnwstr()
69 code = waddnwstr(stdscr, wcs, n); in mvaddnwstr()
71 return (code); in mvaddnwstr()
79 int code; in mvwaddnwstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwaddnwstr()
82 code in mvwaddnwstr()
92 int code; addwstr() local
104 int code; mvaddwstr() local
117 int code; mvwaddwstr() local
130 int code; waddwstr() local
[all...]
H A Daddwchn.c54 int code; in add_wchnstr() local
56 code = wadd_wchnstr(stdscr, ccs, n); in add_wchnstr()
58 return (code); in add_wchnstr()
66 int code; in mvadd_wchnstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvadd_wchnstr()
69 code = wadd_wchnstr(stdscr, ccs, n); in mvadd_wchnstr()
71 return (code); in mvadd_wchnstr()
79 int code; in mvwadd_wchnstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwadd_wchnstr()
82 code in mvwadd_wchnstr()
92 int code; add_wchstr() local
104 int code; mvadd_wchstr() local
117 int code; mvwadd_wchstr() local
130 int code; wadd_wchstr() local
[all...]
H A Dgetn_ws.c54 int code; in getn_wstr() local
56 code = wgetn_wstr(stdscr, wis, n); in getn_wstr()
58 return (code); in getn_wstr()
66 int code; in mvgetn_wstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvgetn_wstr()
69 code = wgetn_wstr(stdscr, wis, n); in mvgetn_wstr()
71 return (code); in mvgetn_wstr()
79 int code; in mvwgetn_wstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwgetn_wstr()
82 code in mvwgetn_wstr()
92 int code; get_wstr() local
104 int code; mvget_wstr() local
117 int code; mvwget_wstr() local
131 int code; wget_wstr() local
[all...]
H A Din_wchn.c54 int code; in in_wchnstr() local
56 code = win_wchnstr(stdscr, ccs, n); in in_wchnstr()
58 return (code); in in_wchnstr()
66 int code; in mvin_wchnstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvin_wchnstr()
69 code = win_wchnstr(stdscr, ccs, n); in mvin_wchnstr()
71 return (code); in mvin_wchnstr()
79 int code; in mvwin_wchnstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwin_wchnstr()
82 code in mvwin_wchnstr()
92 int code; in_wchstr() local
104 int code; mvin_wchstr() local
117 int code; mvwin_wchstr() local
130 int code; win_wchstr() local
[all...]
H A Dinchn.c54 int code; in inchnstr() local
56 code = winchnstr(stdscr, chs, n); in inchnstr()
58 return (code); in inchnstr()
66 int code; in mvinchnstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvinchnstr()
69 code = winchnstr(stdscr, chs, n); in mvinchnstr()
71 return (code); in mvinchnstr()
79 int code; in mvwinchnstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwinchnstr()
82 code in mvwinchnstr()
92 int code; inchstr() local
104 int code; mvinchstr() local
117 int code; mvwinchstr() local
130 int code; winchstr() local
[all...]
H A Dins_nws.c54 int code; in ins_nwstr() local
56 code = wins_nwstr(stdscr, wcs, n); in ins_nwstr()
58 return (code); in ins_nwstr()
66 int code; in mvins_nwstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvins_nwstr()
69 code = wins_nwstr(stdscr, wcs, n); in mvins_nwstr()
71 return (code); in mvins_nwstr()
79 int code; in mvwins_nwstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwins_nwstr()
82 code in mvwins_nwstr()
92 int code; ins_wstr() local
104 int code; mvins_wstr() local
117 int code; mvwins_wstr() local
130 int code; wins_wstr() local
[all...]
H A Daddchn.c54 int code; in addchnstr() local
56 code = waddchnstr(stdscr, chs, n); in addchnstr()
58 return (code); in addchnstr()
66 int code; in mvaddchnstr() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvaddchnstr()
69 code = waddchnstr(stdscr, chs, n); in mvaddchnstr()
71 return (code); in mvaddchnstr()
79 int code; in mvwaddchnstr() local
81 if ((code = wmove(w, y, x)) == OK) in mvwaddchnstr()
82 code in mvwaddchnstr()
92 int code; addchstr() local
104 int code; mvaddchstr() local
117 int code; mvwaddchstr() local
130 int code; waddchstr() local
[all...]
H A Dinnstr.c56 int code; in innstr() local
58 code = winnstr(stdscr, s, n); in innstr()
60 return (code); in innstr()
68 int code; in mvinnstr() local
70 if ((code = wmove(stdscr, y, x)) == OK) in mvinnstr()
71 code = winnstr(stdscr, s, n); in mvinnstr()
73 return (code); in mvinnstr()
81 int code; in mvwinnstr() local
83 if ((code = wmove(w, y, x)) == OK) in mvwinnstr()
84 code in mvwinnstr()
94 int code; instr() local
106 int code; mvinstr() local
119 int code; mvwinstr() local
132 int code; winstr() local
[all...]
H A Dinnwstr.c56 int code; in innwstr() local
58 code = winnwstr(stdscr, wcs, n); in innwstr()
60 return (code); in innwstr()
68 int code; in mvinnwstr() local
70 if ((code = wmove(stdscr, y, x)) == OK) in mvinnwstr()
71 code = winnwstr(stdscr, wcs, n); in mvinnwstr()
73 return (code); in mvinnwstr()
81 int code; in mvwinnwstr() local
83 if ((code = wmove(w, y, x)) == OK) in mvwinnwstr()
84 code in mvwinnwstr()
94 int code; inwstr() local
106 int code; mvinwstr() local
119 int code; mvwinwstr() local
132 int code; winwstr() local
[all...]
H A Dhln.c54 int code; in hline() local
56 code = whline(stdscr, h, n); in hline()
58 return (code); in hline()
66 int code; in mvhline() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvhline()
69 code = whline(stdscr, h, n); in mvhline()
71 return (code); in mvhline()
79 int code; in mvwhline() local
81 if ((code = wmove(w, y, x)) == OK) in mvwhline()
82 code in mvwhline()
92 int code; vline() local
104 int code; mvvline() local
117 int code; mvwvline() local
[all...]
H A Dhln_st.c54 int code; in hline_set() local
56 code = whline_set(stdscr, h, n); in hline_set()
58 return (code); in hline_set()
66 int code; in mvhline_set() local
68 if ((code = wmove(stdscr, y, x)) == OK) in mvhline_set()
69 code = whline_set(stdscr, h, n); in mvhline_set()
71 return (code); in mvhline_set()
79 int code; in mvwhline_set() local
81 if ((code = wmove(w, y, x)) == OK) in mvwhline_set()
82 code in mvwhline_set()
92 int code; vline_set() local
104 int code; mvvline_set() local
117 int code; mvwvline_set() local
[all...]
/titanic_52/usr/src/uts/intel/sys/
H A Dmca_x86.h205 * Macros to extract error code and model-specific error code.
218 * Bit definitions for the architectural error code.
226 #define MCAX86_ERRCODE_TT(code) \ argument
227 (((code) & MCAX86_ERRCODE_TT_MASK) >> MCAX86_ERRCODE_TT_SHIFT)
235 #define MCAX86_ERRCODE_LL(code) \ argument
236 ((code) & MCAX86_ERRCODE_LL_MASK)
249 #define MCAX86_ERRCODE_RRRR(code) \ argument
250 (((code) & MCAX86_ERRCODE_RRRR_MASK) >> MCAX86_ERRCODE_RRRR_SHIFT)
258 #define MCAX86_ERRCODE_PP(code) \ argument
266 MCAX86_ERRCODE_II(code) global() argument
273 MCAX86_ERRCODE_T(code) global() argument
282 MCAX86_ERRCODE_MMM(code) global() argument
303 MCAX86_ERRCODE_CCCC(code) global() argument
339 MCAX86_ERRCODE_ISSIMPLE_INTERNAL_UNCLASS(code) global() argument
348 MCAX86_ERRCODE_ISSIMPLE(code) global() argument
379 MCAX86_ERRCODE_ISGENERIC_MEMHIER(code) global() argument
388 MCAX86_ERRCODE_ISTLB(code) global() argument
398 MCAX86_ERRCODE_ISMEMHIER(code) global() argument
410 MCAX86_ERRCODE_ISBUS_INTERCONNECT(code) global() argument
419 MCAX86_ERRCODE_ISMEMORY_CONTROLLER(code) global() argument
424 MCAX86_ERRCODE_ISCOMPOUND(code) global() argument
431 MCAX86_ERRCODE_UNKNOWN(code) global() argument
[all...]
/titanic_52/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dslk.c52 int code = ERR; in slk_init() local
60 code = OK; in slk_init()
63 return __m_return_code("slk_init", code); in slk_init()
69 int code = ERR; in slk_attron() local
76 code = wattron(__m_screen->_slk._w, at); in slk_attron()
78 return __m_return_code("slk_attron", code); in slk_attron()
84 int code = ERR; in slk_attroff() local
91 code = wattroff(__m_screen->_slk._w, at); in slk_attroff()
93 return __m_return_code("slk_attroff", code); in slk_attroff()
99 int code in slk_attrset() local
114 int code = ERR; slk_attr_off() local
129 int code = ERR; slk_attr_on() local
144 int code = ERR; slk_attr_set() local
159 int code = ERR; slk_color() local
174 int code = ERR; slk_touch() local
189 int code = ERR; slk_clear() local
210 int i, code = ERR; slk_restore() local
239 int code = ERR; slk_noutrefresh() local
254 int code = ERR; slk_refresh() local
279 int code = ERR; slk_set() local
297 int i, width, code = ERR; slk_wset() local
[all...]
H A Dinnstr.c51 int code; variable
57 code = winnstr(stdscr, s, n);
59 return __m_return_code("innstr", code);
68 int code; variable
74 if ((code = wmove(stdscr, y, x)) == OK)
75 code = winnstr(stdscr, s, n);
77 return __m_return_code("mvinnstr", code);
87 int code; variable
93 if ((code = wmove(w, y, x)) == OK)
94 code
103 int code; global() variable
119 int code; global() variable
137 int code; global() variable
154 int code; global() variable
[all...]
H A Dinsnstr.c51 int code; variable
57 code = winsnstr(stdscr, mbs, n);
59 return __m_return_code("insnstr", code);
68 int code; variable
74 if ((code = wmove(stdscr, y, x)) == OK)
75 code = winsnstr(stdscr, mbs, n);
77 return __m_return_code("mvinsnstr", code);
87 int code; variable
93 if ((code = wmove(w, y, x)) == OK)
94 code
103 int code; global() variable
119 int code; global() variable
137 int code; global() variable
154 int code; global() variable
[all...]
H A Daddnstr.c51 int code; variable
57 code = waddnstr(stdscr, str, n);
59 return __m_return_code("addnstr", code);
68 int code; variable
74 if ((code = wmove(stdscr, y, x)) == OK)
75 code = waddnstr(stdscr, str, n);
77 return __m_return_code("mvaddnstr", code);
87 int code; variable
93 if ((code = wmove(w, y, x)) == OK)
94 code
103 int code; global() variable
119 int code; global() variable
137 int code; global() variable
154 int code; global() variable
[all...]
H A Dgetnstr.c51 int code; variable
57 code = wgetnstr(stdscr, str, n);
59 return __m_return_code("getnstr", code);
68 int code; variable
74 if ((code = wmove(stdscr, y, x)) == OK)
75 code = wgetnstr(stdscr, str, n);
77 return __m_return_code("mvgetnstr", code);
87 int code; variable
93 if ((code = wmove(w, y, x)) == OK)
94 code
103 int code; global() variable
119 int code; global() variable
137 int code; global() variable
155 int code; global() variable
[all...]
/titanic_52/usr/src/cmd/krb5/kadmin/kpasswd/
H A Dkpasswd.c11 * this source code. Do *NOT* create a derivative of this
12 * source code before consulting with your legal department.
13 * Do *NOT* integrate *ANY* of this source code into another
107 kadm5_ret_t code; local
141 code = krb5_cc_default(context, &ccache);
143 if (code == 0) {
145 code = krb5_cc_get_principal(context, ccache, &princ);
147 with an error code */
149 if (code == 0) {
150 code
[all...]

12345678910>>...55