/src/games/trek/ |
lose.c | 74 lose(int why) 78 printf("\n%s\n", Losemsg[why - 1]); 79 switch (why) {
|
/src/sys/dev/sbus/ |
qe.c | 693 qe_eint(struct qe_softc *sc, uint32_t why) 702 if (why & QE_CR_STAT_EDEFER) { 708 if (why & QE_CR_STAT_CLOSS) { 714 if (why & QE_CR_STAT_ERETRIES) { 722 if (why & QE_CR_STAT_LCOLL) { 729 if (why & QE_CR_STAT_FUFLOW) { 736 if (why & QE_CR_STAT_JERROR) { 741 if (why & QE_CR_STAT_BERROR) { 746 if (why & QE_CR_STAT_TCCOFLOW) { 752 if (why & QE_CR_STAT_TXDERROR) [all...] |
be.c | 719 beqint(struct be_softc *sc, uint32_t why) 724 if (why & BE_CR_STAT_TXIRQ) 726 if (why & BE_CR_STAT_RXIRQ) 729 if (why & BE_CR_STAT_BERROR) { 735 if (why & BE_CR_STAT_TXDERR) { 741 if (why & (BE_CR_STAT_TXLERR | BE_CR_STAT_TXPERR | BE_CR_STAT_TXSERR)) { 745 if (why & BE_CR_STAT_TXLERR) 747 if (why & BE_CR_STAT_TXPERR) 749 if (why & BE_CR_STAT_TXSERR) 754 if (why & BE_CR_STAT_RXDROP) [all...] |
/src/sys/dev/hpc/ |
pwctl.c | 180 int why =(int)msg; local in function:pwctl_hardpower 183 why == PWR_RESUME? "resume" 184 : why == PWR_SUSPEND? "suspend" : "standby", 187 switch (why) {
|
/src/sys/dev/mca/ |
if_elmc_mca.c | 344 elmc_mca_attn(struct ie_softc *sc, int why) 349 switch (why) { 369 elmc_mca_hwreset(struct ie_softc *sc, int why) 380 elmc_mca_attn(sc, why); 387 elmc_mca_intrhook(struct ie_softc *sc, int why) 389 switch (why) {
|
/src/sys/arch/x86/x86/ |
x86_tlb.c | 182 pmap_tlbstat_count(struct pmap *pm, vaddr_t va, tlbwhy_t why) 192 atomic_inc_64(&tlbstat_kernel[why].ev_count); 204 atomic_inc_64(&tlbstat_local[why].ev_count); 207 atomic_inc_64(&tlbstat_remote[why].ev_count); 240 pmap_tlb_shootdown(struct pmap *pm, vaddr_t va, pt_entry_t pte, tlbwhy_t why) 291 pmap_tlbstat_count(pm, va, why);
|
/src/sys/arch/hpcmips/vr/ |
cmu.c | 133 int why = (int)msg; local in function:vrcmu_hardpower 135 switch (why) {
|
vrc4172pwm.c | 388 int why =(int)msg; local in function:vrc4172pwm_event 392 DPRINTF(("vrc4172pwm:POWERCONTROL_LCDLIGHT: %d\n", why)); 393 vrc4172pwm_light(sc, why); 430 int why =(int)msg; local in function:vrc4172pwm_pmevent 435 switch (why) {
|
vrled.c | 361 int why =*(int *)msg; local in function:vrled_event 369 switch (why) {
|
/src/usr.bin/make/unit-tests/ |
varcmd.mk | 12 # be rewritten to make it clear why there is a difference and why this is
|
cmdline-redirect-stdin.mk | 24 # read a single line from standard input". This is the reason why the shell
|
opt-debug-var.mk | 11 # TODO: Explain why the empty assignment "Global: SUBST = " is needed.
|
/src/sys/arch/arm/xscale/ |
pxa2x0_ohci.c | 211 pxaohci_power(int why, void *arg) 218 switch (why) { 222 ohci_power(why, &sc->sc); 231 ohci_power(why, &sc->sc);
|
pxa2x0_udc.c | 116 pxaudc_power(int why, void *arg) 120 switch (why) {
|
/src/sys/kern/ |
kern_hook.c | 427 dopowerhooks(int why) 432 why_name = why < __arraycount(pwr_names) ? pwr_names[why] : "???"; 434 if (why == PWR_RESUME || why == PWR_SOFTRESUME) { 441 (*dp->sfd_fn)(why, dp->sfd_arg); 448 (*dp->sfd_fn)(why, dp->sfd_arg);
|
/src/common/dist/zlib/examples/ |
fitblk.c | 62 local void quit(char *why) 64 fprintf(stderr, "fitblk abort: %s\n", why);
|
/src/regress/sys/fs/lfs/ckckp/ |
check-all | 337 %why = (); 390 $why{$iaddr} .= " $i"; 423 $why{$b} =~ s/^ *//o; 424 print " $b ($why{$b})";
|
/src/sys/fs/efs/ |
efs_subr.c | 83 * Returns 0 if valid, else invalid. If invalid, 'why' is set to an 87 efs_sb_validate(struct efs_sb *esb, const char **why) 91 *why = NULL; 95 *why = "sb_magic invalid"; 102 *why = "sb_checksum invalid"; 107 *why = "sb_size > EFS_SIZE_MAX"; 112 *why = "sb_firstcg <= EFS_BB_BITMAP"; 121 *why = "something bad happened";
|
efs_vfsops.c | 71 const char *why; local in function:efs_mount_common 91 if (efs_sb_validate(&emp->em_sb, &why)) { 92 printf("efs: invalid superblock: %s\n", why);
|
/src/sys/dev/podulebus/ |
if_ei.c | 206 ei_hwreset(struct ie_softc *sc_ie, int why) 218 ei_intrhook(struct ie_softc *sc_ie, int why) 222 switch (why) { 232 ei_attn(struct ie_softc *sc_ie, int why)
|
/src/lib/libc/rpc/ |
svc.c | 558 svcerr_auth(SVCXPRT *xprt, enum auth_stat why) 567 rply.rjcted_rply.rj_why = why; 702 enum auth_stat why; local in function:svc_getreq_common 710 if ((why = _authenticate(&r, &msg)) != AUTH_OK) { 711 svcerr_auth(xprt, why);
|
/src/sys/dev/isa/ |
if_ai.c | 108 ai_reset(struct ie_softc *sc, int why) 112 switch (why) { 129 ai_atten(struct ie_softc *sc, int why)
|
/src/tests/usr.sbin/certctl/ |
t_certctl.sh | 69 local why 71 why=${1:-dry run} 74 atf_fail "certs/ should be empty after $why"
|
/src/sys/arch/hpcmips/dev/ |
mq200.c | 268 mq200_power(int why, void *arg) 272 switch (why) { 292 int why = (int)msg; local in function:mq200_hardpower 294 switch (why) {
|
/src/games/tetris/ |
screen.c | 262 stop(const char *why) 267 (void) fprintf(stderr, "aborting: %s\n", why);
|