| /src/sys/dev/pci/ |
| ixpide.c | 179 pcireg_t udma, mdma_timing, pio, pio_timing; local 184 pio = pci_conf_read(sc->sc_pc, sc->sc_tag, IXP_PIO_CTL); 208 * Set PIO mode and timings 209 * Linux driver avoids PIO mode 1, let's do it too. 214 IXP_SET_MODE(pio, chp->ch_channel, drive, drvp->PIO_mode); 220 pci_conf_write(sc->sc_pc, sc->sc_tag, IXP_PIO_CTL, pio); 223 "pio_mode = %08x, pio_timing = %08x\n", udma, mdma_timing, pio,
|
| /src/sys/arch/luna68k/dev/ |
| lcd.c | 74 struct pio { struct 284 struct pio *p1 = (struct pio *)OBIO_PIO1_BASE; 305 struct pio *p1 = (struct pio *)OBIO_PIO1_BASE; 322 struct pio *p1 = (struct pio *)OBIO_PIO1_BASE;
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| vdev_cache.c | 230 zio_t *pio; local 251 while ((pio = zio_walk_parents(fio, &zl)) != NULL) 252 vdev_cache_hit(vc, ve, pio);
|
| dsl_destroy.c | 139 zio_t *pio; member in struct:process_old_arg 163 dsl_free_sync(poa->pio, dp, tx->tx_txg, bp); 183 poa.pio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED); 186 VERIFY0(zio_wait(poa.pio));
|
| vdev_mirror.c | 297 zio_t *pio; local 301 while ((pio = zio_walk_parents(zio, &zl)) != NULL) { 302 mutex_enter(&pio->io_lock); 303 ASSERT3U(zio->io_size, >=, pio->io_size); 304 bcopy(zio->io_data, pio->io_data, pio->io_size); 305 mutex_exit(&pio->io_lock);
|
| vdev_queue.c | 505 zio_t *pio; local 507 while ((pio = zio_walk_parents(aio, &zl)) != NULL) { 508 bcopy((char *)aio->io_data + (pio->io_offset - 509 aio->io_offset), pio->io_data, pio->io_size);
|
| dbuf.c | 2476 zio_t *pio = zio_root(dmu_objset_spa(dn->dn_objset), NULL, NULL, local 2489 dpa->dpa_zio = pio; 2514 * We use pio here instead of dpa_zio since it's possible that 2517 zio_nowait(pio);
|
| vdev.c | 1074 zio_t *pio; local 1095 while ((pio = zio_walk_parents(zio, &zl)) != NULL) 1096 if (!vdev_accessible(vd, pio)) 1097 pio->io_error = SET_ERROR(ENXIO); 1115 zio_t *pio; local 1132 if ((pio = vd->vdev_probe_zio) == NULL) { 1161 vd->vdev_probe_zio = pio = zio_null(NULL, spa, vd, 1176 zio_add_child(zio, pio); 1186 zio_nowait(zio_read_phys(pio, vd, 1195 return (pio); [all...] |
| zio.c | 440 zio_walk_children(zio_t *pio, zio_link_t **zl) 442 list_t *cl = &pio->io_child_list; 448 ASSERT((*zl)->zl_parent == pio); 456 zio_t *pio = zio_walk_parents(cio, &zl); local 459 return (pio); 463 zio_add_child(zio_t *pio, zio_t *cio) 473 ASSERT(cio->io_child_type <= pio->io_child_type); 475 zl->zl_parent = pio; 479 mutex_enter(&pio->io_lock); 481 ASSERT(pio->io_state[ZIO_WAIT_DONE] == 0) 1845 zio_t *pio; local 2171 zio_t *pio = zio_unique_parent(zio); local 2402 zio_t *pio = zio_unique_parent(zio); local 2557 zio_t *pio; local 3466 zio_t *pio, *pio_next; local 3542 zio_t *pio = zio_unique_parent(zio); local 3603 zio_t *pio, *pio_next; local [all...] |
| arc.c | 4846 arc_read(zio_t *pio, spa_t *spa, const blkptr_t *bp, arc_done_func_t *done, 4918 if (pio != NULL) 4919 acb->acb_zio_dummy = zio_null(pio, 5164 rzio = zio_read_phys(pio, vd, addr, 5204 rzio = zio_read(pio, spa, bp, hdr->b_l1hdr.b_pdata, size, 5689 arc_write(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp, arc_buf_t *buf, 5738 zio = zio_write(pio, spa, txg, bp, buf->b_data, HDR_GET_LSIZE(hdr), zp, 6837 zio_t *pio = zio_unique_parent(zio); local 6839 ASSERT(!pio || pio->io_child_type == ZIO_CHILD_LOGICAL) 7025 zio_t *pio, *wzio; local [all...] |
| /src/sys/arch/luna68k/luna68k/ |
| machdep.c | 480 volatile uint8_t *pio = (void *)OBIO_PIO1_BASE; local 484 pio[3] = 0x94; 485 pio[2] = 0 << 4;
|
| /src/external/gpl3/gdb/dist/gdbserver/ |
| netbsd-low.cc | 569 struct ptrace_io_desc pio; local 571 pio.piod_op = PIOD_READ_AUXV; 572 pio.piod_offs = offs; 573 pio.piod_addr = addr; 574 pio.piod_len = len; 576 if (ptrace (PT_IO, pid, &pio, 0) == -1) 579 return pio.piod_len;
|
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| netbsd-low.cc | 566 struct ptrace_io_desc pio; local 568 pio.piod_op = PIOD_READ_AUXV; 569 pio.piod_offs = offs; 570 pio.piod_addr = addr; 571 pio.piod_len = len; 573 if (ptrace (PT_IO, pid, &pio, 0) == -1) 576 return pio.piod_len;
|
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| route.c | 635 // If this is a stub router, and we are advertising our own prefix, and the PIO it is advertising is greater than 761 // If this is a new icmp_message received now and contains PIO. 774 INFO("router has usable PIO - ifname: " PUB_S_SRP ", router src: " PRI_SEGMENTED_IPv6_ADDR_SRP 788 INFO("router has unusable PIO - ifname: " PUB_S_SRP ", router src: " PRI_SEGMENTED_IPv6_ADDR_SRP 1720 prefix_information_t *pio = &option->option.prefix_information; local 1721 if (pio->length != 64) { 1722 SEGMENTED_IPv6_ADDR_GEN_SRP(&pio->prefix, prefix_buf); 1724 SEGMENTED_IPv6_ADDR_PARAM_SRP(&pio->prefix, prefix_buf), preflen); 1727 if (!in6prefix_compare(prefix, &pio->prefix, 8)) { 1728 SEGMENTED_IPv6_ADDR_GEN_SRP(&pio->prefix, prefix_buf) [all...] |