Searched defs:code (Results 151 - 175 of 584) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dkeypad.c57 decode_add(t_decode **root, const char *str, short code) argument
121 node->key = code;
H A Dmvwin.c96 int code; local
108 code = mvwin(w, py, px);
110 return (code);
H A Dprefresh.c58 int code; local
60 code = pnoutrefresh(w, pminr, pminc, sminr, sminc, smaxr, smaxc);
61 if (code == OK)
62 code = doupdate();
64 return (code);
H A Dprintw.c53 int code; local
57 code = vw_printw(stdscr, fmt, ap);
60 return (code);
66 int code; local
70 if ((code = wmove(stdscr, y, x)) == OK)
71 code = vw_printw(stdscr, fmt, ap);
74 return (code);
80 int code; local
84 if ((code = wmove(w, y, x)) == OK)
85 code
94 int code; local
[all...]
H A Dscanw.c53 int code; local
57 code = vw_scanw(stdscr, fmt, ap);
60 return (code);
66 int code; local
70 if ((code = wmove(stdscr, y, x)) == OK)
71 code = vw_scanw(stdscr, fmt, ap);
74 return (code);
80 int code; local
84 if ((code = wmove(w, y, x)) == OK)
85 code
94 int code; local
[all...]
H A Dscr_dump.c58 int code; local
61 code = ERR;
64 code = putwin(curscr, fp);
68 return (code);
139 int code; local
141 code = scr_replace(__m_screen->_newscr, f);
143 return (code);
154 int code; local
161 code = ERR;
164 code
180 int code; local
[all...]
H A Dwadd_wch.c57 int code = wadd_wch(w, cc); local
59 if (code == ERR) {
63 return (code);
78 int code, x, y; local
83 code = ERR;
127 code = WFLUSH(w);
131 return (code);
H A Dwbrdr_st.c61 int x, y, code; local
63 code = ERR;
107 code = WFLUSH(w);
109 return (code);
H A Dwins_wch.c109 int code, nx, width; local
111 code = ERR;
164 code = WFLUSH(w);
166 return (code);
178 int code; local
180 code = __m_wins_wch(w, w->_cury, w->_curx, cc, NULL, NULL);
182 return (code);
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dregerror.c7 * This code is derived from software contributed to Berkeley by
13 * 1. Redistributions of source code must retain the above copyright
50 int code; member in struct:rerr
79 {0, "", "*** unknown regexp error code ***"}
95 for (r = rerrs; r->code != 0; r++)
96 if (r->code == errcode)
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_socks.c37 static void put_socks4_res(char *cp, int code);
38 static void put_socks5_res(char *cp, int code);
311 (void) sprintf(cp, "Result code = %u ", buf[1]);
418 put_socks4_res(char *cp, int code) argument
420 switch (code) {
434 (void) sprintf(cp, "0x%02x (unknown)", code);
439 put_socks5_res(char *cp, int code) argument
441 switch (code) {
470 (void) sprintf(cp, "code 0x%02x", code);
[all...]
/illumos-gate/usr/src/cmd/csh/
H A Dwait3.c58 static int wstat(int code, int status);
108 * Convert the status code to old style wait status
111 wstat(int code, int status) argument
115 switch (code) {
/illumos-gate/usr/src/cmd/audio/include/
H A DAudioError.h50 audioerror_t code; // error code member in class:AudioError
53 int sys; // system error code
56 code(val), sys(0)
57 { if (code == AUDIO_UNIXERROR) sys = errno; }
59 code((audioerror_t)val), sys(0)
60 { if (code == AUDIO_UNIXERROR) sys = errno; }
63 { code = val.code; sys = val.sys; return (*this); }
65 { return (code); }
[all...]
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioDebug.cc59 AudioError code, // error code
82 id, str, name, code.msg());
86 name, code.msg(), str);
92 name, code.msg(), str);
99 name, str, code.msg());
107 name, str, code.msg());
57 AudioStderrMsg( const Audio* cp, AudioError code, AudioSeverity sev, char *str) argument
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dprintfr.c167 int type = fp->fr_icmp, code; local
170 code = type & 0xff;
178 printf(" code %d", code);
/illumos-gate/usr/src/cmd/krb5/kadmin/kpasswd/
H A Dtty_kpasswd.c12 * this source code. Do *NOT* create a derivative of this
13 * source code before consulting with your legal department.
14 * Do *NOT* integrate *ANY* of this source code into another
63 long code = krb5_read_password(context, local
66 return code;
/illumos-gate/usr/src/cmd/tip/aculib/
H A Dhayes.c29 char code = 0, cr = 0; local
71 (void) read(FD, &code, 1);
73 if (code == '1' && cr == '0')
77 if ((code == '1' || code == '5') && cr == '\r')
107 * This piece of code attempts to get the hayes in sync.
113 char code = 0, cr = 0; local
144 (void) read(FD, &code, 1);
146 if (code == '0' && cr == '\r')
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dimport_sec_context.c67 krb5_error_code code; local
78 if ((code = (fns[i])(context)) != 0)
79 return code;
96 one when calling the serialization code. However, one of the
/illumos-gate/usr/src/ucblib/libucb/port/sys/
H A Dwait4.c140 * Convert the status code to old style wait status
143 wstat(int code, int status) argument
147 switch (code) {
/illumos-gate/usr/src/uts/common/io/ppp/sppp/
H A Ds_common.c45 putctl4(queue_t *q, uchar_t type, uchar_t code, uint16_t val) argument
53 mp->b_wptr[0] = code;
68 putctl8(queue_t *q, uchar_t type, uchar_t code, uint32_t val) argument
76 mp->b_wptr[0] = code;
/illumos-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkdb_xdr.c103 this code and its callers will have to be changed */
134 krb5_error_code code; local
139 if ((code = krb5_dbe_lookup_tl_data(context, entry, &tl_data)))
140 return(code);
209 krb5_error_code code; local
213 if ((code = krb5_dbe_lookup_tl_data(context, entry, &tl_data)))
214 return(code);
224 if ((code = krb5_parse_name(context,
227 return(code);
/illumos-gate/usr/src/lib/krb5/ss/
H A Derror.c59 void ss_error (int sci_idx, long code, const char * fmt, ...) argument
65 com_err_va (whoami, code, fmt, pvar);
70 void ss_perror (sci_idx, code, msg) /* for compatibility */
72 long code;
75 ss_error (sci_idx, code, "%s", msg);
H A Dhelp.c34 int code; local
39 request_name = ss_current_request(sci_idx, &code);
40 if (code != 0) {
41 ss_perror(sci_idx, code, "");
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregerror.c59 regerror(int code, const regex_t* p, char* buf, size_t size) argument
64 if (code++ == REG_VERSIONID)
66 else if (code >= 0 && code < elementsof(reg_error))
67 s = reg_error[code];
85 fatal(regdisc_t* disc, int code, const char* pattern) argument
90 (*disc->re_errorf)(NiL, disc, disc->re_errorlevel, "regular expression: %s: %s", pattern, reg_error[code+1]);
92 (*disc->re_errorf)(NiL, disc, disc->re_errorlevel, "regular expression: %s", reg_error[code+1]);
94 return code;
H A Ducs_names.h40 Ucs_code_t code; member in struct:Ucs_dat_s

Completed in 183 milliseconds

1234567891011>>