HomeSort by: relevance | last modified time | path
    Searched refs:iop (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/sys/arch/mac68k/mac68k/
iop.c 1 /* $NetBSD: iop.c,v 1.12 2023/12/20 00:40:43 thorpej Exp $ */
35 __KERNEL_RCSID(0, "$NetBSD: iop.c,v 1.12 2023/12/20 00:40:43 thorpej Exp $");
51 static IOP mac68k_iops[2];
55 static void iop_message_sent(IOP *, int);
56 static void receive_iop_message(IOP *, int);
57 static void default_listener(IOP *, struct iop_msg *);
90 default_listener(IOP *iop, struct iop_msg *msg)
99 IOP *iop; local
246 IOP *iop; local
372 IOP *iop; local
413 IOP *iop; local
442 IOP *iop; local
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
modf.c 25 /* Set iop to the integral part of op and fop to its fractional part */
27 mpfr_modf (mpfr_ptr iop, mpfr_ptr fop, mpfr_srcptr op, mpfr_rnd_t rnd_mode)
36 ("iop[%Pd]=%.*Rg fop[%Pd]=%.*Rg",
37 mpfr_get_prec (iop), mpfr_log_prec, iop,
40 MPFR_ASSERTN (iop != fop);
46 MPFR_SET_NAN (iop);
50 MPFR_SET_SAME_SIGN (iop, op);
54 MPFR_SET_INF (iop);
61 MPFR_SET_ZERO (iop);
    [all...]
  /src/lib/libc/compat/stdio/
compat_fsetpos.c 62 fsetpos(FILE * __restrict iop, const off_t * __restrict pos)
64 _DIAGASSERT(iop != NULL);
67 return fseeko(iop, *pos, SEEK_SET) == (off_t)-1;
  /src/sys/dev/i2o/
ld_iop.c 120 struct iop_softc *iop = device_private(parent); local
144 iop_initiator_register(iop, &sc->sc_ii);
151 iop_initiator_register(iop, &sc->sc_eventii);
153 rv = iop_util_eventreg(iop, &sc->sc_eventii,
165 * Start out with one queued command. The `iop' driver will adjust
178 iop_print_ident(iop, ia->ia_tid);
184 rv = iop_util_claim(iop, &sc->sc_ii, 0,
191 rv = iop_field_get_all(iop, ia->ia_tid, I2O_PARAM_RBS_DEVICE_INFO,
238 rv = iop_field_get_all(iop, ia->ia_tid, I2O_PARAM_RBS_CACHE_CONTROL,
256 iop_field_set(iop, ia->ia_tid, I2O_PARAM_RBS_OPERATION
281 struct iop_softc *iop; local
317 struct iop_softc *iop; local
347 struct iop_softc *iop; local
407 struct iop_softc *iop; local
445 struct iop_softc *iop; local
490 struct iop_softc *iop; local
527 struct iop_softc *iop; local
554 struct iop_softc *iop = device_private(device_parent(dv)); local
    [all...]
iopsp.c 86 struct iop_softc *iop; local
94 iop = device_private(parent);
99 if (iop_field_get_all(iop, ia->ia_tid, I2O_PARAM_HBA_CTLR_INFO, &param,
115 struct iop_softc *iop; local
130 iop = device_private(parent);
139 iop_initiator_register(iop, &sc->sc_ii);
141 rv = iop_field_get_all(iop, ia->ia_tid, I2O_PARAM_HBA_CTLR_INFO,
153 iop_print_ident(iop, ia->ia_tid);
156 rv = iop_field_get_all(iop, ia->ia_tid, I2O_PARAM_HBA_SCSI_CTLR_INFO,
206 iop_initiator_unregister(iop, &sc->sc_ii)
217 struct iop_softc *iop; local
350 struct iop_softc *iop; local
389 struct iop_softc *iop; local
507 struct iop_softc *iop; local
536 struct iop_softc *iop; local
642 struct iop_softc *iop; local
    [all...]
dpti.c 163 struct iop_softc *iop; local
166 iop = device_private(parent);
171 if (le16toh(iop->sc_status.orgid) != I2O_ORG_DPT)
180 struct iop_softc *iop; local
191 iop = device_private(parent);
201 rv = iop_field_get_all(iop, I2O_TID_IOP,
224 struct iop_softc *iop; local
230 iop = device_private(device_parent(sc->sc_dev));
245 mutex_enter(&iop->sc_conflock);
301 rv = iop_reconfigure(iop, 0)
316 struct iop_softc *iop; local
335 struct iop_softc *iop; local
450 struct iop_softc *iop; local
    [all...]
iop.c 1 /* $NetBSD: iop.c,v 1.93 2023/09/07 20:07:03 ad Exp $ */
37 __KERNEL_RCSID(0, "$NetBSD: iop.c,v 1.93 2023/09/07 20:07:03 ad Exp $");
39 #include "iop.h"
281 * Initialise the IOP and our interface.
304 /* Disable interrupts at the IOP. */
415 /* Initialise the IOP's outbound FIFO. */
431 /* Ensure interrupts are enabled at the IOP. */
472 struct iop_softc *sc, *iop; local
495 if ((iop = device_lookup_private(&iop_cd, i)) == NULL)
497 if ((iop->sc_flags & IOP_HAVESTATUS) == 0
    [all...]
  /src/external/bsd/cron/dist/
popen.c 66 FILE *iop; local
155 iop = fdopen(pdes[0], type);
158 iop = fdopen(pdes[1], type);
161 pids[fileno(iop)] = pid;
163 return (iop);
167 cron_finalize(FILE *iop, int sig) {
177 if (pids == 0 || pids[fdes = fileno(iop)] == 0)
184 (void)fclose(iop);
195 (void)fclose(iop);
206 cron_pclose(FILE *iop) {
    [all...]
  /src/libexec/ftpd/
popen.c 110 FILE * volatile iop; local
116 iop = NULL;
203 iop = fdopen(pdes[0], ptype);
206 iop = fdopen(pdes[1], ptype);
209 pids[fileno(iop)] = pid;
214 return (iop);
218 ftpd_pclose(FILE *iop)
228 if (pids == 0 || pids[fdes = fileno(iop)] == 0)
230 (void)fclose(iop);
  /src/bin/ksh/
tree.c 19 static void pioact ARGS((struct shf *f, int indent, struct ioword *iop));
197 struct ioword *iop = *ioact++; local
200 if ((iop->flag & IOTYPE) == IOHERE && iop->heredoc) {
202 shf_puts(iop->heredoc, shf);
204 evalstr(iop->delim, 0));
218 pioact(shf, indent, iop)
221 struct ioword *iop;
223 int flag = iop->flag;
229 : (type == IODUP && (iop->unit == !(flag & IORDUP)))
738 struct ioword **iop; local
    [all...]
lex.c 61 static void readhere ARGS((struct ioword *iop));
632 struct ioword *iop = local
633 (struct ioword *) alloc(sizeof(*iop), ATEMP);
636 iop->unit = dp[1] - '0';
638 iop->unit = c == '>'; /* 0 for <, 1 for > */
643 iop->flag = c == c2 ?
645 if (iop->flag == IOHERE) {
647 iop->flag |= IOSKIP;
653 iop->flag = IODUP | (c == '<' ? IORDUP : 0);
655 iop->flag = c == '>' ? IOWRITE : IOREAD
    [all...]
syn.c 165 struct ioword *iop; local
171 iop = yylval.iop;
172 ishere = (iop->flag&IOTYPE) == IOHERE;
175 iop->delim = yylval.cp;
177 iop->flag |= IOEVAL;
180 *herep++ = iop;
182 iop->name = yylval.cp;
183 return iop;
214 struct ioword *iop, **iops local
    [all...]
exec.c 1114 iosetup(iop, tp)
1115 struct ioword *iop;
1119 char *cp = iop->name;
1120 int iotype = iop->flag & IOTYPE;
1129 iotmp = *iop;
1152 if (Flag(FNOCLOBBER) && !(iop->flag & IOCLOB)
1164 u = herein(iop->heredoc, iop->flag & IOEVAL);
1177 X_OK | ((iop->flag & IORDUP) ? R_OK : W_OK),
1184 if (u == iop->unit
    [all...]
lex.h 74 struct ioword *iop; member in union:__anon16
  /src/lib/libc/gen/
popen.c 154 FILE *iop; local
158 iop = fdopen(pdes[0], type);
164 iop = fdopen(pdes[1], type);
172 cur->fp = iop;
267 pclose(FILE *iop)
273 _DIAGASSERT(iop != NULL);
279 if (cur->fp == iop)
287 (void)fclose(iop);
  /src/sys/arch/mac68k/include/
iopreg.h 108 u_char alive; /* IOP alive flag */
115 typedef void (*iop_msg_handler)(struct _s_IOP *iop, struct iop_msg *);
130 #define IOP_MSGSTAT_SENDING 2 /* Message on IOP */
137 IOPHW *iop; member in struct:_s_IOP
144 } IOP;
178 * The structure of a SWIM packet to/from the IOP is:
195 * The structure of an ADB packet to/from the IOP is:
  /src/usr.sbin/autofs/
popen.c 152 auto_pclose(FILE *iop)
162 if (cur->outfp == iop)
  /src/external/bsd/blocklist/port/
popenve.c 238 pcloseve(FILE *iop)
250 if (cur->fp == iop)
260 (void)fclose(iop);
  /src/external/bsd/mdocml/dist/
term_ascii.c 163 ascii_setwidth(struct termp *p, int iop, int width)
168 if (iop > 0)
170 else if (iop == 0)
term.c 872 int iop, width; local
874 iop = 0;
879 iop = 1;
883 iop = -1;
892 iop = 0;
894 (*p->setwidth)(p, iop, width);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
ioloop.c 133 io_t **iop; local
136 for (iop = &ios; *iop != NULL && *iop != io; iop = &((*iop)->next))
138 if (*iop == NULL) {
139 *iop = io;
326 io_t *io, **iop; local
404 iop = &ios
1009 io_t **iop; local
    [all...]
  /src/sys/arch/x86/acpi/
acpi_machdep.c 202 ACPI_MADT_INTERRUPT_OVERRIDE *iop; local
209 iop = (void *)hdrp;
211 if (iop->SourceIrq == ovrp->irq) {
212 ovrp->pin = iop->GlobalIrq;
213 ovrp->flags = iop->IntiFlags;
  /src/sys/arch/ews4800mips/include/
sbd.h 48 uint32_t iop :4; member in struct:sbdinfo
  /src/external/gpl2/rcs/dist/src/
rcslex.c 1444 aputs(s, iop)
1446 FILE *iop;
1447 /* Function: Put string s on file iop, abort on error.
1451 if (fputs(s, iop) < 0)
1454 awrite(s, strlen(s), iop);
1492 aprintf(FILE *iop, char const *fmt, ...)
1495 aprintf(iop, fmt, va_alist)
1496 FILE *iop;
1506 fvfprintf(iop, fmt, ap);
  /src/sys/arch/sparc/sparc/
iommu.c 453 struct iommureg *iop = sc->sc_reg;
455 printf("iommu: afsr 0x%x, afar 0x%x\n", iop->io_afsr, iop->io_afar);
456 printf("iommu: mfsr 0x%x, mfar 0x%x\n", iop->io_mfsr, iop->io_mfar);

Completed in 31 milliseconds

1 2