HomeSort by: relevance | last modified time | path
    Searched defs:blocked (Results 1 - 24 of 24) sorted by relevancy

  /src/external/bsd/blocklist/bin/
blocklistctl.c 91 int all, blocked, remain, wide, noheader; local
94 noheader = wide = blocked = all = remain = 0;
107 blocked = 0;
110 blocked = 1;
144 if (blocked) {
  /src/crypto/external/apache2/openssl/dist/crypto/async/
async_local.h 36 unsigned int blocked; member in struct:async_ctx_st
  /src/crypto/external/bsd/openssl/dist/crypto/async/
async_local.h 36 unsigned int blocked; member in struct:async_ctx_st
  /src/crypto/external/bsd/openssl.old/dist/crypto/async/
async_local.h 36 unsigned int blocked; member in struct:async_ctx_st
  /src/external/bsd/wpa/dist/src/drivers/
rfkill.c 50 int blocked; member in struct:rfkill_data
83 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
86 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
93 if (new_blocked != rfkill->blocked) {
94 rfkill->blocked = new_blocked;
176 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
177 rfkill->blocked = 1;
179 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
180 rfkill->blocked = 1;
223 return rfkill->blocked;
    [all...]
  /src/external/gpl3/gdb/dist/sim/cris/
sim-main.h 70 char blocked;
126 for every time a blocked thread (internally, when threading) polls
69 char blocked; member in struct:cris_thread_info::__anon19319
traps.c 1109 /* See if there's really a pending, non-blocked handler. We don't
1113 && !cris_cpu->thread_data[next].sigdata[sig].blocked)
1118 USI blocked; local
1143 /* First, we store the currently blocked signals. */
1144 blocked = 0;
1146 blocked
1147 |= cris_cpu->thread_data[next].sigdata[i + 1].blocked << i;
1148 sim_core_write_aligned_4 (current_cpu, pc, 0, sp, blocked);
1149 blocked = 0;
1151 blocked
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/cris/
sim-main.h 70 char blocked;
126 for every time a blocked thread (internally, when threading) polls
69 char blocked; member in struct:cris_thread_info::__anon22058
traps.c 1109 /* See if there's really a pending, non-blocked handler. We don't
1113 && !cris_cpu->thread_data[next].sigdata[sig].blocked)
1118 USI blocked; local
1143 /* First, we store the currently blocked signals. */
1144 blocked = 0;
1146 blocked
1147 |= cris_cpu->thread_data[next].sigdata[i + 1].blocked << i;
1148 sim_core_write_aligned_4 (current_cpu, pc, 0, sp, blocked);
1149 blocked = 0;
1151 blocked
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/
app.c 87 atomic_bool blocked; member in struct:isc_appctx
136 atomic_init(&ctx->blocked, false);
166 * blocked by default, ensuring that only the thread that calls
274 * wait for signals. Signals are blocked, so any such signal will
358 atomic_load_acquire(&ctx->blocked))
485 REQUIRE(atomic_compare_exchange_strong_acq_rel(&isc_g_appctx.blocked,
503 REQUIRE(atomic_compare_exchange_strong_acq_rel(&isc_g_appctx.blocked,
  /src/sys/kern/
vfs_cache.c 1183 struct vnode *dvp, *blocked; local
1188 blocked = NULL;
1202 blocked = NULL;
1224 if (blocked == dvp) {
1228 blocked = dvp;
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
route-tracker.c 98 bool blocked; member in struct:route_tracker
513 if (tracker->blocked) {
514 INFO("tracker is blocked");
567 if (tracker->blocked) {
568 INFO("tracker is blocked");
652 route_state->route_tracker->blocked = true;
  /src/sys/arch/arm/pic/
pic.c 497 uint32_t blocked; local
511 if ((blocked = *iblocked) != 0) {
513 irq_base, blocked);
514 atomic_and_32(iblocked, ~blocked);
  /src/sys/dev/ic/
isp_netbsd.h 97 blocked : 1; member in struct:isposinfo
  /src/external/cddl/osnet/dist/common/unicode/
u8_textprep.c 1030 * The blocked() function checks on the combining class values of previous
1031 * characters in this sequence and return whether it is blocked or not.
1034 blocked(uchar_t *comb_class, size_t last) function
1212 * is a non-Starter and not blocked, then, we try once
1235 if (blocked(comb_class, i + 1))
  /src/external/gpl2/diffutils/dist/src/
sdiff.c 636 sigset_t blocked;
644 sigemptyset (&blocked);
645 sigaddset (&blocked, SIGINT);
646 sigaddset (&blocked, SIGPIPE);
647 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1218 sigset_t blocked;
1220 sigemptyset (&blocked);
1221 sigaddset (&blocked, SIGINT);
1222 sigprocmask (SIG_BLOCK, &blocked, &procmask);
634 sigset_t blocked; local
1213 sigset_t blocked; local
  /src/external/bsd/ipf/dist/tools/
ipf_y.y 348 block: blocked
349 | blocked blockreturn
352 blocked: label
  /src/usr.sbin/sysinst/
defs.h 440 * If device is blocked (e.g. part of a raid)
501 int blocked; /* Device is busy and cannot be changed */ member in struct:pm_devs
partman.c 89 int blocked; member in struct:raid_desc
101 int blocked; member in struct:vnd_desc
117 int blocked; member in struct:cgd_desc
150 int blocked; member in struct:lv_t
167 int blocked; member in struct:lvms_t
682 .blocked = 0,
698 if (dev_ptr->blocked)
918 raids[i].blocked = 1;
1126 .blocked = 0,
1144 if (dev_ptr->blocked)
    [all...]
  /src/external/bsd/nsd/dist/
options.h 434 uint8_t blocked; member in struct:acl_options
606 /* check acl list for blocks on address, return 0 if none, -1 if blocked. */
  /src/external/gpl3/gdb/dist/gdb/
linux-nat.c 100 Note that SIGCHLD should be blocked between waitpid and sigsuspend
102 when it's blocked, the signal becomes pending and sigsuspend
135 While processing an event, we may end up momentarily blocked in
149 blocked. A disadvantage is that it is not a real-time signal, so it can only
152 Two other signals that can't be blocked are SIGCONT and SIGKILL. But we can't
165 blocked.
766 /* Make sure SIGCHLD is blocked. */
2243 /* Make sure SIGCHLD is blocked for sigsuspend avoiding a race below. */
2286 get invoked despite our caller had them intentionally blocked by
2434 sigset_t pending, blocked, ignored
2428 sigset_t pending, blocked, ignored; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
linux-nat.c 100 Note that SIGCHLD should be blocked between waitpid and sigsuspend
102 when it's blocked, the signal becomes pending and sigsuspend
135 While processing an event, we may end up momentarily blocked in
149 blocked. A disadvantage is that it is not a real-time signal, so it can only
152 Two other signals that can't be blocked are SIGCONT and SIGKILL. But we can't
165 blocked.
766 /* Make sure SIGCHLD is blocked. */
2243 /* Make sure SIGCHLD is blocked for sigsuspend avoiding a race below. */
2286 get invoked despite our caller had them intentionally blocked by
2434 sigset_t pending, blocked, ignored
2428 sigset_t pending, blocked, ignored; local
    [all...]
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
domctl.h 87 /* Currently blocked pending an event. */
253 uint8_t blocked; /* blocked waiting for an event? */ member in struct:xen_domctl_getvcpuinfo
  /src/sys/dev/pci/
if_wm.c 4825 device_printf(dev, "PHY is blocked\n");
5706 device_printf(sc->sc_dev, "XXX reset is blocked!!!\n");
16059 bool blocked = false; local
16079 blocked = true;
16083 blocked = false;
16084 } while (blocked && (i++ < 30));
16085 return blocked;
16186 * inaccessible and resetting the PHY is not blocked, toggle the
16224 device_printf(sc->sc_dev, "XXX reset is blocked(2)\n");
16257 device_printf(sc->sc_dev, "XXX reset is blocked(3)\n")
    [all...]

Completed in 78 milliseconds