Searched defs:code (Results 176 - 200 of 584) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libfakekernel/common/
H A Dkiconv.c51 size_t code; local
53 code = iconv(handle, (const char **)inbuf, inbytesleft,
56 return (code);
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_err.c8 * 1. Redistributions of source code must retain the above copyright notice,
55 sfxge_err(efsys_identifier_t *arg, unsigned int code, uint32_t dword0, argument
61 ASSERT3U(code, <, EFX_ERR_NCODES);
64 __sfxge_err[code], dword1, dword0);
/illumos-gate/usr/src/boot/lib/libz/
H A Dinftrees.h12 information needed to do the operation requested by the code that
14 table that indexes more bits of the code. op indicates whether
16 distance, an end-of-block, or an invalid code. For a table
19 is the number of extra bits to get after the code. bits is
20 the number of bits in this code or part of the code to drop off
26 unsigned char bits; /* bits in this part of the code */
27 unsigned short val; /* offset in table or code value */
28 } code; typedef in typeref:struct:__anon109
35 01000000 - invalid code
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dacquire_cred_with_pw.c119 krb5_error_code code = 0; local
135 code = ENOMEM;
143 code = ENOMEM;
149 code = krb5_get_init_creds_password(context, &creds, desired_name, pw,
156 if (code)
161 if ((code = krb5_cc_resolve(context, "MEMORY:GSSAPI", &ccache1)))
175 if ((code = krb5_cc_gen_new(context, &ccache2)) != 0)
180 if ((code = krb5_cc_initialize(context, ccache2, creds.client)) != 0)
183 if ((code = krb5_cc_store_cred(context, ccache2, &creds)) != 0)
194 *minor_status = code;
229 krb5_error_code code; local
[all...]
H A Dadd_cred.c88 krb5_error_code code; local
120 code = krb5_gss_init_context(&context);
121 if (code) {
122 *minor_status = code;
224 code = krb5_copy_principal(context, cred->princ, &new_cred->princ);
225 if (code) {
228 *minor_status = code;
250 code = krb5_kt_get_name(context, cred->keytab,
253 if (code) {
258 *minor_status = code;
[all...]
H A Dstore_cred.c47 krb5_error_code code; local
56 if ((code = krb5_cc_default(ct, &ccache))) {
57 *minor_status = code;
87 if ((code = krb5_cc_initialize(ct, ccache, cred->princ))) {
88 *minor_status = code;
98 if ((code = krb5_cc_copy_creds(ct, cred->ccache, ccache))) {
99 *minor_status = code;
/illumos-gate/usr/src/lib/libscf/common/
H A Derror.c97 * This old code is here to enable the building of a native version
101 * This code is not MT-safe in a relaxed memory model.
127 scf_set_error(scf_error_t code) argument
129 assert(LOOKS_VALID(code));
132 (void) pthread_setspecific(scf_error_key, (void *)code);
134 _scf_fallback_error = code;
151 scf_strerror(scf_error_t code) argument
159 if (code == cur->ei_code)
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dtrace.c80 (__m_return_code)(const char *s, int code) argument
82 switch (code) {
93 __m_trace("%s returned code %d", s, code);
96 return code;
H A Dwbrdr.c57 int code; local
99 code = wborder_set(w, &wls, &wrs, &wts, &wbs, &wtl, &wtr, &wbl, &wbr);
101 return __m_return_code("wborder", code);
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dcopywin.c61 int code, sminr, sminc, tminr, tminc, tmaxr, tmaxc; local
80 code = copywin(s, t, sminr, sminc,
83 return (code);
H A Dtputs.c65 int code; local
67 code = tputs(s, 1, __m_putchar);
69 return (code);
H A Dwbrdr.c60 int code; local
95 code = wborder_set(w, &wls, &wrs, &wts, &wbs, &wtl, &wtr, &wbl, &wbr);
97 return (code);
/illumos-gate/usr/src/lib/libpkg/common/
H A Dpkgerr.c69 pkgerr_add(PKG_ERR *err, PKG_ERR_CODE code, char *fmt, ...) argument
85 err->errs[err->nerrs - 1] = code;
/illumos-gate/usr/src/common/net/wanboot/
H A Dbootlog.h43 * code translation struct for use in processing config file
45 struct code { struct
/illumos-gate/usr/src/common/ucode/
H A Ducode_utils.c65 * The body size field of the microcode code header specifies the size
105 ucode_checksum_intel(uint32_t sum, uint32_t size, uint8_t *code) argument
108 uint32_t *lcode = (uint32_t *)(intptr_t)code;
/illumos-gate/usr/src/head/
H A Dwctype.h81 * data structure for supplementary code set
85 wchar_t tmin; /* minimum code for wctype */
86 wchar_t tmax; /* maximum code for wctype */
89 wchar_t cmin; /* minimum code for conversion */
90 wchar_t cmax; /* maximum code for conversion */
91 wchar_t *code; /* conversion code */ member in struct:_wctype
/illumos-gate/usr/src/cmd/mkfifo/
H A Dmkfifo.c49 errmsg(int severity, int code, char *format, ...);
116 * errmsg - This is an interface required by the code common to mkfifo and
124 errmsg(int severity, int code, char *format, ...) argument
135 if (code > 0) {
136 exit(code);
/illumos-gate/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...]
/illumos-gate/usr/src/cmd/ttymon/
H A Dstty.h63 int code; /* speed_t code for speed, e.g. B9600 */ member in struct:speeds
/illumos-gate/usr/src/uts/common/syscall/
H A Drusagesys.c247 rusagesys(int code, void *arg1, void *arg2, void *arg3, void *arg4) argument
249 switch (code) {
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Dradius_packet.h46 int attr_type_code; /* RADIUS attribute type code, */
54 uint8_t code; /* RADIUS code, section 3, RFC 2865. */ member in struct:radius_packet_data
/illumos-gate/usr/src/uts/common/io/vuidmice/
H A Dvuidm3p.c46 #define MOUSE_START_CODE (uchar_t)(0x40) /* Start code in char */
98 int r, code; local
105 code = *bufp++;
108 code &= 0x7f;
113 * Start state. We stay here if the start code is not
115 * get a start code the button mask comes with it
125 if ((code & MOUSE_START_CODE) == 0)
128 STATEP->buttons = code & 0x30;
142 STATEP->deltax = (signed char)((code & 0x03) << 6);
148 STATEP->deltay = (signed char)((code
[all...]
H A Dvuidm5p.c40 #define LOGI_START_CODE (uchar_t)(0x80) /* Start code in char */
82 int r, code; local
89 code = *bufp++;
93 * Start state. We stay here if the start code is not
95 * get a start code the button mask comes with it
101 if ((code & LOGI_NOT_BMASK) != LOGI_START_CODE)
106 STATEP->buttons = (~code) & LOGI_BMASK;
107 /* or xlate[code & ] */
116 if ((code & LOGI_NOT_BMASK) == LOGI_START_CODE) {
122 STATEP->deltax += (signed char)code;
[all...]
/illumos-gate/usr/src/uts/common/sys/iscsit/
H A Dradius_packet.h46 int attr_type_code; /* RADIUS attribute type code, */
54 uint8_t code; /* RADIUS code, section 3, RFC 2865. */ member in struct:radius_packet_data
/illumos-gate/usr/src/lib/libast/common/uwin/
H A Derr.c48 errmsg(int level, int code, const char* fmt, va_list ap) argument
65 exit(code);
68 extern void verr(int code, const char* fmt, va_list ap) argument
70 errmsg(ERROR_ERROR|ERROR_SYSTEM, code, fmt, ap);
73 extern void err(int code, const char* fmt, ...) argument
78 errmsg(ERROR_ERROR|ERROR_SYSTEM, code, fmt, ap);
82 extern void verrx(int code, const char* fmt, va_list ap) argument
84 errmsg(ERROR_ERROR, code, fmt, ap);
87 extern void errx(int code, const char* fmt, ...) argument
92 errmsg(ERROR_ERROR, code, fm
[all...]

Completed in 152 milliseconds

1234567891011>>