| /freebsd-13.1/contrib/openpam/lib/libpam/ |
| H A D | openpam_log.c | 67 int priority; in openpam_log() local 75 priority = LOG_DEBUG; in openpam_log() 78 priority = LOG_INFO; in openpam_log() 81 priority = LOG_NOTICE; in openpam_log() 85 priority = LOG_ERR; in openpam_log() 90 vsyslog(priority, fmt, ap); in openpam_log() 102 int priority; in _openpam_log() local 110 priority = LOG_DEBUG; in _openpam_log() 113 priority = LOG_INFO; in _openpam_log() 116 priority = LOG_NOTICE; in _openpam_log() [all …]
|
| /freebsd-13.1/contrib/libpcap/rpcapd/ |
| H A D | log.c | 63 switch (priority) { in rpcapd_vlog_stderr() 94 static void rpcapd_vlog_systemlog(log_priority priority, const char *message, in rpcapd_vlog_systemlog() argument 123 rpcapd_vlog_stderr(priority, message, ap); in rpcapd_vlog_systemlog() 130 switch (priority) { in rpcapd_vlog_systemlog() 169 rpcapd_vlog_stderr(priority, message, ap); in rpcapd_vlog_systemlog() 173 static void rpcapd_vlog_systemlog(log_priority priority, const char *message, in rpcapd_vlog_systemlog() argument 187 switch (priority) { in rpcapd_vlog_systemlog() 244 void rpcapd_log(log_priority priority, const char *message, ...) in rpcapd_log() argument 248 if (priority != LOGPRIO_DEBUG || log_debug_messages) { in rpcapd_log() 252 rpcapd_vlog_systemlog(priority, message, ap); in rpcapd_log() [all …]
|
| /freebsd-13.1/contrib/libucl/tests/basic/ |
| H A D | load.in | 4 .load(try=false, multiline=false, trim=false, escape=false, key="key1", target="string", priority=1… 5 .load(try=false, multiline=true, trim=false, escape=false, key="key2", target="string", priority=1)… 6 .load(try=false, multiline=true, trim=true, escape=false, key="key3", target="string", priority=1) … 7 .load(try=false, multiline=true, trim=true, escape=true, key="key4", target="string", priority=1) "… 8 .load(try=false, multiline=false, trim=true, escape=false, key="key5", target="string", priority=1)… 9 .load(try=false, multiline=false, trim=false, escape=true, key="key6", target="string", priority=1)… 10 .load(try=false, multiline=false, trim=true, escape=true, key="key7", target="string", priority=1) … 11 .load(try=false, multiline=false, trim=false, escape=false, key="key8", target="int", priority=1) "… 12 .load(try=false, multiline=false, trim=false, escape=false, key="key9", target="int", priority=4) "… 13 .load(try=true, multiline=false, trim=false, escape=false, key="key10", target="string", priority=1…
|
| /freebsd-13.1/contrib/unbound/testdata/svcb.tdir/ |
| H A D | svcb.test-vectors-wf.zone | 12 00 00 ; priority 20 00 01 ; priority 27 00 10 ; priority 37 00 01 ; priority 48 00 01 ; priority 58 00 01 ; priority 69 00 01 ; priority 80 00 10 ; priority 101 00 10 ; priority 111 00 10 ; priority [all …]
|
| /freebsd-13.1/sys/contrib/openzfs/cmd/zed/ |
| H A D | zed_log.c | 32 int priority; member 162 zed_log_stderr_open(int priority) in zed_log_stderr_open() argument 165 _ctx.priority = priority; in zed_log_stderr_open() 205 _zed_log_aux(int priority, const char *fmt, va_list vargs) in _zed_log_aux() argument 220 syslog(priority, "%s", buf); in _zed_log_aux() 222 if (_ctx.do_stderr && (priority <= _ctx.priority)) in _zed_log_aux() 231 zed_log_msg(int priority, const char *fmt, ...) in zed_log_msg() argument 237 _zed_log_aux(priority, fmt, vargs); in zed_log_msg()
|
| /freebsd-13.1/usr.sbin/pkg/ |
| H A D | dns_utils.c | 53 l = da->priority; in srv_priority_cmp() 54 r = db->priority; in srv_priority_cmp() 69 l = da->priority; in srv_final_cmp() 70 r = db->priority; in srv_final_cmp() 125 unsigned int type, class, ttl, priority, weight, port; in dns_getsrvinfo() local 171 NS_GET16(priority, p); in dns_getsrvinfo() 193 res[n]->priority = priority; in dns_getsrvinfo() 205 priority = f = l = 0; in dns_getsrvinfo() 207 if (res[i]->priority != priority) { in dns_getsrvinfo() 211 priority = res[i]->priority; in dns_getsrvinfo()
|
| /freebsd-13.1/contrib/ofed/opensm/complib/ |
| H A D | cl_log.c | 63 int priority, i; in cl_log_event() local 74 priority = LOG_ERR; in cl_log_event() 78 priority = LOG_WARNING; in cl_log_event() 83 priority = LOG_INFO; in cl_log_event() 106 syslog(priority, "%s data:\n%s\n", message, p_buf); in cl_log_event() 111 syslog(priority, "%s\n", message); in cl_log_event() 114 syslog(priority, "%s\n", message); in cl_log_event()
|
| /freebsd-13.1/libexec/bootpd/ |
| H A D | report.c | 92 report(int priority, const char *fmt,...) in report() argument 97 if ((priority < 0) || (priority >= numlevels)) { in report() 98 priority = numlevels - 1; in report() 109 progname, levelnames[priority], buf); in report() 113 syslog((priority | LOG_BOOTP), "%s", buf); in report()
|
| /freebsd-13.1/sys/sys/ |
| H A D | taskqueue.h | 109 #define TASK_INITIALIZER(priority, func, context) \ argument 110 { .ta_priority = (priority), \ 123 #define TASK_INIT_FLAGS(task, priority, func, context, flags) do { \ argument 125 (task)->ta_priority = (priority); \ 134 struct timeout_task *timeout_task, int priority, task_fn_t func, 136 #define TIMEOUT_TASK_INIT(queue, timeout_task, priority, func, context) do { \ argument 137 _Static_assert((priority) >= 0 && (priority) <= 255, \ 139 _timeout_task_init(queue, timeout_task, priority, func, context); \
|
| /freebsd-13.1/contrib/wpa/wpa_supplicant/ |
| H A D | wpa_supplicant.conf | 1682 priority=5 1691 priority=2 1702 priority=2 1730 priority=1 1744 priority=10 1757 priority=2 1788 priority=2 1904 priority=5 1917 priority=5 2012 priority=20
|
| /freebsd-13.1/sys/contrib/ck/src/ |
| H A D | ck_ht.c | 453 if (priority != NULL) { in ck_ht_gc() 846 if (priority != NULL) { in ck_ht_set_spmc() 859 candidate = priority; in ck_ht_set_spmc() 864 priority != NULL && candidate != priority) { in ck_ht_set_spmc() 884 if (priority->value == CK_HT_KEY_TOMBSTONE) { in ck_ht_set_spmc() 913 if (priority != NULL) { in ck_ht_set_spmc() 914 if (priority->key == CK_HT_KEY_TOMBSTONE) { in ck_ht_set_spmc() 919 candidate = priority; in ck_ht_set_spmc() 982 if (candidate != NULL || priority != NULL) in ck_ht_put_spmc() 989 if (priority != NULL) { in ck_ht_put_spmc() [all …]
|
| /freebsd-13.1/usr.sbin/autofs/ |
| H A D | log.c | 88 log_common(int priority, int log_errno, const char *fmt, va_list ap) in log_common() argument 113 syslog(priority, "%s (%s): %s", in log_common() 118 syslog(priority, "%s: %s", in log_common() 122 syslog(priority, "%s", msgbuf_strvised); in log_common() 131 syslog(priority, "%s (%s): %s: %s", in log_common() 136 syslog(priority, "%s: %s: %s", in log_common() 141 syslog(priority, "%s: %s", in log_common()
|
| /freebsd-13.1/usr.sbin/ctld/ |
| H A D | log.c | 88 log_common(int priority, int log_errno, const char *fmt, va_list ap) in log_common() argument 113 syslog(priority, "%s (%s): %s", in log_common() 118 syslog(priority, "%s: %s", in log_common() 122 syslog(priority, "%s", msgbuf_strvised); in log_common() 131 syslog(priority, "%s (%s): %s: %s", in log_common() 136 syslog(priority, "%s: %s: %s", in log_common() 141 syslog(priority, "%s: %s", in log_common()
|
| /freebsd-13.1/usr.sbin/iscsid/ |
| H A D | log.c | 88 log_common(int priority, int log_errno, const char *fmt, va_list ap) in log_common() argument 113 syslog(priority, "%s (%s): %s", in log_common() 118 syslog(priority, "%s: %s", in log_common() 122 syslog(priority, "%s", msgbuf_strvised); in log_common() 131 syslog(priority, "%s (%s): %s: %s", in log_common() 136 syslog(priority, "%s: %s: %s", in log_common() 141 syslog(priority, "%s: %s", in log_common()
|
| /freebsd-13.1/crypto/openssl/crypto/bio/ |
| H A D | bss_log.c | 84 static void xsyslog(BIO *bp, int priority, const char *string); 130 int priority, i; in slg_write() local 209 priority = mapping[i].log_level; in slg_write() 212 xsyslog(b, priority, pp); in slg_write() 250 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 259 switch (priority) { in xsyslog() 306 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 333 switch (priority) { in xsyslog() 399 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 401 syslog(priority, "%s", string); in xsyslog()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | ti,c64x+megamod-pic.txt | 18 Single cell specifying the core interrupt priority level (4-15) where 19 4 is highest priority and 15 is lowest priority. 37 One for each core interrupt priority level. In addition to the combined 50 The cells contain the core priority interrupt to which the 56 priority interrupts. The first cell corresponds to 57 core priority 4 and the last cell corresponds to 58 core priority 15. The value of each cell is the 70 be the core priority level, not the megamodule interrupt number. 101 mapped directly to core priority interrupt 8. The node using this interrupt
|
| H A D | arm,nvic.txt | 5 vary in the number of interrupts and priority bits per interrupt. 19 The 2nd cell is the priority of the interrupt. 24 - arm,num-irq-priority-bits: The number of priority bits implemented by the 35 arm,num-irq-priority-bits = <4>;
|
| /freebsd-13.1/contrib/netbsd-tests/lib/libc/gen/posix_spawn/ |
| H A D | t_spawnattr.c | 79 int max, min, new, priority; in get_different_priority() local 86 priority = param.sched_priority; in get_different_priority() 92 new = priority + 1; in get_different_priority() 109 int pid, scheduler, child_scheduler, priority, status, err, pfd[2]; in ATF_TC_BODY() local 127 priority = get_different_priority(scheduler); in ATF_TC_BODY() 128 sp.sched_priority = priority; in ATF_TC_BODY()
|
| /freebsd-13.1/crypto/openssl/ssl/ |
| H A D | pqueue.c | 27 memcpy(item->priority, prio64be, sizeof(item->priority)); in pitem_new() 67 int cmp = memcmp(next->priority, item->priority, 8); in pqueue_insert() 113 if (memcmp(next->priority, prio64be, 8) == 0) { in pqueue_find() 120 if (memcmp(next->priority, prio64be, 8) == 0) in pqueue_find()
|
| /freebsd-13.1/share/examples/pf/ |
| H A D | queue1 | 8 queue deflt bandwidth 10% priority 0 cbq(default ecn) 9 queue http bandwidth 1.5Mb priority 3 { http_vhosts, http_cust1 } 12 queue mail bandwidth 10% priority 1 13 queue ssh bandwidth 100Kb priority 7 cbq(borrow) 14 queue rsets bandwidth 7500b priority 0 cbq(red)
|
| H A D | queue2 | 4 # give interactive ssh traffic priority over ssh bulk transfers (scp, sftp) 13 queue http bandwidth 60% priority 2 cbq(borrow red) { employees, developers } 16 queue mail bandwidth 10% priority 0 cbq(borrow ecn) 18 queue ssh_interactive bandwidth 25% priority 7 19 queue ssh_bulk bandwidth 75% priority 0
|
| H A D | ackpri | 4 # Use a simple priority queue to prioritize empty (no payload) TCP ACKs, 12 # priority queue below, download drops only to 48 kB/s. 20 # value. If it's set too high, the priority queue is not effective, and 25 queue q_pri priority 7 26 queue q_def priority 1 priq(default)
|
| /freebsd-13.1/sys/dev/ixl/ |
| H A D | i40e_dcb.c | 73 u8 priority; in i40e_parse_ieee_etscfg_tlv() local 143 u8 priority; in i40e_parse_ieee_etsrec_tlv() local 315 u8 priority; in i40e_parse_cee_pgcfg_tlv() local 417 dcbcfg->app[i].priority = up; in i40e_parse_cee_app_tlv() 677 dcbcfg->app[0].priority = in i40e_cee_to_dcb_v1_config() 684 dcbcfg->app[1].priority = in i40e_cee_to_dcb_v1_config() 691 dcbcfg->app[2].priority = in i40e_cee_to_dcb_v1_config() 758 dcbcfg->app[i].priority = in i40e_cee_to_dcb_config() 774 dcbcfg->app[i].priority = in i40e_cee_to_dcb_config() 790 dcbcfg->app[i].priority = in i40e_cee_to_dcb_config() [all …]
|
| /freebsd-13.1/sys/kern/ |
| H A D | subr_devstat.c | 81 devstat_priority priority); 91 devstat_priority priority) in devstat_new_entry() argument 106 flags, device_type, priority); in devstat_new_entry() 121 devstat_priority priority) in devstat_add_entry() argument 154 if ((priority <= ds_tmp->priority) in devstat_add_entry() 156 || (priority > ds_next->priority))) { in devstat_add_entry() 160 } else if (priority > ds_tmp->priority) { in devstat_add_entry() 189 ds->priority = priority; in devstat_add_entry()
|
| /freebsd-13.1/sys/contrib/ncsw/Peripherals/FM/MAC/ |
| H A D | fman_memac.c | 281 uint8_t priority, in fman_memac_set_tx_pause_frames() argument 289 if (priority == 0xff) { in fman_memac_set_tx_pause_frames() 295 priority = 0; in fman_memac_set_tx_pause_frames() 306 tmp = ioread32be(®s->pause_quanta[priority / 2]); in fman_memac_set_tx_pause_frames() 307 if (priority % 2) in fman_memac_set_tx_pause_frames() 311 tmp |= ((uint32_t)pause_time << (16 * (priority % 2))); in fman_memac_set_tx_pause_frames() 312 iowrite32be(tmp, ®s->pause_quanta[priority / 2]); in fman_memac_set_tx_pause_frames() 314 tmp = ioread32be(®s->pause_thresh[priority / 2]); in fman_memac_set_tx_pause_frames() 315 if (priority % 2) in fman_memac_set_tx_pause_frames() 319 tmp |= ((uint32_t)thresh_time<<(16 * (priority % 2))); in fman_memac_set_tx_pause_frames() [all …]
|