Searched refs:priority (Results 1 - 25 of 132) sorted by relevance

123456

/illumos-gate/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
/illumos-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A Ddebug_logging.c37 log(int priority, const char *routine, char *msg, ...) argument
66 oldErrno = priority;
H A Dmp_utils.h92 void log(int priority, const char *routine, char *msg, ...);
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dtpmtok_defs.h55 #define LOG(priority, fmt, ...) \
58 syslog(priority, "%s " fmt, __FILE__, ##__VA_ARGS__);\
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Ddnssrv.c65 unsigned short priority, weight, port; local
118 SAFE_GETUINT16(base, rdlen, p, 2, priority, out);
140 srv->priority = priority;
153 if (head == NULL || head->priority > srv->priority) {
160 * The next person has a higher priority (lower priorities
167 entry->next->priority > srv->priority) ||
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/
H A Dncp.c62 * priority-group.
111 * priority-group, set the active_ncp property and refresh the
192 * To activate new NCP, reset the active priority-group, set the
237 uint64_t priority; local
244 priority = ncu->ncu_link.nwamd_link_priority_group;
246 if (priority >= cbarg->minpriority && priority < cbarg->currpriority) {
248 cbarg->currpriority = priority;
269 "next priority group >= %lld is %lld",
275 "no priority group
520 nwamd_ncp_activate_priority_group(int64_t priority) argument
576 nwamd_ncp_deactivate_priority_group(int64_t priority) argument
610 nwamd_ncp_deactivate_priority_group_all(int64_t priority) argument
628 nwamd_ncp_check_priority_group(int64_t *priority) argument
[all...]
/illumos-gate/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) {
/illumos-gate/usr/src/cmd/lp/lib/requests/
H A Dllib-llpreq45 short priority; /* priority level, 0-39, of the request */
H A Dgetrequest.c110 reqp->priority = -1;
183 reqp->priority = atoi(p);
242 || reqp->priority < -1 || 39 < reqp->priority
H A Dputrequest.c81 || reqbufp->priority < -1 || 39 < reqbufp->priority
173 if (reqbufp->priority != -1)
174 (void)fdprintf(fd, "%s%d\n", HEAD, reqbufp->priority);
/illumos-gate/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);
/illumos-gate/usr/src/tools/onbld/Checks/
H A DDbLookups.py67 def __init__(self, priority = ["illumos"]):
71 priority: use bug databases in this order
73 for database in priority:
76 self.__priority = priority
/illumos-gate/usr/src/lib/sun_fc/common/
H A DTrace.cc58 * @param priority The priority of the message (see syslog man page)
67 void Trace::message(int priority, const char *msg) { argument
79 if (priority == LOG_DEBUG) {
87 /* First interpret the priority value */
88 switch (priority) {
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Drstatus.c152 * will be the request with the highest priority. If both have
153 * the same priority, the first is the one with the EARLIER date.
157 else if ((*p1)->request->priority == (*p2)->request->priority)
164 return ((*p1)->request->priority - (*p2)->request->priority);
/illumos-gate/usr/src/cmd/latencytop/common/
H A Dtable.c222 * <priority> <symbol name> <cause>
229 int priority = 0; local
241 priority = strtol(begin, &tmp, 10);
243 if (tmp == begin || priority == 0) {
255 /* At least one space char after <priority> */
288 HIGHER_PRIORITY(match_entry->lt_mt_priority, priority)) {
320 match_entry->lt_mt_priority = priority;
333 * <priority> <entry probe> <return probe> <cause>
340 int priority = 0; local
354 priority
721 lt_table_cause_from_stack(const char *module_func, int *cause_id, int *priority) argument
[all...]
H A Dlatencytop.d88 this unsigned int priority;
195 this->priority = self->lt_stackp > 0 ?
199 this->priority] = count();
201 this->priority] = sum(self->lt_sleep_duration);
203 this->priority] = max(self->lt_sleep_duration);
357 this->priority = self->lt_stackp > 0 ?
361 this->priority] = sum(1);
363 this->priority] = sum(self->lt_timestamp);
365 this->priority] = max(self->lt_timestamp);
379 this->priority
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/
H A Dcommand.h12 /* How many slow-path-queue elements can be sent in parallel divided into normal and high priority */
118 * @param priority - (high or low) to witch list to insert the pending list entry.
126 u8_t priority);
138 u8_t priority,
151 * @param priority: priority of ramrod being completed
157 void lm_sq_complete(struct _lm_device_t *pdev, u8_t priority,
180 u8_t priority,
184 return lm_sq_post(pdev, cid, command, priority, type, data );
177 lm_command_post( struct _lm_device_t* pdev, u32_t cid, u8_t command, u8_t priority, u16_t type, u64_t data ) argument
/illumos-gate/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_log.c280 ndmp_log(ulong_t priority, char *ndmp_log_info, char *fmt, ...) argument
290 if ((priority == LOG_DEBUG) && !debug)
295 if (priority > 7)
296 priority = LOG_ERR;
339 if (priority != LOG_DEBUG)
340 syslog(priority, "%s", ndmp_syslog_buf);
342 /* ndmp_log_buf will have priority string and log info also */
344 priority_str[priority], ndmp_log_info, ndmp_syslog_buf);
/illumos-gate/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...]
/illumos-gate/usr/src/tools/scripts/
H A Dhgsetup.sh169 filemerge.priority=1
173 meld.priority=0
177 gpyfm.priority=0
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dsyslog.c298 vsyslog(int priority, const char* format, va_list ap)
306 if (!LOG_FACILITY(priority))
307 priority |= log.facility;
308 if (!(priority & log.mask))
315 if ((c = LOG_SEVERITY(priority)) < elementsof(log_severity))
320 if ((c = LOG_FACILITY(priority)) < elementsof(log_facility))
358 syslog(int priority, const char* format, ...)
363 vsyslog(priority, format, ap);
/illumos-gate/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);
/illumos-gate/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
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_util.h84 void logmsg(int msgtype, int priority, const char *fmt, ...);
88 void logError(int priority);
/illumos-gate/usr/src/lib/libadutils/common/
H A Dsrv_query.c142 * "Earliest" (lowest number) priority first,
148 if (s1->priority < s2->priority)
150 else if (s1->priority > s2->priority)
324 NS_GET16(cds->cds_ds.priority, ptr);
340 rttl, cds->cds_ds.priority, cds->cds_ds.weight,
509 * in which case we just bump its priority, or else add it.
523 ds->priority = 0;
536 ds->priority
[all...]

Completed in 142 milliseconds

123456