| /freebsd-9-stable/lib/libkse/test/ |
| D | mutex_d.exp | 230 Testing priority inheritence 234 Inheritence test with change of priority - PASS 237 Inheritence test with change of priority - PASS 240 Inheritence test with change of priority - PASS 243 Inheritence test with change of priority - PASS 246 Inheritence test with change of priority - PASS 248 Testing priority ceilings 251 Lock with ceiling priority < thread priority - PASS 252 Lock with ceiling priority = thread priority - PASS 253 Lock with ceiling priority > thread priority - PASS [all …]
|
| /freebsd-9-stable/contrib/openpam/lib/libpam/ |
| 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-9-stable/crypto/openssl/crypto/pqueue/ |
| D | pqueue.c | 69 pitem *pitem_new(PQ_64BIT priority, void *data) in pitem_new() argument 75 pq_64bit_init(&(item->priority)); in pitem_new() 76 pq_64bit_assign(&item->priority, &priority); in pitem_new() 89 pq_64bit_free(&(item->priority)); in pitem_free() 122 if (pq_64bit_gt(&(next->priority), &(item->priority))) { in pqueue_insert() 133 if (pq_64bit_eq(&(item->priority), &(next->priority))) in pqueue_insert() 158 pitem *pqueue_find(pqueue_s *pq, PQ_64BIT priority) in pqueue_find() argument 167 if (pq_64bit_eq(&(next->priority), &priority)) { in pqueue_find() 174 if (pq_64bit_eq(&(next->priority), &priority)) in pqueue_find() 189 printf("item\t" PQ_64BIT_PRINT "\n", item->priority); in pqueue_print()
|
| /freebsd-9-stable/usr.sbin/pkg/ |
| D | dns_utils.c | 51 l = da->priority; in srv_priority_cmp() 52 r = db->priority; in srv_priority_cmp() 67 l = da->priority; in srv_final_cmp() 68 r = db->priority; in srv_final_cmp() 121 unsigned int type, class, ttl, priority, weight, port; in dns_getsrvinfo() local 167 NS_GET16(priority, p); in dns_getsrvinfo() 189 res[n]->priority = priority; in dns_getsrvinfo() 201 priority = f = l = 0; in dns_getsrvinfo() 203 if (res[i]->priority != priority) { in dns_getsrvinfo() 207 priority = res[i]->priority; in dns_getsrvinfo()
|
| /freebsd-9-stable/contrib/ofed/management/opensm/complib/ |
| D | cl_log.c | 64 int priority, i; in cl_log_event() local 75 priority = LOG_ERR; in cl_log_event() 79 priority = LOG_WARNING; in cl_log_event() 84 priority = LOG_INFO; in cl_log_event() 107 syslog(priority, "%s data:\n%s\n", message, p_buf); in cl_log_event() 112 syslog(priority, "%s\n", message); in cl_log_event() 115 syslog(priority, "%s\n", message); in cl_log_event()
|
| /freebsd-9-stable/libexec/bootpd/ |
| 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-9-stable/contrib/wpa/wpa_supplicant/ |
| D | wpa_supplicant.conf | 554 priority=5 563 priority=2 574 priority=2 602 priority=1 616 priority=10 629 priority=2 660 priority=2 776 priority=5 789 priority=5 867 priority=20
|
| /freebsd-9-stable/sys/sys/ |
| D | taskqueue.h | 82 #define TASK_INITIALIZER(priority, func, context) \ argument 84 .ta_priority = (priority), \ 97 #define TASK_INIT(task, priority, func, context) do { \ argument 99 (task)->ta_priority = (priority); \ 105 struct timeout_task *timeout_task, int priority, task_fn_t func, 107 #define TIMEOUT_TASK_INIT(queue, timeout_task, priority, func, context) \ argument 108 _timeout_task_init(queue, timeout_task, priority, func, context);
|
| D | eventhandler.h | 115 #define EVENTHANDLER_DEFINE(name, func, arg, priority) \ argument 120 priority); \ 134 #define EVENTHANDLER_REGISTER(name, func, arg, priority) \ argument 135 eventhandler_register(NULL, #name, func, arg, priority) 147 const char *name, void *func, void *arg, int priority); 157 const char *name, void *func, void *arg, int priority,
|
| /freebsd-9-stable/cddl/contrib/dtracetoolkit/Examples/ |
| D | pridist_example.txt | 48 perl, executing an infinite loop, begins with a high priority of 55 to 59 51 at priority 45 to 49, for 80 ms at priority 35 to 39, down to 60 ms at a 52 priority 15 to 19 - at which point I had hit Ctrl-C to end sampling. 57 setiathome is running with the lowest priority, in the 0 to 4 range. 116 here is due to ts_maxwait triggering a priority boot to avoid CPU starvation; 117 the priority is boosted to the 50 to 54 range, then decreases by 10 until 162 The process has settled to a pattern of 0 priority, ts_maxwait boot to 50, 235 Here we have sampled the kernel running at a priority of 165 to 169. This 236 is the interrupt priority range, and would be an interrupt servicing thread.
|
| D | priclass_example.txt | 60 The IA interactive class had 30 samples of a 50 to 59 priority, a fairly 61 high priority. This class is used for interactive processes, such as 65 The SYS system class has had 4959 samples at a < 0 priority - the lowest, 70 The RT real time class had 110 samples in the 100 to 109 priority range. 80 reduces the priority of CPU bound processes so that they interefere less 81 with I/O bound processes. The result is more samples in the lower priority
|
| /freebsd-9-stable/crypto/openssl/crypto/bio/ |
| D | bss_log.c | 122 static void xsyslog(BIO *bp, int priority, const char *string); 176 int priority, i; in slg_write() local 254 priority = mapping[i].log_level; in slg_write() 257 xsyslog(b, priority, pp); in slg_write() 309 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 316 switch (priority) { in xsyslog() 364 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 374 switch (priority) { in xsyslog() 440 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 442 syslog(priority, "%s", string); in xsyslog()
|
| /freebsd-9-stable/sys/kern/ |
| D | subr_devstat.c | 80 devstat_priority priority); 90 devstat_priority priority) in devstat_new_entry() argument 104 flags, device_type, priority); in devstat_new_entry() 119 devstat_priority priority) in devstat_add_entry() argument 152 if ((priority <= ds_tmp->priority) in devstat_add_entry() 154 || (priority > ds_next->priority))) { in devstat_add_entry() 158 } else if (priority > ds_tmp->priority) { in devstat_add_entry() 187 ds->priority = priority; in devstat_add_entry()
|
| /freebsd-9-stable/contrib/gcc/config/i386/ |
| D | nwld.c | 36 nwld_named_section_asm_out_constructor (rtx symbol, int priority) in nwld_named_section_asm_out_constructor() argument 48 MAX_INIT_PRIORITY - priority); in nwld_named_section_asm_out_constructor() 57 nwld_named_section_asm_out_destructor (rtx symbol, int priority) in nwld_named_section_asm_out_destructor() argument 68 MAX_INIT_PRIORITY - priority); in nwld_named_section_asm_out_destructor()
|
| /freebsd-9-stable/contrib/ntp/scripts/update-leap/ |
| D | update-leap.in | 185 if ($QUIET ne "" and ( $priority eq "info" or $priority eq "notice" or $priority eq "debug" ) ) { 188 printf "%s: $message\n", uc $priority; 193 … if (($CRONJOB ne "" and ($priority ne "info" ) and ($priority ne "debug" )) || ($VERBOSE ne "")) { 195 print STDERR "$0: $priority: $message\n"; 197 syslog($priority, $message);
|
| /freebsd-9-stable/share/examples/pf/ |
| 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)
|
| 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
|
| 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)
|
| D | faq-example3 | 21 # www_ext_http - http traffic from the WWW server; higher priority. 27 queue www_ext_http bandwidth 50% priority 3 cbq(red borrow) 28 queue www_ext_misc bandwidth 50% priority 1 cbq(borrow) 29 queue boss_ext bandwidth 500Kb priority 3 cbq(borrow) 46 # boss_int - traffic to the boss's PC; assign a higher priority. 52 queue boss_int bandwidth 250Kb priority 3 cbq(borrow) 67 # net_dmz_http - http traffic; higher priority. 72 queue net_dmz_http bandwidth 50% priority 3 cbq(red borrow) 73 queue net_dmz_misc bandwidth 50% priority 1 cbq(default borrow)
|
| /freebsd-9-stable/sys/geom/mirror/ |
| D | g_mirror_ctl.c | 97 intmax_t *slicep, *priority; in g_mirror_ctl_configure() local 152 priority = gctl_get_paraml(req, "priority", sizeof(*priority)); in g_mirror_ctl_configure() 153 if (priority == NULL) { in g_mirror_ctl_configure() 157 if (*priority < -1 || *priority > 255) { in g_mirror_ctl_configure() 159 *priority); in g_mirror_ctl_configure() 168 if (*priority > -1) { in g_mirror_ctl_configure() 269 if (disk->d_priority == *priority) in g_mirror_ctl_configure() 272 disk->d_priority = *priority; in g_mirror_ctl_configure() 392 intmax_t *priority; in g_mirror_ctl_insert() local 412 priority = gctl_get_paraml(req, "priority", sizeof(*priority)); in g_mirror_ctl_insert() [all …]
|
| /freebsd-9-stable/sys/contrib/octeon-sdk/ |
| D | cvmx-pko.c | 87 uint64_t priority = 8; in cvmx_pko_initialize_global() local 100 cvmx_pko_config_port(CVMX_PKO_MEM_QUEUE_PTRS_ILLEGAL_PID, i, 1, &priority); in cvmx_pko_initialize_global() 235 …pko_config_port(uint64_t port, uint64_t base_queue, uint64_t num_queues, const uint64_t priority[]) in cvmx_pko_config_port() argument 264 if (static_priority_base == -1 && priority[queue] == CVMX_PKO_QUEUE_STATIC_PRIORITY) in cvmx_pko_config_port() 267 …if (static_priority_base != -1 && static_priority_end == -1 && priority[queue] != CVMX_PKO_QUEUE_S… in cvmx_pko_config_port() 273 …if (static_priority_end != -1 && (int)queue > static_priority_end && priority[queue] == CVMX_PKO_Q… in cvmx_pko_config_port() 316 switch ((int)priority[queue]) in cvmx_pko_config_port() 331 …rintf("ERROR: cvmx_pko_config_port: Invalid priority %llu\n", (unsigned long long)priority[queue]); in cvmx_pko_config_port()
|
| /freebsd-9-stable/sys/dev/hptrr/ |
| D | os_bsd.h | 239 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int… in hpt_sleep() argument 241 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo); in hpt_sleep() 244 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int… in hpt_sleep() argument 248 asleep(ident, priority, wmesg, timo); in hpt_sleep() 250 retval = await(priority, timo); in hpt_sleep()
|
| /freebsd-9-stable/sys/dev/hptnr/ |
| D | os_bsd.h | 241 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int… in hpt_sleep() argument 243 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo); in hpt_sleep() 246 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int… in hpt_sleep() argument 250 asleep(ident, priority, wmesg, timo); in hpt_sleep() 252 retval = await(priority, timo); in hpt_sleep()
|
| /freebsd-9-stable/sys/dev/hpt27xx/ |
| D | os_bsd.h | 239 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int… in hpt_sleep() argument 241 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo); in hpt_sleep() 244 static __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int… in hpt_sleep() argument 248 asleep(ident, priority, wmesg, timo); in hpt_sleep() 250 retval = await(priority, timo); in hpt_sleep()
|
| /freebsd-9-stable/crypto/openssl/doc/ssl/ |
| D | SSL_get_ciphers.pod | 12 const char *SSL_get_cipher_list(const SSL *ssl, int priority); 21 listed for B<ssl> with B<priority>. If B<ssl> is NULL, no ciphers are 22 available, or there are less ciphers than B<priority> available, NULL 30 Call SSL_get_cipher_list() with B<priority> starting from 0 to obtain the
|