Searched defs:why (Results 1 - 7 of 7) sorted by relevance

/osnet-11/usr/src/lib/libadt_jni/common/
H A Dadt_jni.c43 * "why" string must be i18n'd before calling here.
48 local_throw(JNIEnv *env, const char *exception, const char *why) { argument
63 /* Create a Byte Array from message "why" */
64 jbarray = (*env)->NewByteArray(env, (jsize)(strlen(why)));
66 (jsize)(strlen(why)), (jbyte*) why);
/osnet-11/usr/src/lib/libc/port/threads/
H A Dassfail.c93 common_panic(const char *head, const char *why) argument
106 len2 = strlen(why);
109 (void) strncat(msg, why, len2);
118 thr_panic(const char *why) argument
120 common_panic("*** libc thread failure: ", why);
124 aio_panic(const char *why) argument
126 common_panic("*** libc aio system failure: ", why);
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dsvc_door.c180 enum auth_stat why; local
195 } else if ((why = __gss_authenticate(r, msg, &nd)) != AUTH_OK) {
196 svcerr_auth(xprt, why);
H A Dsvc.c1188 svcerr_auth(const SVCXPRT *xprt, const enum auth_stat why) argument
1195 rply.rjcted_rply.rj_why = why;
1403 enum auth_stat why; local
1428 if ((why = __gss_authenticate(r, msg,
1430 svcerr_auth(xprt, why);
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_proc.c225 * process reached a particular event (why) rather than continuing the victim.
226 * If 'why' is set in the stop mask, we wait on dpr_cv for dt_proc_continue().
227 * If 'why' is not set, this function returns immediately and does nothing.
230 dt_proc_stop(dt_proc_t *dpr, uint8_t why) argument
233 assert(why != DT_PROC_STOP_IDLE);
235 if (dpr->dpr_stop & why) {
237 dpr->dpr_stop &= ~why;
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_pool.c811 namecheck_err_t why; local
815 ret = pool_namecheck(pool, &why, &what);
837 switch (why) {
H A Dlibzfs_dataset.c93 * explain exactly why the name was not valid.
99 namecheck_err_t why; local
103 if (dataset_namecheck(path, &why, &what) != 0) {
105 switch (why) {
1491 namecheck_err_t why; local
1497 if (mountpoint_namecheck(strval, &why)) {
1498 switch (why) {
1590 namecheck_err_t why; local
1605 if (snapshot_namecheck(strval, &why, &what) != 0) {
1606 switch (why) {
[all...]

Completed in 56 milliseconds