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

  /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
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
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/external/bsd/ipf/dist/tools/
ipnat_y.y 182 | redir eol
341 redir: rdrit ifnames addr dport tlate dip nport setproto rdroptions label
  /src/bin/sh/
eval.c 74 #include "redir.h"
600 union node *redir; local
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...]
parser.c 58 #include "redir.h" /* defines max_user_fd */
344 union node *redir, **rpp; local
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...]
  /src/libexec/httpd/
bozohttpd.c 1467 char dir[MAXPATHLEN], redir[MAXPATHLEN], redirpath[MAXPATHLEN + 1], local
1474 * use it as the directory to look for the redir file.
1501 if ((size_t)snprintf(redir, sizeof(redir), "%s/%s", path,
1502 REDIRECT_FILE) >= sizeof(redir)) {
1506 if (lstat(redir, &sb) == 0) {
1511 if ((size_t)snprintf(redir, sizeof(redir), "%s/%s", path,
1512 ABSREDIRECT_FILE) >= sizeof(redir)) {
1517 if (lstat(redir, &sb) < 0 || !S_ISLNK(sb.st_mode)
    [all...]

Completed in 27 milliseconds