Searched refs:priority (Results 51 - 75 of 232) sorted by relevance

12345678910

/freebsd-9.3-release/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_snmp.h113 int32_t priority; member in struct:bridge_port
158 int32_t priority; member in struct:bridge_if
285 /* Set the bridge priority. */
286 int bridge_set_priority(struct bridge_if *bif, int32_t priority);
321 /* Set a bridge member priority. */
323 int32_t priority);
/freebsd-9.3-release/contrib/wpa/hostapd/
H A Dmain.c138 int priority; local
142 priority = LOG_DEBUG;
145 priority = LOG_INFO;
148 priority = LOG_NOTICE;
151 priority = LOG_WARNING;
154 priority = LOG_INFO;
157 syslog(priority, "%s", format);
/freebsd-9.3-release/sys/kern/
H A Dkern_synch.c135 * runnable with the specified priority. Sleeps at most timo/hz seconds
144 * re-locked before _sleep() returns. If priority includes the PDROP
148 _sleep(void *ident, struct lock_object *lock, int priority, argument
169 if (priority & PDROP)
186 if (lock != NULL && priority & PDROP)
190 catch = priority & PCATCH;
191 pri = priority & PRIMASK;
207 if (priority & PBDRY)
258 if (lock != NULL && lock != &Giant.lock_object && !(priority & PDROP)) {
H A Dkern_cpu.c64 int priority; member in struct:cf_saved_freq
104 int priority);
241 cf_set_method(device_t dev, const struct cf_level *level, int priority) argument
279 * If the requested level has a lower priority, don't allow
282 if (priority < sc->curr_priority) {
283 CF_DEBUG("ignoring, curr prio %d less than %d\n", priority,
301 priority = saved_freq->priority;
303 level->total_set.freq, priority);
373 * higher priority
[all...]
/freebsd-9.3-release/sys/geom/mirror/
H A Dg_mirror_ctl.c97 intmax_t *slicep, *priority; local
152 priority = gctl_get_paraml(req, "priority", sizeof(*priority));
153 if (priority == NULL) {
154 gctl_error(req, "No '%s' argument.", "priority");
157 if (*priority < -1 || *priority > 255) {
159 *priority);
163 * Since we have a priority, w
392 intmax_t *priority; local
[all...]
/freebsd-9.3-release/sys/mips/adm5120/
H A Dobio.c346 int irq, error, priority; local
369 priority = irq_priorities[irq];
371 if (priority == INTR_FIQ)
389 int irq, result, priority; local
400 priority = irq_priorities[irq];
402 if (priority == INTR_FIQ)
/freebsd-9.3-release/sys/cam/ata/
H A Data_pmp.c588 u_int32_t priority, res; local
596 priority = done_ccb->ccb_h.pinfo.priority;
618 xpt_schedule(periph, priority);
665 xpt_schedule(periph, priority);
678 xpt_schedule(periph, priority);
687 xpt_schedule(periph, priority);
699 xpt_schedule(periph, priority);
707 xpt_schedule(periph, priority);
722 xpt_schedule(periph, priority);
[all...]
/freebsd-9.3-release/sbin/ggate/shared/
H A Dggate.h96 void g_gate_vlog(int priority, const char *message, va_list ap);
97 void g_gate_log(int priority, const char *message, ...);
/freebsd-9.3-release/sys/cam/
H A Dcam.h75 * the queue giving round robin per priority level scheduling.
78 u_int32_t priority; member in struct:__anon5826
274 pinfo->priority = CAM_PRIORITY_NONE;
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Darc.h107 arc_done_func_t *done, void *priv, zio_priority_t priority, int flags,
112 arc_done_func_t *done, void *priv, zio_priority_t priority,
H A Dzio.h489 zio_priority_t priority, enum zio_flag flags, const zbookmark_t *zb);
495 zio_priority_t priority, enum zio_flag flags, const zbookmark_t *zb);
499 zio_priority_t priority, enum zio_flag flags, zbookmark_t *zb);
516 zio_done_func_t *done, void *priv, zio_priority_t priority,
521 zio_done_func_t *done, void *priv, zio_priority_t priority,
554 zio_priority_t priority, enum zio_flag flags,
558 void *data, uint64_t size, int type, zio_priority_t priority,
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-srio.h118 uint64_t prio : 2; /**< The sRIO prio (priority) field in the
247 the priority that SSO/POW will schedule the
315 uint64_t prio : 2; /**< The sRIO prio (priority) field for all
429 * @param priority Doorbell priority (0-3)
435 int is16bit, int priority, uint16_t data);
457 * @param priority Priority of the doorbell (0-3)
465 int *destid_index, uint32_t *sequence_num, int *srcid, int *priority,
490 * SRIO priority of writes (0-3)
494 * SRIO priority o
[all...]
H A Dcvmx-pow.h1426 * an associated priority value.
1429 * @param priority Vector of 8 priorities, one per POW Input Queue (0-7).
1430 * Highest priority is 0 and lowest is 7. A priority value
1437 static inline void cvmx_pow_set_priority(uint64_t core_num, const uint8_t priority[]) argument
1445 grp_msk.s.qos0_pri = priority[0];
1446 grp_msk.s.qos1_pri = priority[1];
1447 grp_msk.s.qos2_pri = priority[2];
1448 grp_msk.s.qos3_pri = priority[3];
1449 grp_msk.s.qos4_pri = priority[
[all...]
/freebsd-9.3-release/sys/dev/acpica/Osd/
H A DOsdSchedule.c144 acpi_task_enqueue(int priority, ACPI_OSD_EXEC_CALLBACK Function, void *Context) argument
162 TASK_INIT(&at->at_task, priority, acpi_task_execute, at);
199 * Run GPEs and Notifies at the same priority. This allows
/freebsd-9.3-release/sys/dev/ppbus/
H A Dppb_base.c237 ppb_sleep(device_t bus, void *wchan, int priority, const char *wmesg, int timo) argument
241 return (mtx_sleep(wchan, ppb->ppc_lock, priority, wmesg, timo));
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dia64-opc.c354 priority. */
471 short priority = -1;
484 priority = ia64_dis_names[disent].priority;
487 && priority > found_priority)
504 found_priority = priority;
463 short priority = -1; local
/freebsd-9.3-release/contrib/wpa/src/rsn_supp/
H A Dpreauth.c36 int priority; member in struct:rsn_pmksa_candidate
298 /* TODO: drop priority for old candidate entries */
349 * @prio: Priority (the smaller number, the higher priority)
371 /* If BSSID already on candidate list, update the priority of the old
372 * entry. Do not override priority based on normal scan results. */
385 cand->priority = prio;
391 cand->priority = prio;
394 /* Add candidate to the list; order by increasing priority value. i.e.,
395 * highest priority (smallest value) first. */
398 if (cand->priority <
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dresolve.c229 rr->u.srv->priority = (p[0] << 8) | p[1];
595 if((*aa)->u.srv->priority == (*bb)->u.srv->priority)
597 return ((*aa)->u.srv->priority - (*bb)->u.srv->priority);
639 /* sort them by priority and weight */
651 /* find the last record with the same priority and count the
655 if((*tt)->u.srv->priority != (*ss)->u.srv->priority)
660 /* ss is now the first record of this priority an
[all...]
/freebsd-9.3-release/sys/cam/scsi/
H A Dscsi_pass.c418 TASK_INIT(&softc->add_physpath_task, /*priority*/0,
589 uint32_t priority; local
622 /* Compatibility for RL/priority-unaware code. */
623 priority = inccb->ccb_h.pinfo.priority;
624 if (priority <= CAM_PRIORITY_OOB)
625 priority += CAM_PRIORITY_OOB + 1;
635 ccb = cam_periph_getccb(periph, priority);
642 priority);
H A Dscsi_xpt.c1097 u_int32_t priority; local
1103 priority = done_ccb->ccb_h.pinfo.priority;
1125 xpt_schedule(periph, priority);
1160 xpt_schedule(periph, priority);
1190 xpt_schedule(periph, priority);
1205 xpt_schedule(periph, priority);
1272 xpt_schedule(periph, priority);
1345 xpt_schedule(periph, priority);
1380 xpt_schedule(periph, priority);
1480 u_int32_t priority; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.h90 unsigned int priority; member in struct:clang::CodeGen::OrderGlobalInits
93 : priority(p), lex_order(l) {}
96 return priority == RHS.priority &&
101 if (priority < RHS.priority)
104 return priority == RHS.priority && lex_order < RHS.lex_order;
353 return LHS.first.priority < RHS.first.priority;
[all...]
/freebsd-9.3-release/lib/libkse/test/
H A Dmutex_d.c107 int priority; member in struct:__anon5272
287 log_trace ("Thread %d at priority %d reporting.\n",
288 (int) id, states[id].priority);
959 * Signal one thread to run and see that the highest priority
967 log_error ("highest priority thread does not run.\n");
1000 log ("Testing priority ceilings\n");
1012 /* Get this threads current priority. */
1016 log_trace ("Current scheduling policy %d, priority %d\n",
1020 * Initialize and create 3 priority protection mutexes with
1021 * default (max priority) ceiling
[all...]
/freebsd-9.3-release/sys/netinet/
H A Dsctp_ss_functions.c339 * Always prefers streams based on their priority id.
352 strq->ss_params.prio.priority = 0;
372 strq->ss_params.prio.priority = with_strq->ss_params.prio.priority;
374 strq->ss_params.prio.priority = 0;
397 while (strqt != NULL && strqt->ss_params.prio.priority < strq->ss_params.prio.priority) {
463 strqn->ss_params.prio.priority == strqt->ss_params.prio.priority) {
502 *value = strq->ss_params.prio.priority;
[all...]
/freebsd-9.3-release/sys/mips/rt305x/
H A Dobio.c393 int irq, error, priority; local
416 priority = irq_priorities[irq];
418 if (priority == INTR_FIQ)
434 int irq, result, priority; local
445 priority = irq_priorities[irq];
447 if (priority == INTR_FIQ)
/freebsd-9.3-release/contrib/pf/libevent/
H A Devbuffer.c261 bufferevent_priority_set(struct bufferevent *bufev, int priority) argument
263 if (event_priority_set(&bufev->ev_read, priority) == -1)
265 if (event_priority_set(&bufev->ev_write, priority) == -1)

Completed in 305 milliseconds

12345678910