/src/sys/dev/ |
cons.c | 207 struct tty *ctp = NULL; local in function:cnread 217 if (!cn_redirect(&dev, 1, &error, &ctp)) 220 cn_release(ctp); 227 struct tty *ctp = NULL; local in function:cnwrite 231 if (!cn_redirect(&dev, 0, &error, &ctp)) 234 cn_release(ctp); 241 struct tty *ctp = NULL; local in function:cnioctl 273 if (!cn_redirect(&dev, 0, &error, &ctp)) 276 cn_release(ctp); 284 struct tty *ctp = NULL local in function:cnpoll 303 struct tty *ctp = NULL; local in function:cnkqfilter 484 struct tty *ctp; local in function:cn_redirect [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
sun5i-a13-pocketbook-touch-lux-3.dts | 67 regulator-name = "vdd-1v8-nor-ctp"; 85 reg_1v8_ctp: regulator-ctp { 87 regulator-name = "vdd-ctp";
|
sun6i-a31s-primo81.dts | 99 ctp@5d {
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/allwinner/ |
sun50i-a64-oceanic-5205-5inmfd.dts | 47 irq-gpios = <&pio 7 4 GPIO_ACTIVE_HIGH>; /* CTP-INT: PH4 */ 48 reset-gpios = <&pio 7 11 GPIO_ACTIVE_HIGH>; /* CTP-RST: PH11 */ 72 regulator-name = "vdd-ctp";
|
sun50i-a100-allwinner-perf1.dts | 167 regulator-name = "vcc-ctp";
|
sun50i-a64-amarula-relic.dts | 121 AVDD28-supply = <®_ldo_io0>; /* VCC-CTP: GPIO0-LDO */ 124 irq-gpios = <&pio 7 4 GPIO_ACTIVE_HIGH>; /* CTP-INT: PH4 */ 125 reset-gpios = <&pio 7 8 GPIO_ACTIVE_HIGH>; /* CTP-RST: PH8 */ 297 regulator-name = "vcc-ctp";
|
sun50i-a64-pinephone.dtsi | 419 regulator-name = "vcc-lcd-ctp-stk";
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/ |
msm8916-longcheer-l8150.dts | 56 reg_ctp: regulator-ctp { 58 regulator-name = "ctp"; 347 ctp_pwr_en_default: ctp-pwr-en-default {
|
/src/lib/libc/rpc/ |
clnt_vc.c | 693 read_vc(char *ctp, char *buf, int len) 695 struct ct_data *ct = (struct ct_data *)(void *)ctp; 739 write_vc(char *ctp, char *buf, int len) 741 struct ct_data *ct = (struct ct_data *)(void *)ctp;
|
/src/sys/compat/linux/common/ |
linux_sched.c | 83 void *ctp = led->led_child_tidptr; local in function:linux_child_return 86 if (ctp) { 87 if ((error = copyout(&p->p_pid, ctp, sizeof(p->p_pid))) != 0) 90 __func__, ctp, p->p_pid, error);
|
/src/sys/arch/arm/marvell/ |
armadaxp.c | 657 int ctp; local in function:armadaxp_pic_set_priority 661 ctp = MPIC_CPU_READ(ARMADAXP_MLMB_MPIC_CTP); 662 ctp &= ~(0xf << MPIC_CTP_SHIFT); 663 ctp |= (ipl << MPIC_CTP_SHIFT); 664 MPIC_CPU_WRITE(ARMADAXP_MLMB_MPIC_CTP, ctp);
|
/src/sys/kern/ |
subr_prf.c | 399 struct tty *ctp; local in function:putone 403 ctp = NULL; /* XXX gcc i386 -Os */ 416 (ctp = atomic_load_consume(&constty)) != NULL && 418 tp = ctp; 428 if ((flags & TOCONS) && ctp == NULL && c != '\0')
|
tty.c | 1133 struct tty *ctp; local in function:ttioctl 1137 ctp = atomic_load_relaxed(&constty); 1139 if (ctp != NULL && ctp != tp && 1140 ISSET(ctp->t_state, TS_CARR_ON | TS_ISOPEN) == 1162 KASSERT(atomic_load_relaxed(&constty) == ctp || 1165 } else if (tp == ctp) {
|