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

  /src/sys/arch/atari/stand/loadkmap/
loadkmap.c 49 int ioc; local
51 ioc = set_sysmap ? ITEIOCSSKMAP : ITEIOCSKMAP;
55 if (ioctl(0, ioc, buf) == 0) {
  /src/usr.sbin/bootp/common/
getif.c 69 struct strioctl ioc; local
70 ioc.ic_cmd = SIOCGIFCONF;
71 ioc.ic_timout = 0;
72 ioc.ic_len = sizeof(ifreq);
73 ioc.ic_dp = (char *) ifreq;
74 m = ioctl(s, I_STR, (char *) &ioc);
75 ifconf.ifc_len = ioc.ic_len;
  /src/external/bsd/ipf/dist/
ip_fil.c 536 int left, ioc, num, offset; local
542 ioc = 0;
546 while ((left > 0) && (ioc < uio->uio_iovcnt)) {
547 io = uio->uio_iov + ioc;
554 ioc++;
562 ioc++;
  /src/external/bsd/iscsi/dist/src/initiator/
iscsi-initiator.c 318 uint32_t ioc; local
324 ioc = request / SGsize;
325 if ((ioc * SGsize) < request)
326 ioc++;
327 if ((iov = iscsi_malloc(ioc * sizeof(*iov))) == NULL) {
332 for (i = 0 ; i < ioc ; i++) {
334 if (i == (ioc - 1)) { /* last one */
341 if (sgblockop(tv.v[t].target, tv.v[t].lun, offset / tv.v[t].blocksize, (length / tv.v[t].blocksize), tv.v[t].blocksize, (uint8_t *) iov, ioc, writing) != 0) {
  /src/external/cddl/osnet/dist/lib/pyzfs/common/
ioctl.c 63 ioctl_with_cmdstr(int ioc, zfs_cmd_t *zc)
69 err = ioctl(zfsdevfd, ioc, zc);
201 ioctl_with_dstnv(int ioc, zfs_cmd_t *zc)
212 if (ioctl(zfsdevfd, ioc, zc) == 0) {
232 int ioc; local
247 ioc = ZFS_IOC_SNAPSHOT_LIST_NEXT;
249 ioc = ZFS_IOC_DATASET_LIST_NEXT;
251 nvl = ioctl_with_dstnv(ioc, &zc);
  /src/sbin/ifconfig/
lagg.c 399 enum lagg_ioctl ioc; local
421 ioc = LAGGIOC_NOCMD;
425 ioc = LAGGIOC_ADDPORT;
427 ioc = LAGGIOC_DELPORT;
432 ioc = LAGGIOC_SETPORTPRI;
436 if (ioc != LAGGIOC_NOCMD) {
437 req->lrq_ioctl = ioc;
440 warn("cmd=%d", ioc);
  /src/external/bsd/pcc/dist/pcc/f77/fcom/
io.c 72 #define V(z) ioc[z].iocval
81 } ioc[ ] = variable in typeref:struct:ioclist
108 #define NIOS (sizeof(ioc)/sizeof(struct ioclist) - 1)
340 if(toklen==(int)strlen(ioc[i].iocname) && eqn(toklen, token, ioc[i].iocname)) {
341 if(ioc[i].iotype & mask)
348 err1("invalid control %s for statement", ioc[found].iocname);
387 iocp = & ioc[n];
785 err1("impossible inquire parameter %s", ioc[i].iocname);
  /src/sys/dev/ic/
mfi.c 1098 * Allocate DMA memory mapping for MPI2 IOC Init descriptor,
1106 "unable to allocate thunderbolt IOC init memory");
3052 /* Get the physical address of the mpi2 ioc init command */
3060 aprint_error_dev(sc->sc_dev, "failed to send IOC init2 "
3505 struct mfi_ioc_packet *ioc = data; local
3513 sc = device_lookup_private(&mfi_cd, ioc->mfi_adapter_no);
3529 if (ioc->mfi_sge_count > MAX_IOCTL_SGE)
3536 memcpy(ccb->ccb_frame, ioc->mfi_frame.raw,
3542 (sizeof(union mfi_sgl) * ioc->mfi_sge_count) +
3543 ioc->mfi_sgl_off
    [all...]

Completed in 19 milliseconds