Searched defs:priority (Results 1 - 25 of 28) sorted by relevance

12

/osnet-11/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A Ddebug_logging.c38 log(int priority, const char *routine, char *msg, ...) argument
67 oldErrno = priority;
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSyslog.java72 int priority;
74 priority = 6; // LOG_INFO
76 priority = 2; // LOG_CRIT
79 syslog(priority, buf.toString());
86 private native void syslog(int priority, String message); argument
/osnet-11/usr/src/lib/libslp/clib/
H A Dslp_jni_support.c191 jint priority,
202 syslog(priority, "%s", msg);
189 Java_com_sun_slp_Syslog_syslog(JNIEnv *env, jobject obj, jint priority, jstring jmsg) argument
H A Dslp_utils.c69 * Outputs an error message. priority is a syslog(3) priority.
73 void slp_err(int priority, int id, char *func, char *inmsg, ...) { argument
91 syslog(priority, buf);
/osnet-11/usr/src/lib/libcryptoutil/common/
H A Ddebug.c77 * If a syslog priority is passed we log on that priority. Otherwise we
84 cryptoerror(int priority, const char *fmt, ...) argument
102 if ((priority == LOG_STDERR) || (priority < 0)) {
105 syslog(priority, msgbuf);
/osnet-11/usr/src/lib/sun_fc/common/
H A DTrace.cc57 * @param priority The priority of the message (see syslog man page)
66 void Trace::message(int priority, const char *msg) { argument
78 if (priority == LOG_DEBUG) {
86 /* First interpret the priority value */
87 switch (priority) {
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_trace.c155 __s_api_debug_pause(int priority, int st, const char *mesg) argument
158 syslog(priority, "libsldap: Status: %d Mesg: %s", st, mesg);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Ddnssrv.c67 unsigned short priority, weight, port; local
122 SAFE_GETUINT16(base, rdlen, p, 2, priority, out);
144 srv->priority = priority;
154 if (head == NULL || head->priority > srv->priority) {
161 * The next person has a higher priority (lower priorities
168 entry->next->priority > srv->priority) ||
/osnet-11/usr/src/lib/libsmbns/common/
H A Dlibsmbns.h53 int priority; /* DNS SRV record priority */ member in struct:smb_ads_host_info
/osnet-11/usr/src/cmd/hal/hald/
H A Dlogger.c50 static int priority; variable
117 * @param priority Logging priority, one of HAL_LOGPRI_*
125 priority = _priority;
155 switch (priority) {
187 if (priority != HAL_LOGPRI_TRACE && !syslog_enabled ) {
189 } else if (priority != HAL_LOGPRI_TRACE && syslog_enabled ) {
191 switch (priority) {
/osnet-11/usr/src/lib/libc/port/threads/
H A Dpthread.c62 * Don't change the ceiling priority,
63 * just the base priority.
210 * Return the defined priority, not the effective
211 * priority from priority ceiling mutexes.
230 thr_getprio(thread_t tid, int *priority) argument
237 *priority = param.sched_priority;
/osnet-11/usr/src/lib/librstp/common/
H A Dstp_in.c997 STP_IN_get_bridge_id(int vlan_id, unsigned short *priority, unsigned char *mac) argument
1003 *priority = this->BrId.prio;
/osnet-11/usr/src/lib/libldap5/sources/ldap/prldap/
H A Dldappr-threads.c678 * priority. Save and restore the priority.
680 int priority; local
681 (void) thr_getprio(thr_self(), &priority); local
683 (void) thr_setprio(thr_self(), priority); local
/osnet-11/usr/src/grub/grub2/grub-core/mmap/
H A Dmmap.c47 according to priority:
53 int priority[] = local
84 int present[ARRAY_SIZE (priority)];
110 if (type < ARRAY_SIZE (priority) && priority[type])
155 if (cur->type < ARRAY_SIZE (priority) && priority[cur->type])
203 for (k = 0; k < ARRAY_SIZE (priority); k++)
204 if (present[k] && (curtype == -1 || priority[k] > priority[curtyp
[all...]
/osnet-11/usr/src/lib/libc/port/rt/
H A Dsched.c274 * Class-independent method for setting the priority.
348 int priority; local
357 priority = tsp->ts_upri;
364 priority = rtp->rt_pri;
371 * Class-independent method for getting the priority.
379 priority = pcprio.pc_val;
381 priority = 0;
388 param->sched_priority = priority;
568 int priority; local
607 priority
[all...]
/osnet-11/usr/src/lib/libresolv2/common/nameser/
H A Dns_print.c382 u_int priority, weight, port; local
389 priority = ns_get16(rdata); rdata += NS_INT16SZ;
392 len = SPRINTF((t, "%u %u %u ", priority, weight, port));
/osnet-11/usr/src/grub/grub2/grub-core/efiemu/
H A Dmm.c481 according to priority
488 int priority[GRUB_EFI_MAX_MEMORY_TYPE] = local
591 if (present[k] && (curtype == -1 || priority[k] > priority[curtype]))
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_migrate.c566 * Internal function to calculate priority within the pending queue. This is
575 uint64_t depth, priority; local
588 priority = (uint64_t)sep->se_timestamp.tv_sec * NANOSEC +
590 priority = (priority >> 16) | (depth << 48);
593 * At this point the highest value represents the highest priority, but
594 * priority queues are based on the lowest value being the highest
595 * priority. We invert the value here to achieve this.
597 return (~priority);
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_util.c49 logmsg(int msgtype, int priority, const char *fmt, ...) { argument
54 * Only log LOG_INFO priority if 'verbose' is on, or if
57 if (priority == LOG_INFO && !verbose && msgtype != MSG_ALWAYS)
71 vsyslog(priority, fmt, ap);
163 logError(int priority) { argument
188 logmsg(msgtype, priority, defErr->message);
/osnet-11/usr/src/lib/libntsvcs/common/
H A Dntsvcs_clnt.c1120 int priority; local
1138 priority = (tdiff > 2) ? LOG_NOTICE : LOG_DEBUG;
1139 syslog(priority, "DC [%s] clock skew detected: %ld minutes",
1143 syslog(priority, "%-8s UTC: %s", server, asctime(tm));
1145 syslog(priority, "%-8s UTC: %s", hostname, asctime(tm));
/osnet-11/usr/src/lib/libnwam/common/
H A Dlibnwam_known_wlan.c57 "specifies priority of known WLAN - lower values are prioritized",
105 /* The initial priority is also set */
168 * Used to read in each known WLAN name/priority.
193 /* Retrieve name/priority */
264 /* Find lowest priority value not walked so far. */
385 uint64_t priority; member in struct:priority_collision_data
395 uint64_t priority; local
411 err = nwam_value_get_uint64(priorityval, &priority);
416 if (priority < pcd->priority)
[all...]
/osnet-11/usr/src/lib/krb5/kadm5/
H A Dlogger.c372 * 8, then we assume that it is a priority.
468 * If we have specified a priority through our hackery, then
1020 klog_vsyslog(int priority, const char *format, va_list arglist)
1027 klog_vsyslog(int priority, const char *format, va_list arglist)
1042 * <date> <hostname> <id>[<pid>](<priority>): <message>
1073 severity2string(priority));
1089 syslog(priority, "%s", syslogp);
1135 syslog(priority, "%s", syslogp);
1146 krb5_klog_syslog(int priority, const char *format, ...)
1152 retval = klog_vsyslog(priority, forma
1024 klog_vsyslog(int priority, const char *format, va_list arglist) argument
1143 krb5_klog_syslog(int priority, const char *format, ...) argument
[all...]
/osnet-11/usr/src/lib/libsasl/lib/
H A Dcommon.c1468 int priority,
1473 /* set syslog priority */
1474 switch(priority) {
1467 _sasl_syslog(void *context __attribute__((unused)), int priority, const char *message) argument
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_util.c1367 * If the priority is LOG_ERR or higher then the entire log is
1375 smb_log(smb_log_hdl_t hdl, int priority, const char *fmt, ...) argument
1392 priority &= LOG_PRIMASK;
1393 smb_log_trace(priority, buf);
1420 if (priority == smb_log_pri[i].lp_value) {
1431 if (priority <= LOG_ERR)
1458 smb_log_trace(int priority, const char *s) argument
1460 syslog(priority, "%s", s);
/osnet-11/usr/src/lib/libpam/
H A Dpam_framework.c109 static int log_priority; /* pam_trace syslog priority & facility */
165 * "log_priority=" 0-7, the pam_trace syslog priority to use
262 * priority = message priority
267 __pam_log(int priority, const char *format, ...) argument
270 int savemask = setlogmask(LOG_MASK(priority & LOG_PRIMASK));
273 (void) vsyslog(priority, format, args);

Completed in 104 milliseconds

12