| /netbsd-src/sys/arch/mipsco/obio/ |
| H A D | asc.c | 128 struct asc_softc *esc = device_private(self); in ascattach() local 129 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in ascattach() 138 esc->sc_bst = ca->ca_bustag; in ascattach() 139 esc->sc_dmat = ca->ca_dmatag; in ascattach() 144 &esc->sc_bsh) != 0) { in ascattach() 150 BUS_SPACE_MAP_LINEAR, &esc->dm_bsh) != 0) { in ascattach() 155 if (bus_dmamap_create(esc->sc_dmat, MAX_DMA_SZ, in ascattach() 157 &esc->sc_dmamap) != 0) { in ascattach() 162 evcnt_attach_dynamic(&esc->sc_intrcnt, EVCNT_TYPE_INTR, NULL, in ascattach() 165 esc->sc_flags = DMA_IDLE; in ascattach() [all …]
|
| /netbsd-src/sys/arch/next68k/dev/ |
| H A D | esp.c | 236 struct esp_softc *esc = device_private(self); in findchannel_defer() local 237 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in findchannel_defer() 240 if (esc->sc_dma == NULL) { in findchannel_defer() 242 esc->sc_dma = nextdma_findchannel("scsi"); in findchannel_defer() 243 if (esc->sc_dma == NULL) in findchannel_defer() 248 nextdma_setconf(esc->sc_dma, shutdown_cb, &esp_dmacb_shutdown); in findchannel_defer() 249 nextdma_setconf(esc->sc_dma, continue_cb, &esp_dmacb_continue); in findchannel_defer() 250 nextdma_setconf(esc->sc_dma, completed_cb, &esp_dmacb_completed); in findchannel_defer() 251 nextdma_setconf(esc->sc_dma, cb_arg, sc); in findchannel_defer() 253 error = bus_dmamap_create(esc->sc_dma->sc_dmat, in findchannel_defer() [all …]
|
| /netbsd-src/sys/arch/mac68k/obio/ |
| H A D | esp.c | 179 struct esp_softc *esc = device_private(self); in espattach() local 180 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in espattach() 227 esc->sc_dreqreg = (volatile uint32_t *) in espattach() 229 *esc->sc_dreqreg = 0x1d1; in espattach() 256 esp0 = esc; in espattach() 258 esc->sc_reg = (volatile uint8_t *)SCSIBase; in espattach() 259 via2_register_irq(VIA2_SCSIIRQ, esp_intr, esc); in espattach() 275 esp1 = esc; in espattach() 277 esc->sc_reg = (volatile uint8_t *)SCSIBase + 0x402; in espattach() 288 aprint_normal(": address %p", esc->sc_reg); in espattach() [all …]
|
| /netbsd-src/sys/dev/pci/ |
| H A D | pcscp.c | 154 struct pcscp_softc *esc = device_private(self); in pcscp_attach() local 155 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in pcscp_attach() 178 esc->sc_st = iot; in pcscp_attach() 179 esc->sc_sh = ioh; in pcscp_attach() 180 esc->sc_dmat = pa->pa_dmat; in pcscp_attach() 241 if (bus_dmamap_create(esc->sc_dmat, MAXPHYS, MDL_SIZE, MDL_SEG_SIZE, in pcscp_attach() 242 MDL_SEG_SIZE, BUS_DMA_NOWAIT, &esc->sc_xfermap)) { in pcscp_attach() 251 if ((error = bus_dmamem_alloc(esc->sc_dmat, in pcscp_attach() 258 if ((error = bus_dmamem_map(esc->sc_dmat, &seg, rseg, in pcscp_attach() 259 sizeof(uint32_t) * MDL_SIZE , (void **)&esc->sc_mdladdr, in pcscp_attach() [all …]
|
| H A D | mpu_eso.c | 60 struct eso_softc *esc = device_private(parent); in mpu_eso_match() local 66 sc.ioh = esc->sc_mpu_ioh; in mpu_eso_match() 67 sc.iot = esc->sc_mpu_iot; in mpu_eso_match() 74 struct eso_softc *esc = device_private(parent); in mpu_eso_attach() local 79 sc->ioh = esc->sc_mpu_ioh; in mpu_eso_attach() 80 sc->iot = esc->sc_mpu_iot; in mpu_eso_attach() 83 sc->lock = &esc->sc_intr_lock; in mpu_eso_attach()
|
| /netbsd-src/sys/dev/mca/ |
| H A D | esp_mca.c | 137 struct esp_softc *esc = device_private(self); in esp_mca_attach() local 138 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in esp_mca_attach() 195 esc->sc_iot = ma->ma_iot; in esp_mca_attach() 196 esc->sc_ioh = ioh; in esp_mca_attach() 200 ESP_MCA_IOSIZE-ESP_REG_OFFSET, &esc->sc_esp_ioh)) { in esp_mca_attach() 206 esc->sc_dmat = ma->ma_dmat; in esp_mca_attach() 207 if ((error = mca_dmamap_create(esc->sc_dmat, MAXPHYS, in esp_mca_attach() 209 &esc->sc_xfer, drq)) != 0){ in esp_mca_attach() 231 esc->sc_ih = mca_intr_establish(ma->ma_mc, irq, IPL_BIO, ncr53c9x_intr, in esp_mca_attach() 232 esc); in esp_mca_attach() [all …]
|
| /netbsd-src/sys/dev/pcmcia/ |
| H A D | esp_pcmcia.c | 152 struct esp_pcmcia_softc *esc = device_private(self); in esp_pcmcia_attach() local 153 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in esp_pcmcia_attach() 161 esc->sc_pf = pf; in esp_pcmcia_attach() 170 esc->sc_iot = cfe->iospace[0].handle.iot; in esp_pcmcia_attach() 171 esc->sc_ioh = cfe->iospace[0].handle.ioh; in esp_pcmcia_attach() 172 esp_pcmcia_init(esc); in esp_pcmcia_attach() 181 esc->sc_state = ESP_PCMCIA_ATTACHED; in esp_pcmcia_attach() 185 esp_pcmcia_init(struct esp_pcmcia_softc *esc) in esp_pcmcia_init() argument 187 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in esp_pcmcia_init() 194 callout_init(&esc->sc_poll_ch, 0); in esp_pcmcia_init() [all …]
|
| /netbsd-src/sys/dev/podulebus/ |
| H A D | esp_podule.c | 123 struct esp_podule_softc *esc = device_private(self); in esp_podule_attach() local 124 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in esp_podule_attach() 139 esc->sc_esp_glue = esp_podule_glue; in esp_podule_attach() 140 esc->sc_esp_glue.gl_read_reg = devices[i].read_reg; in esp_podule_attach() 141 esc->sc_esp_glue.gl_write_reg = devices[i].write_reg; in esp_podule_attach() 142 sc->sc_glue = &esc->sc_esp_glue; in esp_podule_attach() 144 esc->sc_iot = pa->pa_slow_t; in esp_podule_attach() 145 bus_space_map(esc->sc_iot, pa->pa_slow_base, 0x4000, 0, &esc->sc_ioh); in esp_podule_attach() 180 struct esp_podule_softc *esc = (struct esp_podule_softc *)sc; in esp_podule_dma_reset() local 182 esc->sc_active = 0; in esp_podule_dma_reset() [all …]
|
| /netbsd-src/sys/arch/acorn32/podulebus/ |
| H A D | cosc.c | 113 vu_char *esc; in coscattach() local 139 esc = &sc->sc_iobase[COSC_ESCOFFSET_BASE]; in coscattach() 141 rp->esc.esc_tc_low = &esc[COSC_ESCOFFSET_TCL]; in coscattach() 142 rp->esc.esc_tc_mid = &esc[COSC_ESCOFFSET_TCM]; in coscattach() 143 rp->esc.esc_fifo = &esc[COSC_ESCOFFSET_FIFO]; in coscattach() 144 rp->esc.esc_command = &esc[COSC_ESCOFFSET_COMMAND]; in coscattach() 145 rp->esc.esc_dest_id = &esc[COSC_ESCOFFSET_DESTID]; in coscattach() 146 rp->esc.esc_timeout = &esc[COSC_ESCOFFSET_TIMEOUT]; in coscattach() 147 rp->esc.esc_syncper = &esc[COSC_ESCOFFSET_PERIOD]; in coscattach() 148 rp->esc.esc_syncoff = &esc[COSC_ESCOFFSET_OFFSET]; in coscattach() [all …]
|
| /netbsd-src/sys/dev/isa/ |
| H A D | esp_isa.c | 249 esp_isa_init(struct esp_isa_softc *esc, struct esp_isa_probe_data *epd) in esp_isa_init() argument 251 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in esp_isa_init() 362 struct esp_isa_softc *esc = device_private(self); in esp_isa_attach() local 363 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in esp_isa_attach() 393 esc->sc_ih = isa_intr_establish(ic, ia->ia_irq[0].ir_irq, IST_EDGE, in esp_isa_attach() 394 IPL_BIO, ncr53c9x_intr, esc); in esp_isa_attach() 395 if (esc->sc_ih == NULL) { in esp_isa_attach() 400 esc->sc_ioh = ioh; in esp_isa_attach() 401 esc->sc_iot = iot; in esp_isa_attach() 402 esp_isa_init(esc, &epd); in esp_isa_attach() [all …]
|
| H A D | if_ef.c | 167 struct ef_softc *esc = (struct ef_softc *)sc; in ef_reset() local 172 bus_space_write_1(esc->sc_regt, esc->sc_regh, in ef_reset() 175 bus_space_write_1(esc->sc_regt, esc->sc_regh, in ef_reset() 192 struct ef_softc *esc = (struct ef_softc *)sc; in ef_atten() local 194 bus_space_write_1(esc->sc_regt, esc->sc_regh, EF_ATTN, 1); in ef_atten() 200 struct ef_softc *esc = (struct ef_softc *)sc; in ef_hwinit() local 202 bus_space_write_1(esc->sc_regt, esc->sc_regh, EF_ICTRL, 1); in ef_hwinit() 209 struct ef_softc *esc = (struct ef_softc *)sc; in ef_intrhook() local 214 cr = bus_space_read_1(esc->sc_regt, esc->sc_regh, EF_CTRL); in ef_intrhook() 215 bus_space_write_1(esc->sc_regt, esc->sc_regh, EF_CTRL, in ef_intrhook() [all …]
|
| H A D | if_ec.c | 246 struct ec_softc *esc = device_private(self); in ec_attach() local 247 struct dp8390_softc *sc = &esc->sc_dp8390; in ec_attach() 287 esc->sc_asict = asict; in ec_attach() 288 esc->sc_asich = asich; in ec_attach() 360 esc->sc_16bitp = 1; in ec_attach() 362 esc->sc_16bitp = 0; in ec_attach() 365 esc->sc_16bitp ? "16" : "8"); in ec_attach() 381 (esc->sc_16bitp ? ED_DCR_WTS : 0); in ec_attach() 415 if (esc->sc_16bitp) { in ec_attach() 492 esc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq, in ec_attach() [all …]
|
| H A D | nca_isa.c | 303 struct nca_isa_softc *esc = device_private(self); in nca_isa_attach() local 304 struct ncr5380_softc *sc = &esc->sc_ncr5380; in nca_isa_attach() 382 esc->sc_ih = isa_intr_establish(ic, ia->ia_irq[0].ir_irq, in nca_isa_attach() 383 IST_EDGE, IPL_BIO, ncr5380_intr, esc); in nca_isa_attach() 384 if (esc->sc_ih == NULL) { in nca_isa_attach() 399 esc->sc_options = 0x00000; /* no options */ in nca_isa_attach() 401 esc->sc_options = 0x0ffff; /* all options except force poll */ in nca_isa_attach() 404 sc->sc_no_disconnect = (esc->sc_options & NCA_NO_DISCONNECT); in nca_isa_attach() 405 sc->sc_parity_disable = (esc->sc_options & NCA_NO_PARITY_CHK) >> 8; in nca_isa_attach() 406 if (esc->sc_options & NCA_FORCE_POLLING) in nca_isa_attach()
|
| /netbsd-src/sys/dev/fdt/ |
| H A D | dwcmmc_fdt.c | 106 struct dwcmmc_fdt_softc *esc = device_private(self); in dwcmmc_fdt_attach() 107 struct dwc_mmc_softc *sc = &esc->sc; in dwcmmc_fdt_attach() 126 esc->sc_clk_biu = fdtbus_clock_get(phandle, "biu"); in dwcmmc_fdt_attach() 127 if (esc->sc_clk_biu == NULL) { in dwcmmc_fdt_attach() 131 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu"); in dwcmmc_fdt_attach() 132 if (esc->sc_clk_ciu == NULL) { in dwcmmc_fdt_attach() 137 error = clk_enable(esc->sc_clk_biu); in dwcmmc_fdt_attach() 142 error = clk_enable(esc->sc_clk_ciu); in dwcmmc_fdt_attach() 148 esc->sc_vqmmc = fdtbus_regulator_acquire(phandle, "vqmmc-supply"); in dwcmmc_fdt_attach() 149 esc in dwcmmc_fdt_attach() 105 struct dwcmmc_fdt_softc *esc = device_private(self); dwcmmc_fdt_attach() local 210 struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev); dwcmmc_fdt_pre_power_on() local 219 struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev); dwcmmc_fdt_post_power_on() local 228 struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev); dwcmmc_fdt_card_detect() local 238 struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev); dwcmmc_fdt_bus_clock() local 260 struct dwcmmc_fdt_softc *esc = device_private(sc->sc_dev); dwcmmc_fdt_signal_voltage() local [all...] |
| /netbsd-src/sys/dev/sbus/ |
| H A D | esp_sbus.c | 151 struct esp_softc *esc = device_private(self); in espattach_sbus() local 152 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in espattach_sbus() 165 esc->sc_bustag = sa->sa_bustag; in espattach_sbus() 166 esc->sc_dmatag = sa->sa_dmatag; in espattach_sbus() 198 esc->sc_dma = lsc; in espattach_sbus() 259 sa->sa_promvaddrs[1], &esc->sc_reg); in espattach_sbus() 265 0, &esc->sc_reg) != 0) { in espattach_sbus() 277 esc->sc_pri = sa->sa_pri; in espattach_sbus() 279 espattach(esc, &esp_sbus_glue); in espattach_sbus() 298 esc->sc_dma = device_private(dma_dev); in espattach_sbus() [all …]
|
| /netbsd-src/sys/arch/macppc/dev/ |
| H A D | esp.c | 162 struct esp_softc *esc = device_private(self); in espattach() local 163 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in espattach() 174 esc->sc_node = ca->ca_node; in espattach() 175 esc->sc_pri = ca->ca_intr[0]; in espattach() 176 aprint_normal(" irq %d", esc->sc_pri); in espattach() 182 esc->sc_reg = mapiodev(ca->ca_baseaddr + reg[0], reg[1], false); in espattach() 183 esc->sc_dmareg = mapiodev(ca->ca_baseaddr + reg[2], reg[3], false); in espattach() 186 esc->sc_dmacmd = dbdma_alloc(sizeof(dbdma_command_t) * 20, NULL); in espattach() 234 intr_establish_xname(esc->sc_pri, IST_EDGE, IPL_BIO, ncr53c9x_intr, sc, in espattach() 257 struct esp_softc *esc = (struct esp_softc *)sc; in esp_read_reg() local [all …]
|
| /netbsd-src/sys/arch/sparc/dev/ |
| H A D | esp_obio.c | 124 struct esp_softc *esc = device_private(self); in espattach_obio() local 125 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in espattach_obio() 132 esc->sc_bustag = oba->oba_bustag; in espattach_obio() 133 esc->sc_dmatag = oba->oba_dmatag; in espattach_obio() 145 esc->sc_dma = device_private(dma_dev); in espattach_obio() 146 esc->sc_dma->sc_client = sc; in espattach_obio() 151 &esc->sc_reg) != 0) { in espattach_obio() 243 bus_intr_establish(esc->sc_bustag, oba->oba_pri, IPL_BIO, in espattach_obio() 264 struct esp_softc *esc = (struct esp_softc *)sc; in esp_read_reg() local 266 return bus_space_read_1(esc->sc_bustag, esc->sc_reg, reg * 4); in esp_read_reg() [all …]
|
| /netbsd-src/sys/arch/sun3/dev/ |
| H A D | esp.c | 126 struct esp_softc *esc = device_private(self); in espattach() local 127 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x; in espattach() 139 esc->sc_bst = ca->ca_bustag; in espattach() 140 if (bus_space_map(esc->sc_bst, ca->ca_paddr, ESP_REG_SIZE, 0, in espattach() 141 &esc->sc_bsh) != 0) { in espattach() 153 esc->sc_dma = espdmafind(device_unit(self)); in espattach() 154 esc->sc_dma->sc_client = sc; /* Point back to us */ in espattach() 256 struct esp_softc *esc = (struct esp_softc *)sc; in esp_read_reg() local 258 return bus_space_read_1(esc->sc_bst, esc in esp_read_reg() 264 struct esp_softc *esc = (struct esp_softc *)sc; esp_write_reg() local 272 struct esp_softc *esc = (struct esp_softc *)sc; esp_dma_isintr() local 280 struct esp_softc *esc = (struct esp_softc *)sc; esp_dma_reset() local 288 struct esp_softc *esc = (struct esp_softc *)sc; esp_dma_intr() local 297 struct esp_softc *esc = (struct esp_softc *)sc; esp_dma_setup() local 305 struct esp_softc *esc = (struct esp_softc *)sc; esp_dma_go() local 313 struct esp_softc *esc = (struct esp_softc *)sc; esp_dma_stop() local 321 struct esp_softc *esc = (struct esp_softc *)sc; esp_dma_isactive() local [all...] |
| /netbsd-src/sys/arch/arm/altera/ |
| H A D | cycv_dwcmmc.c | 82 struct cycv_dwcmmc_softc *esc = device_private(self); in cycv_dwcmmc_attach() local 83 struct dwc_mmc_softc *sc = &esc->sc; in cycv_dwcmmc_attach() 101 esc->sc_clk_biu = fdtbus_clock_get(phandle, "biu"); in cycv_dwcmmc_attach() 102 if (esc->sc_clk_biu == NULL) { in cycv_dwcmmc_attach() 106 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu"); in cycv_dwcmmc_attach() 107 if (esc->sc_clk_ciu == NULL) { in cycv_dwcmmc_attach() 112 error = clk_enable(esc->sc_clk_biu); in cycv_dwcmmc_attach() 117 error = clk_enable(esc->sc_clk_ciu); in cycv_dwcmmc_attach() 133 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu); in cycv_dwcmmc_attach() 142 esc->sc_phandle = phandle; in cycv_dwcmmc_attach() [all …]
|
| /netbsd-src/sys/arch/arm/samsung/ |
| H A D | exynos_dwcmmc.c | 91 struct exynos_dwcmmc_softc *esc = device_private(self); in exynos_dwcmmc_attach() local 92 struct dwc_mmc_softc *sc = &esc->sc; in exynos_dwcmmc_attach() 106 if (of_getprop_uint32(phandle, "samsung,dw-mshc-ciu-div", &esc->sc_ciu_div)) { in exynos_dwcmmc_attach() 111 esc->sc_clk_biu = fdtbus_clock_get(phandle, "biu"); in exynos_dwcmmc_attach() 112 if (esc->sc_clk_biu == NULL) { in exynos_dwcmmc_attach() 116 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu"); in exynos_dwcmmc_attach() 117 if (esc->sc_clk_ciu == NULL) { in exynos_dwcmmc_attach() 122 error = clk_enable(esc->sc_clk_biu); in exynos_dwcmmc_attach() 127 error = clk_enable(esc->sc_clk_ciu); in exynos_dwcmmc_attach() 147 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu) / (esc->sc_ciu_div + 1); in exynos_dwcmmc_attach() [all …]
|
| /netbsd-src/sys/dev/eisa/ |
| H A D | depca_eisa.c | 102 struct depca_eisa_softc *esc = device_private(self); in depca_eisa_attach() local 103 struct depca_softc *sc = &esc->sc_depca; in depca_eisa_attach() 115 esc->sc_ec = ea->ea_ec; in depca_eisa_attach() 147 esc->sc_irq = eci.eci_irq; in depca_eisa_attach() 148 esc->sc_ist = eci.eci_ist; in depca_eisa_attach() 156 struct depca_eisa_softc *esc = (struct depca_eisa_softc *)sc; in depca_eisa_intr_establish() local 162 if (eisa_intr_map(esc->sc_ec, esc->sc_irq, &ih)) { in depca_eisa_intr_establish() 164 "unable to map interrupt (%d)\n", esc->sc_irq); in depca_eisa_intr_establish() 167 intrstr = eisa_intr_string(esc->sc_ec, ih, intrbuf, sizeof(intrbuf)); in depca_eisa_intr_establish() 168 rv = eisa_intr_establish(esc->sc_ec, ih, esc->sc_ist, IPL_NET, in depca_eisa_intr_establish() [all …]
|
| /netbsd-src/external/bsd/blocklist/port/ |
| H A D | fparseln.c | 59 isescaped(const char *sp, const char *p, int esc) in isescaped() argument 65 if (esc == '\0') in isescaped() 69 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++) in isescaped() 91 char esc, con, nl, com; in fparseln() local 100 esc = str[0]; in fparseln() 122 if (*cp == com && !isescaped(ptr, cp, esc)) { in fparseln() 139 if (*cp == con && !isescaped(ptr, cp, esc)) { in fparseln() 168 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL && in fparseln() 169 strchr(buf, esc) != NULL) { in fparseln() 174 while (cp[0] != '\0' && cp[0] != esc) in fparseln() [all …]
|
| /netbsd-src/lib/libc/stdio/ |
| H A D | fparseln.c | 67 isescaped(const char *sp, const char *p, int esc) in isescaped() argument 76 if (esc == '\0') in isescaped() 80 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++) in isescaped() 102 char esc, con, nl, com; in fparseln() local 113 esc = str[0]; in fparseln() 135 if (*cp == com && !isescaped(ptr, cp, esc)) { in fparseln() 152 if (*cp == con && !isescaped(ptr, cp, esc)) { in fparseln() 181 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL && in fparseln() 182 strchr(buf, esc) != NULL) { in fparseln() 187 while (cp[0] != '\0' && cp[0] != esc) in fparseln() [all …]
|
| /netbsd-src/games/quiz/ |
| H A D | rxp.c | 102 int esc, err; in rxp__compile() local 104 esc = 0; in rxp__compile() 121 if (*sp == ':' && !esc) in rxp__compile() 123 if (esc) { in rxp__compile() 126 esc = 0; in rxp__compile() 130 esc = 1; in rxp__compile() 170 esc = 0; in rxp__compile()
|
| /netbsd-src/external/gpl2/grep/dist/lib/ |
| H A D | quotearg.c | 284 unsigned char esc; in quotearg_buffer_restyled() local 324 case ALERT_CHAR: esc = 'a'; goto c_escape; in quotearg_buffer_restyled() 325 case '\b': esc = 'b'; goto c_escape; in quotearg_buffer_restyled() 326 case '\f': esc = 'f'; goto c_escape; in quotearg_buffer_restyled() 327 case '\n': esc = 'n'; goto c_and_shell_escape; in quotearg_buffer_restyled() 328 case '\r': esc = 'r'; goto c_and_shell_escape; in quotearg_buffer_restyled() 329 case '\t': esc = 't'; goto c_and_shell_escape; in quotearg_buffer_restyled() 330 case '\v': esc = 'v'; goto c_escape; in quotearg_buffer_restyled() 331 case '\\': esc = c; goto c_and_shell_escape; in quotearg_buffer_restyled() 339 c = esc; in quotearg_buffer_restyled()
|