HomeSort by: relevance | last modified time | path
    Searched refs:ncmd (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/compat/freebsd/
freebsd_ioctl.c 63 u_long ocmd, ncmd; local in function:freebsd_to_oss
66 ncmd = ocmd &~ FREEBSD_IOC_DIRMASK;
68 case FREEBSD_IOC_VOID: ncmd |= OSS_IOC_VOID; break;
69 case FREEBSD_IOC_OUT: ncmd |= OSS_IOC_OUT; break;
70 case FREEBSD_IOC_IN: ncmd |= OSS_IOC_IN; break;
71 case FREEBSD_IOC_INOUT: ncmd |= OSS_IOC_INOUT; break;
74 SCARG(rap, com) = ncmd;
85 u_long ocmd, ncmd; local in function:freebsd_to_netbsd_ifioctl
89 ncmd =SIOCALIFADDR;
92 ncmd =SIOCGLIFADDR
    [all...]
  /src/sys/compat/common/
rtsock_70.c 57 int ncmd; local in function:compat_70_rt_newaddrmsg1
64 ncmd = RTM_ONEWADDR;
67 ncmd = RTM_ODELADDR;
70 ncmd = RTM_OCHGADDR;
88 m = rt_msg1(ncmd, &info, &ifam, sizeof(ifam));
if43_20.c 70 if43_cvtcmd_20(u_long ncmd)
73 switch (ncmd) {
if_43.c 86 do_compat_cvtcmd(u_long *ncmd, u_long ocmd)
89 *ncmd = compat_cvtcmd(ocmd);
96 u_long ncmd; local in function:compat_cvtcmd
150 ncmd = ((cmd) & ~(IOCPARM_MASK << IOCPARM_SHIFT)) |
152 switch (ncmd) {
209 return ncmd;
213 MODULE_HOOK_CALL(if43_cvtcmd_20_hook, (ncmd), enosys(),
216 return ncmd;
  /src/sys/dev/ic/
rtsx.c 1184 rtsx_hostcmd_send(struct rtsx_softc *sc, int ncmd)
1195 ((ncmd * 4) & 0x00ffffff) | RTSX_START_CMD | RTSX_HW_AUTO_RSP);
1207 int ncmd, remain; local in function:rtsx_read_ppbuf
1219 ncmd = 0;
1221 rtsx_hostcmd(cmdbuf, &ncmd, RTSX_READ_REG_CMD, reg++,
1224 error = rtsx_hostcmd_send(sc, ncmd);
1236 ncmd = 0;
1238 rtsx_hostcmd(cmdbuf, &ncmd, RTSX_READ_REG_CMD, reg++,
1241 error = rtsx_hostcmd_send(sc, ncmd);
1259 int ncmd, remain local in function:rtsx_write_ppbuf
1304 int ncmd; local in function:rtsx_exec_short_xfer
1382 int ncmd, dma_dir, error, tmode; local in function:rtsx_xfer
1487 int ncmd; local in function:rtsx_exec_command
    [all...]
  /src/bin/sh/
eval.c 284 if (n->type != NCMD && traps_invalid)
374 case NCMD:
788 if (n->type == NCMD) {
912 cmd->ncmd.args ? cmd->ncmd.args->narg.text : ""));
916 line_number = cmd->ncmd.lineno;
921 for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
930 expredir(cmd->ncmd.redirect);
934 for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) {
992 for (rn = cmd->ncmd.redirect; rn; rn = rn->nfile.next
    [all...]
show.c 345 case NCMD:
347 if (n->ncmd.backgnd)
553 for (np = cmd->ncmd.args ; np ; np = np->narg.next) {
559 shredir(cmd->ncmd.redirect, fp, first);
568 shredir(cmd->ncmd.redirect, fp, 1);
parser.c 199 if (n2->type == NCMD || n2->type == NPIPE)
200 n2->ncmd.backgnd = 1;
705 n = stalloc(sizeof(struct ncmd));
706 n->type = NCMD;
707 n->ncmd.lineno = line - elided_nl;
708 n->ncmd.backgnd = 0;
709 n->ncmd.args = args;
710 n->ncmd.redirect = redir;
711 n->ncmd.lineno = startlinno;
jobs.c 1979 case NCMD:
1980 cmdlist(n->ncmd.args, 1);
1981 cmdlist(n->ncmd.redirect, 0);
1982 if (!top && n->ncmd.backgnd) {
  /src/sys/net/
rtsock_shared.c 1472 int ncmd; local in function:COMPATNAME
1497 ncmd = RTM_XNEWADDR;
1500 ncmd = RTM_XDELADDR;
1503 ncmd = RTM_XCHGADDR;
1506 ncmd = RTM_XNEWADDR;
1509 ncmd = RTM_XDELADDR;
1512 ncmd = RTM_XCHGADDR;
1518 (ncmd, ifa), __nothing);
1533 m = COMPATNAME(rt_msg1)(ncmd, &info, &ifam, sizeof(ifam));

Completed in 20 milliseconds