Searched refs:code (Results 151 - 175 of 882) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dexit.sh67 if [[ $(trap 'code=$?; echo $code; trap 0; exit $code' 0; exit 123) != 123 ]]
71 trap 'code=$?; echo $code; trap 0; exit $code' 0
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dpecho_wc.c49 int code, dy, dx; local
65 if ((code = wadd_wch(pad, cc)) == OK) {
67 code = prefresh(
73 return __m_return_code("pecho_wchar", code);
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dcuexit.s29 / exit(code)
/illumos-gate/usr/src/common/mc/mc-amd/
H A Dmcamd_misc.c32 mcamd_propcode_t code; member in struct:mcproptostr
72 mcamd_get_propname(mcamd_propcode_t code) argument
77 if (_propstrings[i].code == code)
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dio.h42 void io_exit(int code) __NORETURN;
/illumos-gate/usr/src/cmd/krb5/kadmin/cli/
H A Dss_wrapper.c7 * this source code. Do *NOT* create a derivative of this
8 * source code before consulting with your legal department.
9 * Do *NOT* integrate *ANY* of this source code into another
66 int sci_idx, code = 0; local
90 code = ss_execute_line(sci_idx, request);
91 if (code != 0) {
92 ss_perror(sci_idx, code, request);
/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dkconf.c119 errcode_t code; local
164 code = __profile_init(file, &profile);
165 if (code != 0) {
167 exit(code);
170 if (code = init_list(&values)) {
171 fprintf(stderr, gettext("Can not initialize list %d\n"), code);
177 code = add_to_list(&values, token);
178 if (code != 0) {
180 "%d\n"), code);
185 code);
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dinflate.h15 the crc code when it is not needed. For shared libraries, gzip decoding
39 LENLENS, /* i: waiting for code length code lengths */
40 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit code */
43 DIST, /* i: waiting for distance code */
101 /* for table and code decoding */
103 /* fixed and dynamic code tables */
104 code const FAR *lencode; /* starting table for length/literal codes */
105 code cons
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dinflate.h13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
103 /* for table and code decoding */
105 /* fixed and dynamic code tables */
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code cons
[all...]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/history/
H A Dhistory_common.kshlib212 typeset is_set lflag dflag dsname gname gid uname uid opt str code tmp
217 # dictates the case of the first character in the code)
234 # same. First, use the command passed in to determine what the code at
235 # the end of the pool history will be. The specifics of the code are
244 code="$str${tmp% *}"
245 grep "permission $subcmd $dsname ([0-9]*) $code" \
248 log_note "Couldn't find $code in $NEW_HISTORY"
255 code="$str${tmp% *}"
256 grep "permission $subcmd $dsname ([0-9]*) $code" \
259 log_note "Couldn't find $code i
[all...]
/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...]
/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/lib/krb5/kadm5/clnt/
H A Dclnt_privs.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
50 else if (r->code == KADM5_OK)
53 return r->code;
H A Dchangepw.c97 krb5_error_code code = 0; local
116 if ((code = krb5_auth_con_init(context, &auth_context)))
119 if (code = krb5_mk_req_extended(context, &auth_context,
132 code = KRB5_REALM_CANT_RESOLVE;
163 code = errno;
169 code = errno;
185 code = errno;
197 code = errno;
237 code = errno;
263 if (code
377 kadm5_ret_t code; local
[all...]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DIANACharCode.java53 // Character code descriptors. These can be used with the Java
65 // Error code for misidentified character set.
88 * the approprate integer descriptor code.
125 * @param code The integer coding the String set.
130 static String decodeCharacterEncoding(int code) argument
133 switch (code) {
144 new Object[] {Integer.toString(code)});
183 int code = 0;
185 // Assemble the character code based on the encoding type.
191 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/common/ficl/
H A Dword.c30 ficlPrimitive code; local
41 code = word->code;
43 if ((((ficlInstruction)code) > ficlInstructionInvalid) &&
44 (((ficlInstruction)code) < ficlInstructionLast)) {
45 i = (ficlInstruction)code;
/illumos-gate/usr/src/cmd/listen/
H A Dlslog.c72 void clean_up(int code, int flag, char *msg);
76 * most routines take two args: code and exit.
77 * code is a #define in lserror.h.
88 error(int code, int exitflag) argument
93 strcpy(scratch, err_list[code].err_msg);
94 clean_up(code, exitflag, scratch);
96 clean_up(code, exitflag, NULL);
106 tli_error(int code, int exitflag) argument
116 err_list[code].err_msg, p);
121 clean_up(code, exitfla
130 sys_error(int code, int exitflag) argument
148 clean_up(int code, int flag, char *msg) argument
227 log(int code) argument
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dinit_sec_context.c103 * Common code which fetches the correct krb5 credentials from the
115 krb5_error_code code; local
121 if ((code = krb5_copy_principal(context, cred->princ, &in_creds.client)))
123 if ((code = krb5_copy_principal(context, server, &in_creds.server)))
129 code = krb5_get_credentials(context, 0, cred->ccache,
131 if (code)
136 * boundaries) because accept_sec_context code is also similarly
141 code = KRB5KRB_AP_ERR_TKT_EXPIRED;
150 return code;
166 krb5_error_code code; local
270 krb5_error_code code; local
373 krb5_error_code code; local
482 krb5_error_code code; local
695 krb5_error_code code; local
1394 krb5_error_code code; local
1577 krb5_error_code code; local
[all...]
H A Dacquire_cred.c153 krb5_error_code code; local
163 code = gssint_initialize_library();
164 if (code != 0) {
165 *minor_status = code;
168 code = k5_mutex_lock(&gssint_krb5_keytab_lock);
169 if (code) {
170 *minor_status = code;
174 code = krb5_kt_resolve(context, krb5_gss_keytab, &kt);
178 code = krb5_kt_default(context, &kt);
181 if (code) {
241 krb5_error_code code; local
476 krb5_error_code code; local
[all...]
H A Dexport_name.c38 krb5_error_code code; local
45 code = krb5_gss_init_context(&context);
46 if (code) {
48 *minor_status = code;
73 if ((code = krb5_unparse_name(context, (krb5_principal) input_name,
76 *minor_status = code;
77 save_error_info((OM_uint32)code, context);
/illumos-gate/usr/src/cmd/krb5/kadmin/server/
H A Dserver_stubs.c10 * this source code. Do *NOT* create a derivative of this
11 * source code before consulting with your legal department.
12 * Do *NOT* integrate *ANY* of this source code into another
148 * Purpose: Check a server handle and return a com_err code if it is
174 * <return value> (output) An error code, or 0 if no error occurred
180 * non-zero com_err code.
517 if ((ret.code = new_server_handle(arg->api_version, rqstp, &handle)))
520 if ((ret.code = check_handle((void *)handle)))
525 ret.code = KADM5_FAILURE;
529 ret.code
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dkrb5_encode.c48 *code = NULL;\
62 *code = tmpcode;\
66 krb5_error_code encode_krb5_pa_pk_as_req(const krb5_pa_pk_as_req *rep, krb5_data **code) argument
75 krb5_error_code encode_krb5_pa_pk_as_req_draft9(const krb5_pa_pk_as_req_draft9 *rep, krb5_data **code) argument
84 krb5_error_code encode_krb5_pa_pk_as_rep(const krb5_pa_pk_as_rep *rep, krb5_data **code) argument
93 krb5_error_code encode_krb5_pa_pk_as_rep_draft9(const krb5_pa_pk_as_rep_draft9 *rep, krb5_data **code) argument
102 krb5_error_code encode_krb5_auth_pack(const krb5_auth_pack *rep, krb5_data **code) argument
111 krb5_error_code encode_krb5_auth_pack_draft9(const krb5_auth_pack_draft9 *rep, krb5_data **code) argument
120 krb5_error_code encode_krb5_kdc_dh_key_info(const krb5_kdc_dh_key_info *rep, krb5_data **code) argument
129 krb5_error_code encode_krb5_reply_key_pack(const krb5_reply_key_pack *rep, krb5_data **code) argument
138 encode_krb5_reply_key_pack_draft9(const krb5_reply_key_pack_draft9 *rep, krb5_data **code) argument
147 encode_krb5_td_trusted_certifiers(const krb5_external_principal_identifier **rep, krb5_data **code) argument
156 encode_krb5_td_dh_parameters(const krb5_algorithm_identifier **rep, krb5_data **code) argument
166 encode_krb5_typed_data(const krb5_typed_data **rep, krb5_data **code) argument
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
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);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dlocate_kdc.c52 * and the DNS-SRVrecs code does not do that).
93 krb5_error_code code; local
97 code = profile_get_string(context->profile, "libdefaults",
99 if (value == 0 && code == 0)
100 code = profile_get_string(context->profile, "libdefaults",
102 if (code)
176 /* Translate to standard errno code. */
179 /* Translate to standard errno code. */
202 /* An error code we haven't handled? */
386 krb5_error_code code; local
480 krb5_error_code code; local
527 krb5_error_code code; local
587 krb5_error_code code; local
659 krb5_error_code code; local
767 int code, i; local
866 krb5_error_code code; local
1098 krb5_error_code code = KRB5_REALM_UNKNOWN; local
[all...]

Completed in 123 milliseconds

1234567891011>>