| /freebsd-11-stable/sys/dev/ips/ |
| HD | ips_disk.c | 70 ipsdisk_softc_t *dsc = dp->d_drv1; in ipsd_open() local 72 dsc->state |= IPS_DEV_OPEN; in ipsd_open() 73 DEVICE_PRINTF(2, dsc->dev, "I'm open\n"); in ipsd_open() 79 ipsdisk_softc_t *dsc = dp->d_drv1; in ipsd_close() local 80 dsc->state &= ~IPS_DEV_OPEN; in ipsd_close() 81 DEVICE_PRINTF(2, dsc->dev, "I'm closed for the day\n"); in ipsd_close() 88 ipsdisk_softc_t *dsc; in ipsd_finish() local 89 dsc = iobuf->bio_disk->d_drv1; in ipsd_finish() 92 ipsdisk_softc_t *dsc; in ipsd_finish() local 93 dsc = iobuf->bio_disk->d_drv1; in ipsd_finish() [all …]
|
| /freebsd-11-stable/contrib/wpa/wpa_supplicant/dbus/ |
| HD | dbus_new_introspect.c | 86 const struct wpa_dbus_property_desc *dsc) in add_property() argument 90 dsc->dbus_property, dsc->type, in add_property() 91 dsc->getter ? "read" : "", in add_property() 92 dsc->setter ? "write" : ""); in add_property() 99 const struct wpa_dbus_method_desc *dsc; in extract_interfaces_methods() local 102 for (dsc = methods; dsc && dsc->dbus_method; dsc++) { in extract_interfaces_methods() 103 iface = add_interface(list, dsc->dbus_interface); in extract_interfaces_methods() 105 add_entry(iface->xml, "method", dsc->dbus_method, in extract_interfaces_methods() 106 dsc->args, 1); in extract_interfaces_methods() 114 const struct wpa_dbus_signal_desc *dsc; in extract_interfaces_signals() local [all …]
|
| HD | dbus_new_helpers.c | 28 const struct wpa_dbus_property_desc *dsc; in fill_dict_with_properties() local 30 for (dsc = props; dsc && dsc->dbus_property; dsc++) { in fill_dict_with_properties() 32 if (os_strncmp(dsc->dbus_interface, interface, in fill_dict_with_properties() 37 if (dsc->getter == NULL) in fill_dict_with_properties() 45 &dsc->dbus_property)) in fill_dict_with_properties() 49 if (!dsc->getter(dsc, &entry_iter, error, user_data)) { in fill_dict_with_properties() 52 __func__, dsc->dbus_interface, in fill_dict_with_properties() 53 dsc->dbus_property); in fill_dict_with_properties() 159 const struct wpa_dbus_property_desc *dsc, in properties_get() argument 171 if (dsc->getter == NULL) { in properties_get() [all …]
|
| /freebsd-11-stable/sys/amd64/vmm/ |
| HD | vmm_dev.c | 232 struct devmem_softc *dsc; in get_memseg() local 241 SLIST_FOREACH(dsc, &sc->devmem, link) { in get_memseg() 242 if (dsc->segid == mseg->segid) in get_memseg() 245 KASSERT(dsc != NULL, ("%s: devmem segment %d not found", in get_memseg() 247 error = copystr(dsc->name, mseg->name, SPECNAMELEN + 1, NULL); in get_memseg() 743 struct devmem_softc *dsc; in vmmdev_destroy() local 749 while ((dsc = SLIST_FIRST(&sc->devmem)) != NULL) { in vmmdev_destroy() 750 KASSERT(dsc->cdev == NULL, ("%s: devmem not free", __func__)); in vmmdev_destroy() 752 free(dsc->name, M_VMMDEV); in vmmdev_destroy() 753 free(dsc, M_VMMDEV); in vmmdev_destroy() [all …]
|
| /freebsd-11-stable/crypto/openssl/crypto/bio/ |
| HD | bss_log.c | 350 struct dsc$descriptor_s opc_dsc; in xsyslog() 371 struct dsc$descriptor_s buf_dsc; in xsyslog() 402 buf_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in xsyslog() 403 buf_dsc.dsc$b_class = DSC$K_CLASS_S; in xsyslog() 404 buf_dsc.dsc$a_pointer = buf; in xsyslog() 405 buf_dsc.dsc$w_length = sizeof(buf) - 1; in xsyslog() 416 opc_dsc.dsc$b_dtype = DSC$K_DTYPE_T; in xsyslog() 417 opc_dsc.dsc$b_class = DSC$K_CLASS_S; in xsyslog() 418 opc_dsc.dsc$a_pointer = (OPCDEF_TYPE) opcdef_p; in xsyslog() 419 opc_dsc.dsc$w_length = len + 8; in xsyslog()
|
| /freebsd-11-stable/sys/sparc64/sbus/ |
| HD | dma_sbus.c | 173 struct dma_softc *dsc; in dma_attach() local 183 dsc = device_get_softc(dev); in dma_attach() 184 lsc = &dsc->sc_lsi64854; in dma_attach() 188 dsc->sc_ign = sbus_get_ign(dev); in dma_attach() 189 dsc->sc_slot = sbus_get_slot(dev); in dma_attach() 255 if ((ddi = dma_setup_dinfo(dev, dsc, child)) == NULL) in dma_attach() 282 dma_setup_dinfo(device_t dev, struct dma_softc *dsc, phandle_t node) in dma_setup_dinfo() argument 321 if (slot != dsc->sc_slot) { in dma_setup_dinfo() 342 iv |= dsc->sc_ign << INTMAP_IGN_SHIFT; in dma_setup_dinfo()
|
| /freebsd-11-stable/usr.sbin/bhyve/ |
| HD | pci_e82545.c | 1060 union e1000_tx_udesc *dsc; in e82545_transmit_done() local 1063 dsc = &sc->esc_txdesc[head]; in e82545_transmit_done() 1064 if (dsc->td.lower.data & E1000_TXD_CMD_RS) { in e82545_transmit_done() 1065 dsc->td.upper.data |= E1000_TXD_STAT_DD; in e82545_transmit_done() 1081 union e1000_tx_udesc *dsc; in e82545_transmit() local 1103 dsc = &sc->esc_txdesc[head]; in e82545_transmit() 1104 dtype = e82545_txdesc_type(dsc->td.lower.data); in e82545_transmit() 1111 head, dsc->td.buffer_addr, in e82545_transmit() 1112 dsc->td.upper.data, dsc->td.lower.data); in e82545_transmit() 1114 sc->esc_txctx = dsc->cd; in e82545_transmit() [all …]
|
| /freebsd-11-stable/sys/dev/cfi/ |
| HD | cfi_disk.c | 290 struct cfi_disk_softc *dsc; in cfi_disk_getattr() local 297 dsc = bp->bio_disk->d_drv1; in cfi_disk_getattr() 298 sc = dsc->parent; in cfi_disk_getattr()
|
| /freebsd-11-stable/contrib/netbsd-tests/usr.bin/bzip2/ |
| HD | t_bzip2.sh | 46 bzip2 -dsc $(atf_get_srcdir)/d_sample3.bz2
|
| /freebsd-11-stable/sys/dev/usb/ |
| HD | usbdi.h | 378 #define USB_DEV_SUBCLASS(dsc) \ argument 379 .match_flag_dev_subclass = 1, .bDeviceSubClass = (dsc)
|
| /freebsd-11-stable/contrib/elftoolchain/libdwarf/ |
| HD | dwarf_dump.c | 617 dwarf_get_DSC_name(unsigned dsc, const char **s) in dwarf_get_DSC_name() argument 622 switch (dsc) { in dwarf_get_DSC_name()
|
| /freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ |
| HD | kmp_stats.cpp | 105 double dsc = double(sampleCount); in operator +=() local 106 double dscBydnsc = dsc / dnsc; in operator +=()
|
| HD | kmp_alloc.cpp | 1951 kmp_mem_descr_t *dsc = in ___kmp_fast_free() local 1954 kmp_info_t *q_th = (kmp_info_t *)(dsc->ptr_aligned); in ___kmp_fast_free() 1956 dsc->size_allocated + 1; // new size in case we add current task in ___kmp_fast_free()
|
| /freebsd-11-stable/sys/dev/dc/ |
| HD | if_dc.c | 4093 struct dc_softc *dsc; in dc_check_multiport() local 4112 dsc = device_get_softc(child); in dc_check_multiport() 4116 bcopy(dsc->dc_eaddr, sc->dc_eaddr, ETHER_ADDR_LEN); in dc_check_multiport() 4120 if (DC_IS_INTEL(sc) && dsc->dc_srom != NULL && in dc_check_multiport() 4123 sc->dc_romwidth = dsc->dc_romwidth; in dc_check_multiport() 4131 bcopy(dsc->dc_srom, sc->dc_srom, in dc_check_multiport()
|
| /freebsd-11-stable/contrib/ntp/ntpd/ |
| HD | ntp_util.c | 316 struct dsc$descriptor driftdsc = { in write_stats()
|
| /freebsd-11-stable/sys/contrib/octeon-sdk/ |
| HD | cvmx-pcie.c | 1073 pciercx_cfg515.s.dsc = 1; in __cvmx_pcie_rc_initialize_gen2()
|
| HD | cvmx-pciercx-defs.h | 5686 uint32_t dsc : 1; /**< Directed Speed Change member 5707 uint32_t dsc : 1;
|
| HD | cvmx-pcieepx-defs.h | 5988 uint32_t dsc : 1; /**< Directed Speed Change member 6009 uint32_t dsc : 1;
|