Home
last modified time | relevance | path

Searched full:blocked (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/freebsd/lib/libpmc/pmu-events/arch/s390/cf_z10/
H A Dcrypto.json17 "BriefDescription": "PRNG Blocked Functions",
18 …: "Total number of the PRNG functions that are issued by the CPU and are blocked because the DEA/A…
23 "BriefDescription": "PRNG Blocked Cycles",
24 …"PublicDescription": "Total number of CPU cycles blocked for the PRNG functions issued by the CPU …
41 "BriefDescription": "SHA Blocked Functions",
42 …": "Total number of the SHA functions that are issued by the CPU and are blocked because the SHA c…
48 …"PublicDescription": "Total number of CPU cycles blocked for the SHA functions issued by the CPU b…
65 "BriefDescription": "DEA Blocked Functions",
66 …": "Total number of the DEA functions that are issued by the CPU and are blocked because the DEA/A…
71 "BriefDescription": "DEA Blocked Cycles",
[all …]
/freebsd/lib/libpmc/pmu-events/arch/s390/cf_z13/
H A Dcrypto.json17 "BriefDescription": "PRNG Blocked Functions",
18 …: "Total number of the PRNG functions that are issued by the CPU and are blocked because the DEA/A…
23 "BriefDescription": "PRNG Blocked Cycles",
24 …"PublicDescription": "Total number of CPU cycles blocked for the PRNG functions issued by the CPU …
41 "BriefDescription": "SHA Blocked Functions",
42 …": "Total number of the SHA functions that are issued by the CPU and are blocked because the SHA c…
48 …"PublicDescription": "Total number of CPU cycles blocked for the SHA functions issued by the CPU b…
65 "BriefDescription": "DEA Blocked Functions",
66 …": "Total number of the DEA functions that are issued by the CPU and are blocked because the DEA/A…
71 "BriefDescription": "DEA Blocked Cycles",
[all …]
/freebsd/lib/libpmc/pmu-events/arch/s390/cf_z14/
H A Dcrypto.json17 "BriefDescription": "PRNG Blocked Functions",
18 …: "Total number of the PRNG functions that are issued by the CPU and are blocked because the DEA/A…
23 "BriefDescription": "PRNG Blocked Cycles",
24 …"PublicDescription": "Total number of CPU cycles blocked for the PRNG functions issued by the CPU …
41 "BriefDescription": "SHA Blocked Functions",
42 …": "Total number of the SHA functions that are issued by the CPU and are blocked because the SHA c…
48 …"PublicDescription": "Total number of CPU cycles blocked for the SHA functions issued by the CPU b…
65 "BriefDescription": "DEA Blocked Functions",
66 …": "Total number of the DEA functions that are issued by the CPU and are blocked because the DEA/A…
71 "BriefDescription": "DEA Blocked Cycles",
[all …]
/freebsd/lib/libpmc/pmu-events/arch/s390/cf_z196/
H A Dcrypto.json17 "BriefDescription": "PRNG Blocked Functions",
18 …: "Total number of the PRNG functions that are issued by the CPU and are blocked because the DEA/A…
23 "BriefDescription": "PRNG Blocked Cycles",
24 …"PublicDescription": "Total number of CPU cycles blocked for the PRNG functions issued by the CPU …
41 "BriefDescription": "SHA Blocked Functions",
42 …": "Total number of the SHA functions that are issued by the CPU and are blocked because the SHA c…
48 …"PublicDescription": "Total number of CPU cycles blocked for the SHA functions issued by the CPU b…
65 "BriefDescription": "DEA Blocked Functions",
66 …": "Total number of the DEA functions that are issued by the CPU and are blocked because the DEA/A…
71 "BriefDescription": "DEA Blocked Cycles",
[all …]
/freebsd/lib/libpmc/pmu-events/arch/s390/cf_zec12/
H A Dcrypto.json17 "BriefDescription": "PRNG Blocked Functions",
18 …: "Total number of the PRNG functions that are issued by the CPU and are blocked because the DEA/A…
23 "BriefDescription": "PRNG Blocked Cycles",
24 …"PublicDescription": "Total number of CPU cycles blocked for the PRNG functions issued by the CPU …
41 "BriefDescription": "SHA Blocked Functions",
42 …": "Total number of the SHA functions that are issued by the CPU and are blocked because the SHA c…
48 …"PublicDescription": "Total number of CPU cycles blocked for the SHA functions issued by the CPU b…
65 "BriefDescription": "DEA Blocked Functions",
66 …": "Total number of the DEA functions that are issued by the CPU and are blocked because the DEA/A…
71 "BriefDescription": "DEA Blocked Cycles",
[all …]
/freebsd/contrib/wpa/src/drivers/
H A Drfkill.c50 int blocked; member
83 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked"); in rfkill_receive()
86 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked"); in rfkill_receive()
93 if (new_blocked != rfkill->blocked) { in rfkill_receive()
94 rfkill->blocked = new_blocked; in rfkill_receive()
176 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked"); in rfkill_init()
177 rfkill->blocked = 1; in rfkill_init()
179 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked"); in rfkill_init()
180 rfkill->blocked = 1; in rfkill_init()
223 return rfkill->blocked; in rfkill_is_blocked()
/freebsd/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_killable.h47 sigset_t blocked, oldset; in down_interruptible_killable() local
48 siginitsetinv(&blocked, SHUTDOWN_SIGS); in down_interruptible_killable()
49 sigprocmask(SIG_SETMASK, &blocked, &oldset); in down_interruptible_killable()
61 sigset_t blocked, oldset; in mutex_lock_interruptible_killable() local
62 siginitsetinv(&blocked, SHUTDOWN_SIGS); in mutex_lock_interruptible_killable()
63 sigprocmask(SIG_SETMASK, &blocked, &oldset); in mutex_lock_interruptible_killable()
/freebsd/sys/sys/
H A Dturnstile.h33 * queue of threads blocked on them when they are contested. Each
48 * blocked threads for a pending wakeup. turnstile_signal() marks the
49 * highest priority blocked thread while turnstile_broadcast() marks all
50 * blocked threads. The turnstile_signal() function returns true if the
68 * The highest priority thread blocked on a specified queue of a
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-condvar.c200 sigset_t blocked, saved; in __cv_wait_idle() local
202 sigfillset(&blocked); in __cv_wait_idle()
203 (void) sigprocmask(SIG_BLOCK, &blocked, &saved); in __cv_wait_idle()
302 sigset_t blocked, saved; in __cv_timedwait_idle() local
305 sigfillset(&blocked); in __cv_timedwait_idle()
306 (void) sigprocmask(SIG_BLOCK, &blocked, &saved); in __cv_timedwait_idle()
415 sigset_t blocked, saved; in cv_timedwait_idle_hires() local
418 sigfillset(&blocked); in cv_timedwait_idle_hires()
419 (void) sigprocmask(SIG_BLOCK, &blocked, &saved); in cv_timedwait_idle_hires()
/freebsd/contrib/blocklist/bin/
H A Dblacklistctl.c88 int all, blocked, remain, wide, noheader; in main() local
91 noheader = wide = blocked = all = remain = 0; in main()
104 blocked = 0; in main()
107 blocked = 1; in main()
141 if (blocked) { in main()
/freebsd/sys/kern/
H A Dsubr_turnstile.c35 * Implementation of turnstiles used to hold queue of threads blocked on
57 * blocked on the lock, then it reclaims the turnstile associated with the lock
110 * are linked list of threads blocked on the turnstile's lock. One list is
122 struct threadqueue ts_blocked[2]; /* (c + q) Blocked threads. */
195 * of the thread being blocked to all the threads holding locks that have to
255 * thread that is being blocked, we are finished. in propagate_priority()
286 * If we aren't blocked on a lock, we should be. in propagate_priority()
289 "thread %d(%s):%d holds %s but isn't blocked on a lock\n", in propagate_priority()
294 * Pick up the lock that td is blocked on. in propagate_priority()
322 * This thread may not be blocked on this turnstile anymore in turnstile_adjust_thread()
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/goldmont/
H A Dpipeline.json263 …nt is relevant during certain microcode flows). Counts all issue slots blocked while within this…
278 …"BriefDescription": "Loads blocked because address has 4k partial address false dependence (Precis…
289 "BriefDescription": "Loads blocked (Precise event capable)",
295 "PublicDescription": "Counts anytime a load that retires is blocked for any reason.",
300 "BriefDescription": "Loads blocked due to store data not ready (Precise event capable)",
306 …"PublicDescription": "Counts a load blocked from using a store forward, but did not occur because …
311 … "BriefDescription": "Loads blocked due to store forward restriction (Precise event capable)",
317 …cription": "Counts a load blocked from using a store forward because of an address/size mismatch, …
322 … "BriefDescription": "Loads blocked because address in not in the UTLB (Precise event capable)",
328 …"PublicDescription": "Counts loads blocked because they are unable to find their physical address …
/freebsd/share/doc/psd/05.sysman/
H A D1.3.t35 interrupt: the signal is blocked from further occurrence,
39 the signal is to be \fIblocked\fP or \fIignored\fP. A process may
53 with the signal that caused their invocation \fIblocked\fP, but other
149 If the signal is not currently \fIblocked\fP by the process
162 The mask of \fIblocked\fP signals is independent of handlers for
215 It is possible to check conditions with some signals blocked,
/freebsd/usr.sbin/bsnmpd/modules/snmp_pf/
H A DBEGEMOT-PF-MIB.txt672 "The number of IPv4 bytes blocked coming in on this interface."
688 "The number of IPv4 bytes blocked going out on this interface."
704 "The number of IPv4 packets blocked coming in on this interface."
720 "The number of IPv4 packets blocked going out on this interface."
736 "The number of IPv6 bytes blocked coming in on this interface."
752 "The number of IPv6 bytes blocked going out on this interface."
769 "The number of IPv6 packets blocked coming in on this interface."
785 "The number of IPv6 packets blocked going out on this interface."
923 "The number of bytes blocked coming in matching the table."
949 "The number of bytes blocked going out matching the table."
[all …]
/freebsd/lib/libc/gen/
H A Dsem_destroy.363 There are currently threads blocked on the semaphore that
78 if called while there are threads blocked on
84 if there are threads blocked on
/freebsd/contrib/libpcap/
H A Dpcap_breakloop.3pcap43 blocked waiting for packets to arrive,
45 will also, on some platforms, wake up the thread that is blocked. In
76 blocked in pcap_dispatch(), pcap_loop(), pcap_next(3PCAP), or
146 will not wake up a blocked thread on any platform.
/freebsd/lib/libpmc/pmu-events/arch/x86/goldmontplus/
H A Dpipeline.json312 …nt is relevant during certain microcode flows). Counts all issue slots blocked while within this…
329 …"BriefDescription": "Loads blocked because address has 4k partial address false dependence (Precis…
341 "BriefDescription": "Loads blocked (Precise event capable)",
348 "PublicDescription": "Counts anytime a load that retires is blocked for any reason.",
353 "BriefDescription": "Loads blocked due to store data not ready (Precise event capable)",
360 …"PublicDescription": "Counts a load blocked from using a store forward, but did not occur because …
365 … "BriefDescription": "Loads blocked due to store forward restriction (Precise event capable)",
372 …cription": "Counts a load blocked from using a store forward because of an address/size mismatch, …
377 … "BriefDescription": "Loads blocked because address in not in the UTLB (Precise event capable)",
384 …"PublicDescription": "Counts loads blocked because they are unable to find their physical address …
/freebsd/sys/contrib/dev/mediatek/mt76/
H A Dtx.c450 return q->stopped || q->blocked || in mt76_txq_stopped()
726 void __mt76_set_tx_blocked(struct mt76_dev *dev, bool blocked) in __mt76_set_tx_blocked() argument
731 if (blocked == q->blocked) in __mt76_set_tx_blocked()
734 q->blocked = blocked; in __mt76_set_tx_blocked()
739 q->blocked = blocked; in __mt76_set_tx_blocked()
744 q->blocked = blocked; in __mt76_set_tx_blocked()
747 if (!blocked) in __mt76_set_tx_blocked()
815 dev->phy.q_tx[0]->blocked) in mt76_token_release()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_filter.396 Note that the compressed output is always properly blocked.
102 The encoded output is always properly blocked.
108 The output of that program is blocked and written to the client
/freebsd/lib/libsys/
H A Dsigsuspend.233 .Nd atomically release blocked signals and wait for interrupt
44 temporarily changes the blocked signal mask to the set to which
53 In normal usage, a signal is blocked using
H A Dsigaction.256 the signal is normally blocked from further occurrence, the current thread
65 .Em blocked
79 .Em blocked ,
83 defines the set of signals currently blocked from delivery
100 .Em blocked
104 .Em blocked
105 by all threads then it is delivered to one thread that does not have it blocked
H A Dsigprocmask.248 that are blocked from delivery).
49 Signals are blocked if they are members of the current signal mask set.
95 to be blocked.
H A Dsigfastblock.262 blocked signal mask for delivery of asynchronous signals.
102 Kernel stops inferring the blocked mask from non-zero value of its
103 blocked count.
/freebsd/lib/libc/compat-43/
H A Dsigvec.255 the signal is blocked from further occurrence, the current process
60 .Em blocked
75 .Em blocked ,
79 defines the set of signals currently blocked from delivery
94 .Em blocked
H A Dsigpause.2153 signals are to be blocked.
169 if the signal had been blocked and the signal's previous disposition if
170 it had not been blocked.

12345678910>>...25