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

1234567891011>>

/freebsd-current/sys/net/altq/
H A Daltq_cbq.h90 int priority; member in struct:_cbq_class_stats_
/freebsd-current/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-current/sys/sys/
H A Dpriority.h38 * Process priority specifications.
80 #define PRI_MIN (0) /* Highest priority. */
81 #define PRI_MAX (255) /* Lowest priority. */
87 * Most hardware interrupt threads run at the same priority, but can
128 #define PRI_USER -2 /* Change to current user priority. */
129 #define PRI_UNCHANGED -1 /* Do not change priority. */
132 struct priority { struct
134 u_char pri_level; /* Normal priority level. */
136 u_char pri_user; /* User priority based on p_cpu and p_nice. */
/freebsd-current/sys/geom/mirror/
H A Dg_mirror_ctl.c150 intmax_t *slicep, *priority; local
205 priority = gctl_get_paraml(req, "priority", sizeof(*priority));
206 if (priority == NULL) {
207 gctl_error(req, "No '%s' argument.", "priority");
210 if (*priority < -1 || *priority > 255) {
212 *priority);
216 * Since we have a priority, w
614 intmax_t *priority; local
[all...]
/freebsd-current/sys/kern/
H A Dsubr_eventhandler.c102 * Insertion is O(n) due to the priority scan, but optimises to O(1)
122 ("%s: handler for %s registered with dead priority", __func__, name));
143 void *func, void *arg, int priority)
152 eg->ee.ee_priority = priority;
167 void *func, void *arg, int priority, vimage_iterator_func_t iterfunc)
178 eg->ee.ee_priority = priority;
142 eventhandler_register(struct eventhandler_list *list, const char *name, void *func, void *arg, int priority) argument
166 vimage_eventhandler_register(struct eventhandler_list *list, const char *name, void *func, void *arg, int priority, vimage_iterator_func_t iterfunc) argument
/freebsd-current/sys/cam/
H A Dcam_periph.h175 int cam_periph_hold(struct cam_periph *periph, int priority);
186 uint32_t priority);
234 #define cam_periph_sleep(periph, chan, priority, wmesg, timo) \
235 xpt_path_sleep((periph)->path, (chan), (priority), (wmesg), (timo))
/freebsd-current/libexec/tftpd/
H A Dtftp-utils.h114 void tftp_log(int priority, const char *message, ...) __printflike(2, 3);
/freebsd-current/cddl/usr.sbin/dtrace/tests/common/builtinvar/
H A DMakefile10 err.D_XLATE_NOCONV.priority.d \
/freebsd-current/crypto/openssl/crypto/
H A Dex_data.c146 int priority)
183 a->priority = priority;
356 if (ap->excb->priority == bp->excb->priority)
358 return ap->excb->priority > bp->excb->priority ? -1 : 1;
397 /* Sort according to priority. High priority first */
141 ossl_crypto_get_ex_new_index_ex(OSSL_LIB_CTX *ctx, int class_index, long argl, void *argp, CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func, int priority) argument
/freebsd-current/contrib/libucl/include/
H A Ducl.h286 * Create new object with type and priority specified
288 * @param priority priority of an object
291 UCL_EXTERN ucl_object_t* ucl_object_new_full (ucl_type_t type, unsigned priority)
817 * Get the priority for specific UCL object
819 * @return priority of an object
824 * Set explicit priority of an object.
826 * @param priority new priroity value (only 4 least significant bits are considred)
829 unsigned int priority);
958 * Sets the default priority fo
[all...]
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dzio.h557 zio_priority_t priority, zio_flag_t flags, const zbookmark_phys_t *zb);
562 zio_done_func_t *done, void *priv, zio_priority_t priority,
567 zio_priority_t priority, zio_flag_t flags, zbookmark_phys_t *zb);
579 zio_done_func_t *done, void *priv, zio_priority_t priority,
584 zio_done_func_t *done, void *priv, zio_priority_t priority,
589 zio_done_func_t *done, void *priv, zio_priority_t priority,
627 zio_priority_t priority, zio_flag_t flags,
631 struct abd *data, uint64_t size, zio_type_t type, zio_priority_t priority,
638 extern void zio_change_priority(zio_t *pio, zio_priority_t priority);
/freebsd-current/sys/dev/mlx4/mlx4_core/
H A Dmlx4_alloc.c219 int priority; member in struct:mlx4_zone_entry
244 int priority,
258 zone->priority = priority;
270 if (it->priority >= priority)
273 if (&it->prio_list == &zone_alloc->prios || it->priority > priority)
296 if (next->priority == entry->priority)
241 mlx4_zone_add_one(struct mlx4_zone_allocator *zone_alloc, struct mlx4_bitmap *bitmap, u32 flags, int priority, int offset, u32 *puid) argument
[all...]
/freebsd-current/sys/cam/ata/
H A Data_pmp.c586 uint32_t priority, res; local
594 priority = done_ccb->ccb_h.pinfo.priority;
616 xpt_schedule(periph, priority);
663 xpt_schedule(periph, priority);
676 xpt_schedule(periph, priority);
685 xpt_schedule(periph, priority);
697 xpt_schedule(periph, priority);
705 xpt_schedule(periph, priority);
720 xpt_schedule(periph, priority);
[all...]
/freebsd-current/sys/dev/acpica/Osd/
H A DOsdSchedule.c146 acpi_task_enqueue(int priority, ACPI_OSD_EXEC_CALLBACK Function, void *Context) argument
168 TASK_INIT(&at->at_task, priority, acpi_task_execute, at);
206 * Run GPEs and Notifies at the same priority. This allows
/freebsd-current/lib/libcasper/services/cap_syslog/
H A Dcap_syslog.c59 cap_vsyslog(cap_channel_t *chan, int priority, const char *fmt, va_list ap) argument
68 nvlist_add_number(nvl, "priority", priority);
142 syslog(nvlist_get_number(nvlin, "priority"), "%s",
/freebsd-current/sbin/ggate/shared/
H A Dggate.h97 void g_gate_vlog(int priority, const char *message, va_list ap);
98 void g_gate_log(int priority, const char *message, ...);
/freebsd-current/sys/dev/hpt27xx/
H A Dos_bsd.h198 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int timo) argument
200 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo);
/freebsd-current/sys/dev/hptnr/
H A Dos_bsd.h202 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int timo) argument
204 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo);
/freebsd-current/sys/dev/hptrr/
H A Dos_bsd.h203 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int timo) argument
205 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo);
/freebsd-current/usr.bin/login/
H A Dlogin.conf47 :priority=0:\
120 # :priority=0:\
147 # :priority=0:\
201 # :priority=0:\
/freebsd-current/sys/dev/ppbus/
H A Dppb_base.c244 ppb_sleep(device_t bus, void *wchan, int priority, const char *wmesg, int timo) argument
248 return (mtx_sleep(wchan, ppb->ppc_lock, priority, wmesg, timo));
/freebsd-current/contrib/wpa/src/fst/
H A Dfst.h220 u8 priority; member in struct:fst_iface_cfg
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Decore_tcp_ip.h38 #define MAX_VLAN_PRIO 7 /* Max vlan priority value in 801.1Q tag */
97 u8 priority:4, member in struct:ecore_ipv6hdr
/freebsd-current/sys/dev/ice/
H A Dice_rdma.h160 * @brief Application priority data
164 uint8_t priority; member in struct:ice_qos_app_priority_table
181 * mapping from user priority to traffic class
185 * priority type
/freebsd-current/sys/dev/nvmf/
H A Dnvmf_transport_internal.h42 int priority; member in struct:nvmf_transport_ops

Completed in 249 milliseconds

1234567891011>>