Home
last modified time | relevance | path

Searched refs:err_code (Results 1 – 25 of 34) sorted by relevance

12

/titanic_41/usr/src/cmd/dcs/sparc/sun4u/
H A Ddcs_msg.c114 dcs_log_msg(int priority, int err_code, ...) in dcs_log_msg() argument
122 if ((err_code < 0) || (err_code >= DCS_MSG_COUNT)) { in dcs_log_msg()
127 va_start(vap, err_code); in dcs_log_msg()
128 (void) vsnprintf(err_str, MAX_MSG_LEN, dcs_err_fmt[err_code], vap); in dcs_log_msg()
150 dcs_strerror(int err_code) in dcs_strerror() argument
153 if ((err_code < 0) || (err_code >= DCS_MSG_COUNT)) { in dcs_strerror()
157 return (dgettext(TEXT_DOMAIN, dcs_err_fmt[err_code])); in dcs_strerror()
172 dcs_cfga_str(char **err_strp, int err_code) in dcs_cfga_str() argument
198 ep = config_strerror(err_code); in dcs_cfga_str()
H A Ddcs.h290 int ses_close(int err_code);
306 char *dcs_cfga_str(char **err_str, int err_code);
309 const char *dcs_strerror(int err_code);
H A Ddcs_ses.c190 ses_close(int err_code) in ses_close() argument
214 req_hdr.status = err_code; in ses_close()
/titanic_41/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dsetup.c266 int err_code = 1; local
278 err_code = -1;
297 (void) restartterm(termname, ofd, &err_code);
299 switch (err_code) {
310 err_code = -1;
318 err_return, err_code
321 *err_return = err_code;
323 if (err_code == 1) {
324 err_code = OK;
326 err_code = ERR;
[all …]
/titanic_41/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dsetup.c298 int err_code = 1; in __m_setupterm() local
311 err_code = -1; in __m_setupterm()
338 (void) restartterm(termname, ofd, &err_code); in __m_setupterm()
340 switch (err_code) { in __m_setupterm()
351 err_code = -1; in __m_setupterm()
356 *err_return = err_code; in __m_setupterm()
358 if (err_code == 1) { in __m_setupterm()
359 err_code = OK; in __m_setupterm()
361 err_code = ERR; in __m_setupterm()
365 } else if (err_code != 1) { in __m_setupterm()
[all …]
/titanic_41/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_sort_line.c77 int *err_code, Dwarf_Small ** new_line_ptr);
127 int is_64_bit, int *any_change, int *err_code) in _dwarf_ld_sort_lines() argument
130 is_64_bit,any_change,err_code); in _dwarf_ld_sort_lines()
135 int is_64_bit, int *any_change, int *err_code) in dwarf_ld_sort_lines() argument
167 *err_code = DW_DLE_ALLOC_FAIL; in dwarf_ld_sort_lines()
184 err_code, in dwarf_ld_sort_lines()
191 err_code, &new_line_ptr)) { in dwarf_ld_sort_lines()
303 int *err_code, Dwarf_Small ** new_line_ptr) in _dwarf_update_line_sec() argument
395 *err_code = dwarf_errno(error); in _dwarf_update_line_sec()
570 *err_code = DW_DLE_LINE_NUM_OPERANDS_BAD; in _dwarf_update_line_sec()
[all …]
/titanic_41/usr/src/cmd/bart/
H A Dcreate.c41 int *err_code);
419 int fd, ret, err_code, i, result; in eval_file() local
423 err_code = EXIT; in eval_file()
460 return (err_code); in eval_file()
473 err_code = WARNING_EXIT; in eval_file()
480 err_code = WARNING_EXIT; in eval_file()
500 err_code = WARNING_EXIT; in eval_file()
520 acl_str = get_acl_string(fname, statb, &err_code); in eval_file()
542 return (err_code); in eval_file()
611 get_acl_string(const char *fname, const struct stat64 *statb, int *err_code) in get_acl_string() argument
[all …]
H A Drules.c611 add_subtree_rule(char *rule, char *reloc_root, int create, int *err_code) in add_subtree_rule() argument
681 *err_code = WARNING_EXIT; in add_subtree_rule()
745 *err_code = WARNING_EXIT; in add_subtree_rule()
762 *err_code = WARNING_EXIT; in add_subtree_rule()
/titanic_41/usr/src/lib/libxcurses/src/tput/
H A Dtput.c144 int err_code; local
182 (void) setupterm(term_name, fileno(stdout), &err_code);
183 switch (err_code) {
199 err_code = do_tput(argc, argv);
200 } while (S_flag && err_code == SUCCESS);
201 return (err_code);
/titanic_41/usr/src/lib/libxcurses/src/tabs/
H A Dtabs.c174 int err_code; local
273 (void) setupterm(term_name, fileno(stdout), &err_code);
274 switch (err_code) {
286 err_code = do_tabs();
291 return (err_code);
/titanic_41/usr/src/lib/librstp/common/
H A Dstpmgmt.c35 int err_code; in STP_IN_stpm_create() local
45 this = stp_in_stpm_create (vlan_id, name, &err_code); in STP_IN_stpm_create()
55 return err_code; in STP_IN_stpm_create()
H A Dstp_in.c35 stp_in_stpm_create (int vlan_id, char* name, int* err_code) in stp_in_stpm_create() argument
42 *err_code = STP_Nothing_To_Do; in stp_in_stpm_create()
48 *err_code = STP_Cannot_Create_Instance_For_Vlan; in stp_in_stpm_create()
52 *err_code = STP_OK; in stp_in_stpm_create()
62 int rc, err_code; in _stp_in_stpm_enable() local
83 this = stp_in_stpm_create (vlan_id, name, &err_code); in _stp_in_stpm_enable()
703 int rc = 0, prev_prio, err_code; in STP_IN_stpm_set_cfg() local
761 this = stp_in_stpm_create (vlan_id, uid_cfg->vlan_name, &err_code); in STP_IN_stpm_set_cfg()
764 return err_code; in STP_IN_stpm_set_cfg()
H A Dstpm.h124 void* stp_in_stpm_create (int vlan_id, char *name, int *err_code);
/titanic_41/usr/src/cmd/ssh/ssh-http-proxy-connect/
H A Dssh-http-proxy-connect.c98 int retval, err_code, sock, ssh_port; in main() local
192 if ((err_code = getaddrinfo(httpproxy, httpproxyport, &hints, &ai)) in main()
197 gai_strerror(err_code)); in main()
/titanic_41/usr/src/cmd/iscsid/
H A Discsid.c365 int err_code; in iscsi_kernel_door() local
417 err_code = door_return((char *)cnf, cnf_len, NULL, 0); in iscsi_kernel_door()
419 switch (err_code) { in iscsi_kernel_door()
436 (void) fprintf(stderr, "door_return error(%s,%d)", err_txt, err_code); in iscsi_kernel_door()
441 err_code); in iscsi_kernel_door()
/titanic_41/usr/src/cmd/ssh/ssh-socks5-proxy-connect/
H A Dssh-socks5-proxy-connect.c244 int retval, err_code, sock; in main() local
315 if ((err_code = getaddrinfo(socks_server, socks_port, &hints, &ai)) in main()
318 gai_strerror(err_code)); in main()
/titanic_41/usr/src/lib/krb5/plugins/kdb/db2/
H A Dkdb_db2.h176 long err_code );
189 long err_code);
/titanic_41/usr/src/cmd/listen/
H A Dlserror.h150 int err_code; member
H A Dlslog.c181 logexit(err_list[code].err_code, msg); in clean_up()
/titanic_41/usr/src/cmd/krb5/slave/
H A Dkprop.c779 send_error(context, my_creds, fd, err_text, err_code) in send_error() argument
784 krb5_error_code err_code;
794 error.error = err_code - ERROR_TABLE_BASE_krb5;
800 text = error_message(err_code);
H A Dkpropd.c1706 send_error(context, fd, err_code, err_text) in send_error() argument
1709 krb5_error_code err_code;
1725 text = error_message(err_code);
1727 error.error = err_code - ERROR_TABLE_BASE_krb5;
1731 sprintf(buf, "%s %s", error_message(err_code),
/titanic_41/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_srv.c105 krb5_error_code err_code, in pkinit_create_edata() argument
111 err_code, error_message(err_code)); in pkinit_create_edata()
112 switch(err_code) { in pkinit_create_edata()
128 err_code, error_message(err_code)); in pkinit_create_edata()
/titanic_41/usr/src/lib/libslp/clib/
H A Dslp.h342 SLPError err_code /* SLP error code */
/titanic_41/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsrvsvc_sd.c520 uint32_t err_code; in srvsvc_sd_status_to_error() member
530 return (errmap[i].err_code); in srvsvc_sd_status_to_error()
/titanic_41/usr/src/lib/krb5/kdb/
H A Dkdb5.h127 long err_code);

12