| /src/sys/arch/mac68k/mac68k/ |
| iop.c | 82 int alive; local 84 alive = iop_read1(ioph, IOP_ADDR_ALIVE); 86 return alive; 174 printf("ISM IOP base: 0x%x, alive %x\n", (unsigned) ioph,
|
| /src/sys/dev/isa/ |
| addcom_isa.c | 242 int alive = sc->sc_alive; local 245 bits = bus_space_read_1(iot, sc->sc_statusioh, 0) & alive; 262 bits = bus_space_read_1(iot, sc->sc_statusioh, 0) & alive;
|
| ast.c | 197 int alive = sc->sc_alive; local 200 bits = ~bus_space_read_1(iot, sc->sc_slaveioh[3], com_scratch) & alive; 214 com_scratch) & alive;
|
| boca.c | 200 int alive = sc->sc_alive; local 203 bits = bus_space_read_1(iot, sc->sc_slaveioh[0], com_scratch) & alive; 225 com_scratch) & alive; 236 int alive = sc->sc_alive; local 242 if (alive & (1 << (i)))
|
| ioat66.c | 197 int alive = sc->sc_alive; local 200 bits = bus_space_read_1(iot, sc->sc_intmasq, 0) & alive; 215 bits = bus_space_read_1(iot, sc->sc_intmasq, 0) & alive;
|
| rtfps.c | 207 int alive = sc->sc_alive; local 212 if (alive & (1 << (n))) \
|
| tcom.c | 238 int alive = sc->sc_alive; local 241 bits = ~bus_space_read_1(iot, sc->sc_statusioh, 0) & alive; 258 bits = ~bus_space_read_1(iot, sc->sc_statusioh, 0) & alive;
|
| /src/games/sail/ |
| globals.c | 582 int alive; variable
|
| /src/sys/arch/vax/vax/ |
| gencons.c | 61 short alive; member in struct:gc_softc 114 gc_softc[unit].alive = 1; 147 gc_softc[minor(dev)].alive = 0; 225 if (sc->alive == 0) 254 if (sc->alive == 0)
|
| /src/external/mpl/bind/dist/bin/tests/system/doth/ |
| stress_http_quota.py | 153 def alive(self): member in class:SubDIG 182 def alive(self): member in class:MultiDIG 183 return reduce(lambda a, b: (a and b), map(lambda p: (p.alive()), self.digs)) 188 if not p.alive(): 225 assert subdig.alive(), "The single DIG instance is expected to be alive" 226 assert multidig.alive(), ( 228 f"be alive, but {multidig.completed()} of them have completed"
|
| /src/lib/libkvm/ |
| kvm_private.h | 51 char alive; /* live kernel? */ member in struct:__kvm 99 #define KVM_ALIVE_FILES 1 /* alive, working from open kmem/drum */ 100 #define KVM_ALIVE_SYSCTL 2 /* alive, sysctl-type calls only */ 102 #define ISALIVE(kd) ((kd)->alive != KVM_ALIVE_DEAD) 103 #define ISKMEM(kd) ((kd)->alive == KVM_ALIVE_FILES) 104 #define ISSYSCTL(kd) ((kd)->alive == KVM_ALIVE_SYSCTL || ISKMEM(kd))
|
| /src/sys/arch/hp300/stand/common/ |
| itevar.h | 57 int alive; member in struct:ite_data
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_thread_registry_test.cc | 37 uptr total, running, alive; local 38 registry->GetNumberOfThreads(&total, &running, &alive); 41 EXPECT_EQ(exp_alive, alive);
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| LiveVariables.cpp | 72 bool alive = false; local 74 alive |= liveBindings.contains(BD); 75 return alive;
|
| /src/sys/arch/mac68k/include/ |
| iopreg.h | 108 u_char alive; /* IOP alive flag */ member in struct:__anon1592
|
| /src/sys/dev/pci/voyager/ |
| vac.c | 566 uint8_t alive; local 582 /* Release the 8051 and give it time to post its alive marker. */ 586 alive = VAC_DP_R8(sc, VAC_DP_H_ALIVE); 587 sc->sc_8051_ok = (alive == VAC_DP_ALIVE_MAGIC); 588 aprint_verbose_dev(sc->sc_dev, "8051 feeder %s (alive=0x%02x)\n", 589 sc->sc_8051_ok ? "loaded" : "not responding", alive);
|
| /src/sys/dev/ieee1394/ |
| sbp.c | 976 int alive; local 978 alive = SBP_FWDEV_ALIVE(fwdev); 981 if (!alive) 982 printf("not alive\n"); 986 if (!alive) 998 int alive; local 1000 alive = SBP_FWDEV_ALIVE(fwdev); 1003 if (!alive) 1004 printf("not alive\n"); 1006 if (!alive) [all...] |