/src/sys/arch/x86/include/ |
mpconfig.h | 66 uint32_t redir; member in struct:mp_intr_map
|
/src/bin/ksh/ |
syn.c | 168 if (tpeek(cf) != REDIR) 233 case REDIR: 242 case REDIR: 676 /* Lexical tokens (0[EOF], LWORD and REDIR handled specially) */ 710 char redir[6]; /* 2<<- is the longest redirection, I think */ local in function:syntaxerr 736 case REDIR: 737 s = snptreef(redir, sizeof(redir), "%R", yylval.iop); 748 redir[0] = c; 749 redir[1] = '\0' [all...] |
/src/sys/arch/x86/acpi/ |
acpi_machdep.c | 254 int redir, mpflags; local in function:acpi_md_intr_establish 261 redir = IOAPIC_REDLO_LEVEL | IOAPIC_REDLO_ACTLO; 286 redir &= ~IOAPIC_REDLO_ACTLO; 293 redir &= ~IOAPIC_REDLO_LEVEL; 337 mip->redir &= ~(IOAPIC_REDLO_LEVEL | 339 mip->redir |= redir; 343 tmpmap.redir = redir;
|
/src/bin/sh/ |
parser.c | 58 #include "redir.h" /* defines max_user_fd */ 344 union node *redir, **rpp; local in function:command 353 redir = NULL; 355 rpp = &redir; 567 if (!redir) 579 n1 = simplecmd(rpp, redir); 594 if (redir) { 601 n1->nredir.redirect = redir; 621 simplecmd(union node **rpp, union node *redir) 632 CTRACE(DBG_PARSE, ("simple command with%s redir already @%d\n" [all...] |
eval.c | 74 #include "redir.h" 600 union node *redir; local in function:expredir 602 for (redir = n ; redir ; redir = redir->nfile.next) { 606 switch (redir->type) { 612 expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR); 613 redir->nfile.expfname = fn.list->text; 617 if (redir->ndup.vname) [all...] |
/src/libexec/httpd/ |
bozohttpd.c | 1460 char dir[MAXPATHLEN], redir[MAXPATHLEN], redirpath[MAXPATHLEN + 1], local in function:check_bzredirect 1467 * use it as the directory to look for the redir file. 1494 if ((size_t)snprintf(redir, sizeof(redir), "%s/%s", path, 1495 REDIRECT_FILE) >= sizeof(redir)) { 1499 if (lstat(redir, &sb) == 0) { 1504 if ((size_t)snprintf(redir, sizeof(redir), "%s/%s", path, 1505 ABSREDIRECT_FILE) >= sizeof(redir)) { 1510 if (lstat(redir, &sb) < 0 || !S_ISLNK(sb.st_mode) [all...] |