HomeSort by: relevance | last modified time | path
    Searched defs:vd (Results 1 - 25 of 140) sorted by relevancy

1 2 3 4 5 6

  /src/sys/dev/wscons/
wsemul_vt100_keys.c 88 struct vt100base_data *vd = &edp->bd; local
109 if (vd->flags & VTFL_APPLKEYPAD) {
185 if (vd->flags & VTFL_APPLCURSOR)
192 if (vd->flags & VTFL_APPLCURSOR)
199 if (vd->flags & VTFL_APPLCURSOR)
206 if (vd->flags & VTFL_APPLCURSOR)
wsemul_vt100_chars.c 83 struct vt100base_data *vd = &edp->bd; local
86 (*vd->emulops->mapchar)(vd->emulcookie, 128 + i,
89 (*vd->emulops->mapchar)(vd->emulcookie, decspcgr2uni[i],
92 (*vd->emulops->mapchar)(vd->emulcookie, dectech2uni[i],
146 struct vt100base_data *vd = &edp->bd; local
151 (*vd->emulops->mapchar)(vd->emulcookie, i, &edp->nrctab[i])
    [all...]
  /src/usr.sbin/mscdlabel/
iso9660.c 16 printinfo(struct iso_primary_descriptor *vd)
20 strlcpy(label, vd->volume_id, sizeof(label));
27 d = vd->creation_date;
41 struct iso_primary_descriptor *vd; local
44 vd = malloc(BLKSIZ);
47 res = pread(fd, vd, BLKSIZ, (start + i) * BLKSIZ);
53 if (memcmp(vd->id, ISO_STANDARD_ID, sizeof(vd->id)))
55 if (isonum_711(vd->type) == ISO_VD_PRIMARY) {
56 printinfo(vd);
    [all...]
  /src/sys/arch/evbppc/virtex/dev/
tft.c 215 struct vcons_data *vd = arg; local
216 struct tft_softc *sc = vd->cookie;
  /src/sys/dev/pci/
chipsfb.c 142 struct vcons_data *vd = v; local
143 struct chipsfb_softc *sc = vd->cookie;
144 struct chipsfb_pci_softc *scp = vd->cookie;
bochsfb.c 224 vcons_init(&sc->vd, sc, &sc->sc_defaultscreen_descr,
226 sc->vd.init_screen = bochsfb_identify_screen;
231 vcons_init_screen(&sc->vd, &sc->sc_console_screen, 1,
247 vcons_init_screen(&sc->vd, &sc->sc_console_screen, 1,
256 ws_aa.accesscookie = &sc->vd;
472 struct vcons_data *vd; local
477 vd = v;
478 sc = vd->cookie;
479 ms = vd->active;
527 ri = &sc->vd.active->scr_ri
551 struct vcons_data *vd; local
    [all...]
bochsfbvar.h 86 struct vcons_data vd; member in struct:bochsfb_softc
tdvfbvar.h 76 struct vcons_data vd; member in struct:tdvfb_softc
  /src/sys/dev/sun/
cgthreevar.h 52 struct vcons_data vd; member in struct:cgthree_softc
bwtwovar.h 100 struct vcons_data vd; member in struct:bwtwo_softc
bwtwo.c 284 vcons_init(&sc->vd, sc, &bwtwo_defaultscreen, &bwtwo_accessops);
285 sc->vd.init_screen = bwtwo_init_screen;
289 vcons_init_screen(&sc->vd, &bw2_console_screen, 1,
297 sc->vd.active = &bw2_console_screen;
325 aa.accesscookie = &sc->vd;
402 struct vcons_data *vd = v; local
403 struct bwtwo_softc *sc = vd->cookie;
405 struct vcons_screen *ms = sc->vd.active;
450 struct vcons_data *vd = v; local
451 struct bwtwo_softc *sc = vd->cookie
    [all...]
cgsixvar.h 78 struct vcons_data vd; member in struct:cgsix_softc
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
vdev_file.c 39 vdev_file_hold(vdev_t *vd)
41 ASSERT(vd->vdev_path != NULL);
45 vdev_file_rele(vdev_t *vd)
47 ASSERT(vd->vdev_path != NULL);
51 vdev_file_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize,
62 if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
63 vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
71 if (vd->vdev_tsd != NULL) {
72 ASSERT(vd->vdev_reopening)
163 vdev_t *vd = zio->io_vd; local
    [all...]
vdev_disk.c 57 vdev_disk_alloc(vdev_t *vd)
61 dvd = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
74 vdev_disk_free(vdev_t *vd)
76 vdev_disk_t *dvd = vd->vdev_tsd;
87 * callbacks and free vd->vdev_tsd.
97 vd->vdev_tsd = NULL;
105 vdev_disk_hold(vdev_t *vd)
108 ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
113 vdev_disk_rele(vdev_t *vd)
116 ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER))
431 vdev_t *vd = zio->io_vd; local
534 vdev_t *vd = zio->io_vd; local
    [all...]
  /src/lib/libm/src/
s_cbrtl.c 115 #define vd ((long double)vd2 + vd1) macro
117 t = dt + vd - 0x1.0p32;
  /src/libexec/ld.elf_so/
symver.c 138 const Elf_Verdef *vd = depobj->verdef; local
141 if (vd == NULL) {
147 for (;; vd = (const Elf_Verdef *)((const char *)vd + vd->vd_next)) {
148 if (vd->vd_version != VER_DEF_CURRENT) {
151 depobj->path, vd->vd_version);
154 dbg(("hash: 0x%x, vd_hash: 0x%x", hash, vd->vd_hash));
155 if (hash == vd->vd_hash) {
157 ((const char *)vd + vd->vd_aux)
180 const Elf_Verdef *vd; local
    [all...]
  /src/sys/arch/amiga/dev/
mntvavar.h 63 struct vcons_data vd; member in struct:mntva_softc
grf.c 552 struct vcons_data *vd; local
557 vd = v;
558 gp = vd->cookie;
559 scr = vd->active;
606 struct vcons_data *vd; local
610 vd = v;
611 gp = vd->cookie;
  /src/sys/arch/virt68k/dev/
mainbus.c 113 struct bi_virt_dev *vd = bootinfo_dataptr(bi); local
119 ma.ma_addr = vd->vd_mmio_base + (i * 0x1000);
121 ma.ma_irq = vd->vd_irq_base + i;
137 struct bi_virt_dev *vd = bootinfo_dataptr(bi); local
153 ma.ma_addr = vd->vd_mmio_base + (i * 0x1000);
155 ma.ma_irq = vd->vd_irq_base + i;
162 ma.ma_addr = vd->vd_mmio_base;
164 ma.ma_irq = vd->vd_irq_base;
205 struct bi_virt_dev *vd = bootinfo_dataptr(bi); local
219 ma.ma_addr = vd->vd_mmio_base + (i * 0x200)
    [all...]
  /src/sys/arch/x68k/dev/
vs.c 368 struct vs_dma *vd; local
375 for (vd = sc->sc_dmas; vd != NULL; vd = vd->vd_next) {
376 if (KVADDR(vd) <= block && block < KVADDR_END(vd)
379 if (vd == NULL) {
387 if (vd != sc->sc_prev_vd) {
389 vd->vd_map, DMAC_OCR_DIR_MTD
    [all...]
  /src/sys/arch/sparc64/dev/
ffbvar.h 79 struct vcons_data vd; member in struct:ffb_softc
  /src/sys/arch/vax/vsa/
vsbus.c 360 vsbus_dma_start(struct vsbus_dma *vd)
363 SIMPLEQ_INSERT_TAIL(&vsbus_dma, vd, vd_q);
372 struct vsbus_dma *vd; local
374 vd = SIMPLEQ_FIRST(&vsbus_dma);
375 if (vd == NULL) {
381 (*vd->vd_go)(vd->vd_arg);
  /src/sys/dev/ic/
ct65550var.h 76 struct vcons_data vd; member in struct:chipsfb_softc
  /src/sys/dev/wsfb/
genfbvar.h 106 struct vcons_data vd; member in struct:genfb_softc
  /src/sys/lib/libsa/
cd9660.c 140 struct iso_primary_descriptor *vd; local
151 vd = buf;
165 if (memcmp(vd->id, ISO_STANDARD_ID, sizeof vd->id) != 0)
167 if (isonum_711(vd->type) == ISO_VD_END)
169 if (isonum_711(vd->type) == ISO_VD_PRIMARY)
172 if (isonum_723(vd->logical_block_size) != ISO_DEFAULT_BLOCK_SIZE)
176 bno = isonum_732(vd->type_m_path_table);
177 psize = isonum_733(vd->path_table_size);

Completed in 39 milliseconds

1 2 3 4 5 6