/linux-4.4.14/net/ceph/ |
D | messenger.c | 120 static void con_flag_clear(struct ceph_connection *con, unsigned long con_flag) in con_flag_clear() argument 124 clear_bit(con_flag, &con->flags); in con_flag_clear() 127 static void con_flag_set(struct ceph_connection *con, unsigned long con_flag) in con_flag_set() argument 131 set_bit(con_flag, &con->flags); in con_flag_set() 134 static bool con_flag_test(struct ceph_connection *con, unsigned long con_flag) in con_flag_test() argument 138 return test_bit(con_flag, &con->flags); in con_flag_test() 141 static bool con_flag_test_and_clear(struct ceph_connection *con, in con_flag_test_and_clear() argument 146 return test_and_clear_bit(con_flag, &con->flags); in con_flag_test_and_clear() 149 static bool con_flag_test_and_set(struct ceph_connection *con, in con_flag_test_and_set() argument 154 return test_and_set_bit(con_flag, &con->flags); in con_flag_test_and_set() [all …]
|
D | mon_client.c | 111 ceph_con_send(&monc->con, monc->m_auth); in __send_prepared_auth_request() 124 ceph_con_close(&monc->con); in __close_session() 148 ceph_con_open(&monc->con, in __open_session() 154 ceph_con_keepalive(&monc->con); in __open_session() 241 ceph_con_send(&monc->con, ceph_msg_get(msg)); in __send_subscribe() 261 ceph_pr_addr(&monc->con.peer_addr.in_addr)); in handle_subscribe_ack() 494 static struct ceph_msg *get_generic_reply(struct ceph_connection *con, in get_generic_reply() argument 498 struct ceph_mon_client *monc = con->private; in get_generic_reply() 533 ceph_con_send(&monc->con, ceph_msg_get(req->request)); in __do_generic_request() 735 ceph_con_send(&monc->con, ceph_msg_get(req->request)); in __resend_generic_request() [all …]
|
D | osd_client.c | 995 static void osd_reset(struct ceph_connection *con) in osd_reset() argument 997 struct ceph_osd *osd = con->private; in osd_reset() 2796 static void dispatch(struct ceph_connection *con, struct ceph_msg *msg) in dispatch() argument 2798 struct ceph_osd *osd = con->private; in dispatch() 2830 static struct ceph_msg *get_reply(struct ceph_connection *con, in get_reply() argument 2834 struct ceph_osd *osd = con->private; in get_reply() 2884 static struct ceph_msg *alloc_msg(struct ceph_connection *con, in alloc_msg() argument 2888 struct ceph_osd *osd = con->private; in alloc_msg() 2898 return get_reply(con, hdr, skip); in alloc_msg() 2910 static struct ceph_connection *get_osd_con(struct ceph_connection *con) in get_osd_con() argument [all …]
|
D | auth_x.c | 702 if (ceph_test_opt(from_msgr(msg->con->msgr), NOMSGSIGN)) in ceph_x_sign_message() 719 if (ceph_test_opt(from_msgr(msg->con->msgr), NOMSGSIGN)) in ceph_x_check_message_signature()
|
/linux-4.4.14/net/tipc/ |
D | server.c | 72 int (*rx_action) (struct tipc_conn *con); 88 static void tipc_clean_outqueues(struct tipc_conn *con); 92 struct tipc_conn *con = container_of(kref, struct tipc_conn, kref); in tipc_conn_kref_release() local 93 struct sockaddr_tipc *saddr = con->server->saddr; in tipc_conn_kref_release() 94 struct socket *sock = con->sock; in tipc_conn_kref_release() 99 if (test_bit(CF_SERVER, &con->flags)) { in tipc_conn_kref_release() 106 con->sock = NULL; in tipc_conn_kref_release() 109 tipc_clean_outqueues(con); in tipc_conn_kref_release() 110 kfree(con); in tipc_conn_kref_release() 113 static void conn_put(struct tipc_conn *con) in conn_put() argument [all …]
|
D | netlink_compat.c | 886 struct nlattr *con[TIPC_NLA_CON_MAX + 1]; in tipc_nl_compat_sk_dump() local 888 nla_parse_nested(con, TIPC_NLA_CON_MAX, sock[TIPC_NLA_SOCK_CON], in tipc_nl_compat_sk_dump() 891 node = nla_get_u32(con[TIPC_NLA_CON_NODE]); in tipc_nl_compat_sk_dump() 896 nla_get_u32(con[TIPC_NLA_CON_SOCK])); in tipc_nl_compat_sk_dump() 898 if (con[TIPC_NLA_CON_FLAG]) in tipc_nl_compat_sk_dump() 900 nla_get_u32(con[TIPC_NLA_CON_TYPE]), in tipc_nl_compat_sk_dump() 901 nla_get_u32(con[TIPC_NLA_CON_INST])); in tipc_nl_compat_sk_dump()
|
/linux-4.4.14/fs/dlm/ |
D | lowcomms.c | 139 struct connection *con; member 180 struct connection *con; in __find_con() local 184 hlist_for_each_entry(con, &connection_hash[r], list) { in __find_con() 185 if (con->nodeid == nodeid) in __find_con() 186 return con; in __find_con() 197 struct connection *con = NULL; in __nodeid2con() local 200 con = __find_con(nodeid); in __nodeid2con() 201 if (con || !alloc) in __nodeid2con() 202 return con; in __nodeid2con() 204 con = kmem_cache_zalloc(con_cache, alloc); in __nodeid2con() [all …]
|
/linux-4.4.14/fs/proc/ |
D | consoles.c | 30 struct console *con = v; in show_console_dev() local 34 if (con->device) { in show_console_dev() 37 driver = con->device(con, &index); in show_console_dev() 45 flags[a] = (con->flags & con_flags[a].flag) ? in show_console_dev() 50 seq_printf(m, "%s%d", con->name, con->index); in show_console_dev() 52 seq_printf(m, "%c%c%c (%s)", con->read ? 'R' : '-', in show_console_dev() 53 con->write ? 'W' : '-', con->unblank ? 'U' : '-', in show_console_dev() 65 struct console *con; in c_start() local 69 for_each_console(con) in c_start() 73 return con; in c_start() [all …]
|
/linux-4.4.14/drivers/gpio/ |
D | gpio-samsung.c | 183 u32 con; in samsung_gpio_setcfg_2bit() local 193 con = __raw_readl(reg); in samsung_gpio_setcfg_2bit() 194 con &= ~(0x3 << shift); in samsung_gpio_setcfg_2bit() 195 con |= cfg; in samsung_gpio_setcfg_2bit() 196 __raw_writel(con, reg); in samsung_gpio_setcfg_2bit() 214 u32 con; in samsung_gpio_getcfg_2bit() local 216 con = __raw_readl(chip->base); in samsung_gpio_getcfg_2bit() 217 con >>= off * 2; in samsung_gpio_getcfg_2bit() 218 con &= 3; in samsung_gpio_getcfg_2bit() 221 return S3C_GPIO_SPECIAL(con); in samsung_gpio_getcfg_2bit() [all …]
|
/linux-4.4.14/tools/perf/scripts/python/ |
D | event_analyzing_sample.py | 35 con = sqlite3.connect("/dev/shm/perf.db") variable 36 con.isolation_level = None 45 con.execute(""" 52 con.execute(""" 94 con.execute("insert into gen_events values(?, ?, ?, ?)", 99 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", 108 con.close() 123 count = con.execute("select count(*) from gen_events") 132 …commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)") 139 …symbolq = con.execute("select symbol, count(symbol) from gen_events group by symbol order by -coun… [all …]
|
/linux-4.4.14/sound/soc/samsung/ |
D | s3c-i2s-v2.c | 50 static void dbg_showcon(const char *fn, u32 con) in dbg_showcon() argument 53 bit_set(con, S3C2412_IISCON_LRINDEX), in dbg_showcon() 54 bit_set(con, S3C2412_IISCON_TXFIFO_EMPTY), in dbg_showcon() 55 bit_set(con, S3C2412_IISCON_RXFIFO_EMPTY), in dbg_showcon() 56 bit_set(con, S3C2412_IISCON_TXFIFO_FULL), in dbg_showcon() 57 bit_set(con, S3C2412_IISCON_RXFIFO_FULL)); in dbg_showcon() 61 bit_set(con, S3C2412_IISCON_TXDMA_PAUSE), in dbg_showcon() 62 bit_set(con, S3C2412_IISCON_RXDMA_PAUSE), in dbg_showcon() 63 bit_set(con, S3C2412_IISCON_TXCH_PAUSE), in dbg_showcon() 64 bit_set(con, S3C2412_IISCON_RXCH_PAUSE)); in dbg_showcon() [all …]
|
D | spdif.c | 183 u32 con, clkcon, cstas; in spdif_hw_params() local 200 con = readl(regs + CON) & CON_MASK; in spdif_hw_params() 204 con &= ~CON_FIFO_TH_MASK; in spdif_hw_params() 205 con |= (0x7 << CON_FIFO_TH_SHIFT); in spdif_hw_params() 206 con |= CON_USERDATA_23RDBIT; in spdif_hw_params() 207 con |= CON_PCM_DATA; in spdif_hw_params() 209 con &= ~CON_PCM_MASK; in spdif_hw_params() 212 con |= CON_PCM_16BIT; in spdif_hw_params() 229 con &= ~CON_MCLKDIV_MASK; in spdif_hw_params() 232 con |= CON_MCLKDIV_256FS; in spdif_hw_params() [all …]
|
D | i2s.c | 374 u32 con = readl(addr + I2SCON); in i2s_txctrl() local 378 con |= CON_ACTIVE; in i2s_txctrl() 379 con &= ~CON_TXCH_PAUSE; in i2s_txctrl() 382 con |= CON_TXSDMA_ACTIVE; in i2s_txctrl() 383 con &= ~CON_TXSDMA_PAUSE; in i2s_txctrl() 385 con |= CON_TXDMA_ACTIVE; in i2s_txctrl() 386 con &= ~CON_TXDMA_PAUSE; in i2s_txctrl() 395 con |= CON_TXSDMA_PAUSE; in i2s_txctrl() 396 con &= ~CON_TXSDMA_ACTIVE; in i2s_txctrl() 398 con |= CON_TXDMA_PAUSE; in i2s_txctrl() [all …]
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | bttv-audio-hook.c | 57 unsigned int con; in gvbctv3pci_audio() local 74 con = 0x000; in gvbctv3pci_audio() 77 con = 0x300; in gvbctv3pci_audio() 80 con = 0x200; in gvbctv3pci_audio() 83 gpio_bits(0x300, con); in gvbctv3pci_audio() 88 unsigned int val, con; in gvbctv5pci_audio() local 97 con = 0x300; in gvbctv5pci_audio() 100 con = 0x100; in gvbctv5pci_audio() 103 con = 0x000; in gvbctv5pci_audio() 106 if (con != (val & 0x300)) { in gvbctv5pci_audio() [all …]
|
/linux-4.4.14/fs/cifs/ |
D | asn1.c | 168 unsigned int *cls, unsigned int *con, unsigned int *tag) in asn1_id_decode() argument 176 *con = (ch & 0x20) >> 5; in asn1_id_decode() 225 unsigned int *cls, unsigned int *con, unsigned int *tag) in asn1_header_decode() argument 230 if (!asn1_id_decode(ctx, cls, con, tag)) in asn1_header_decode() 237 if (*con == ASN1_PRI && !def) in asn1_header_decode() 501 unsigned int cls, con, tag, oidlen, rc; in decode_negTokenInit() local 508 if (asn1_header_decode(&ctx, &end, &cls, &con, &tag) == 0) { in decode_negTokenInit() 511 } else if ((cls != ASN1_APL) || (con != ASN1_CON) in decode_negTokenInit() 513 cifs_dbg(FYI, "cls = %d con = %d tag = %d\n", cls, con, tag); in decode_negTokenInit() 518 rc = asn1_header_decode(&ctx, &end, &cls, &con, &tag); in decode_negTokenInit() [all …]
|
/linux-4.4.14/include/linux/ceph/ |
D | messenger.h | 27 void (*dispatch) (struct ceph_connection *con, struct ceph_msg *m); 31 struct ceph_connection *con, 33 int (*verify_authorizer_reply) (struct ceph_connection *con, int len); 34 int (*invalidate_authorizer)(struct ceph_connection *con); 37 void (*fault) (struct ceph_connection *con); 41 void (*peer_reset) (struct ceph_connection *con); 43 struct ceph_msg * (*alloc_msg) (struct ceph_connection *con, 157 struct ceph_connection *con; member 268 extern void ceph_con_init(struct ceph_connection *con, void *private, 271 extern void ceph_con_open(struct ceph_connection *con, [all …]
|
D | mon_client.h | 72 struct ceph_connection con; member
|
/linux-4.4.14/net/ipv4/netfilter/ |
D | nf_nat_snmp_basic.c | 190 unsigned int *con, in asn1_id_decode() argument 199 *con = (ch & 0x20) >> 5; in asn1_id_decode() 249 unsigned int *con, in asn1_header_decode() argument 254 if (!asn1_id_decode(ctx, cls, con, tag)) in asn1_header_decode() 262 if (*con == ASN1_PRI && !def) in asn1_header_decode() 674 unsigned int cls, con, tag, len, idlen; in snmp_object_decode() local 684 if (!asn1_header_decode(ctx, &eoc, &cls, &con, &tag)) in snmp_object_decode() 687 if (cls != ASN1_UNI || con != ASN1_CON || tag != ASN1_SEQ) in snmp_object_decode() 690 if (!asn1_header_decode(ctx, &end, &cls, &con, &tag)) in snmp_object_decode() 693 if (cls != ASN1_UNI || con != ASN1_PRI || tag != ASN1_OJI) in snmp_object_decode() [all …]
|
/linux-4.4.14/drivers/video/fbdev/ |
D | pmag-aa-fb.c | 52 static int aafb_set_var(struct fb_var_screeninfo *var, int con, 226 static int aafb_get_fix(struct fb_fix_screeninfo *fix, int con, in aafb_get_fix() argument 245 static void aafb_set_disp(struct display *disp, int con, in aafb_set_disp() argument 251 aafb_set_var(&disp->var, con, &info->info); in aafb_set_disp() 257 aafb_get_fix(&fix, con, &info->info); in aafb_set_disp() 273 static int aafb_get_cmap(struct fb_cmap *cmap, int kspc, int con, in aafb_get_cmap() argument 283 static int aafb_set_cmap(struct fb_cmap *cmap, int kspc, int con, in aafb_set_cmap() argument 305 static int aafb_switch(int con, struct fb_info *info) in aafb_switch() argument 309 struct display *new = (con < 0) ? &ip->disp : (fb_display + con); in aafb_switch() 315 currcon = con; in aafb_switch() [all …]
|
D | sa1100fb.c | 482 sa1100fb_set_cmap(struct fb_cmap *cmap, int kspc, int con, 493 return gen_set_cmap(cmap, kspc, con, info);
|
/linux-4.4.14/drivers/thermal/samsung/ |
D | exynos_tmu.c | 362 static u32 get_con_reg(struct exynos_tmu_data *data, u32 con) in get_con_reg() argument 368 con |= (EXYNOS4412_MUX_ADDR_VALUE << EXYNOS4412_MUX_ADDR_SHIFT); in get_con_reg() 370 con &= ~(EXYNOS_TMU_REF_VOLTAGE_MASK << EXYNOS_TMU_REF_VOLTAGE_SHIFT); in get_con_reg() 371 con |= pdata->reference_voltage << EXYNOS_TMU_REF_VOLTAGE_SHIFT; in get_con_reg() 373 con &= ~(EXYNOS_TMU_BUF_SLOPE_SEL_MASK << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT); in get_con_reg() 374 con |= (pdata->gain << EXYNOS_TMU_BUF_SLOPE_SEL_SHIFT); in get_con_reg() 377 con &= ~(EXYNOS_TMU_TRIP_MODE_MASK << EXYNOS_TMU_TRIP_MODE_SHIFT); in get_con_reg() 378 con |= (pdata->noise_cancel_mode << EXYNOS_TMU_TRIP_MODE_SHIFT); in get_con_reg() 381 return con; in get_con_reg() 445 unsigned int status, trim_info, con, ctrl, rising_threshold; in exynos4412_tmu_initialize() local [all …]
|
/linux-4.4.14/drivers/gpu/drm/rcar-du/ |
D | rcar_du_hdmicon.c | 29 struct rcar_du_connector *con = to_rcar_connector(connector); in rcar_du_hdmi_connector_get_modes() local 30 struct drm_encoder *encoder = rcar_encoder_to_drm_encoder(con->encoder); in rcar_du_hdmi_connector_get_modes() 42 struct rcar_du_connector *con = to_rcar_connector(connector); in rcar_du_hdmi_connector_mode_valid() local 43 struct drm_encoder *encoder = rcar_encoder_to_drm_encoder(con->encoder); in rcar_du_hdmi_connector_mode_valid() 67 struct rcar_du_connector *con = to_rcar_connector(connector); in rcar_du_hdmi_connector_detect() local 68 struct drm_encoder *encoder = rcar_encoder_to_drm_encoder(con->encoder); in rcar_du_hdmi_connector_detect()
|
/linux-4.4.14/drivers/tty/serial/ |
D | earlycon.c | 37 .con = &early_con, 123 early_console_dev.con->data = &early_console_dev; in register_earlycon() 127 if (!early_console_dev.con->write) in register_earlycon() 130 register_console(early_console_dev.con); in register_earlycon() 212 early_console_dev.con->data = &early_console_dev; in of_setup_earlycon() 216 if (!early_console_dev.con->write) in of_setup_earlycon() 220 register_console(early_console_dev.con); in of_setup_earlycon()
|
D | suncore.c | 54 int sunserial_console_match(struct console *con, struct device_node *dp, in sunserial_console_match() argument 57 if (!con) in sunserial_console_match() 60 drv->cons = con; in sunserial_console_match() 77 con->index = line; in sunserial_console_match() 78 add_preferred_console(con->name, line, NULL); in sunserial_console_match() 84 void sunserial_console_termios(struct console *con, struct device_node *uart_dp) in sunserial_console_termios() argument 165 con->cflag = cflag; in sunserial_console_termios()
|
D | earlycon-arm-semihost.c | 50 static void smh_write(struct console *con, const char *s, unsigned n) in smh_write() argument 52 struct earlycon_device *dev = con->data; in smh_write() 58 device->con->write = smh_write; in early_smh_setup()
|
D | lantiq.c | 395 unsigned int con = 0; in lqasc_set_termios() local 403 con = ASCCON_M_7ASYNC; in lqasc_set_termios() 411 con = ASCCON_M_8ASYNC; in lqasc_set_termios() 418 con |= ASCCON_STP; in lqasc_set_termios() 422 con &= ~ASCCON_ODD; in lqasc_set_termios() 424 con |= ASCCON_ODD; in lqasc_set_termios() 448 con |= ASCCON_FEN | ASCCON_TOEN | ASCCON_ROEN; in lqasc_set_termios() 453 ltq_w32_mask(0, con, port->membase + LTQ_ASC_CON); in lqasc_set_termios()
|
D | vr41xx_siu.c | 769 static void siu_console_write(struct console *con, const char *s, unsigned count) in siu_console_write() argument 774 port = &siu_uart_ports[con->index]; in siu_console_write() 785 static int __init siu_console_setup(struct console *con, char *options) in siu_console_setup() argument 793 if (con->index >= SIU_PORTS_MAX) in siu_console_setup() 794 con->index = 0; in siu_console_setup() 796 port = &siu_uart_ports[con->index]; in siu_console_setup() 809 return uart_set_options(port, con, baud, parity, bits, flow); in siu_console_setup()
|
D | sunsab.c | 861 static void sunsab_console_write(struct console *con, const char *s, unsigned n) in sunsab_console_write() argument 863 struct uart_sunsab_port *up = &sunsab_ports[con->index]; in sunsab_console_write() 879 static int sunsab_console_setup(struct console *con, char *options) in sunsab_console_setup() argument 881 struct uart_sunsab_port *up = &sunsab_ports[con->index]; in sunsab_console_setup() 895 (sunsab_reg.minor - 64) + con->index); in sunsab_console_setup() 897 sunserial_console_termios(con, up->port.dev->of_node); in sunsab_console_setup() 899 switch (con->cflag & CBAUD) { in sunsab_console_setup() 940 sunsab_convert_to_sab(up, con->cflag, 0, baud, quot); in sunsab_console_setup()
|
D | sunzilog.c | 1202 sunzilog_console_write(struct console *con, const char *s, unsigned int count) in sunzilog_console_write() argument 1204 struct uart_sunzilog_port *up = &sunzilog_port_table[con->index]; in sunzilog_console_write() 1220 static int __init sunzilog_console_setup(struct console *con, char *options) in sunzilog_console_setup() argument 1222 struct uart_sunzilog_port *up = &sunzilog_port_table[con->index]; in sunzilog_console_setup() 1230 (sunzilog_reg.minor - 64) + con->index, con->index); in sunzilog_console_setup() 1233 sunserial_console_termios(con, up->port.dev->of_node); in sunzilog_console_setup() 1238 switch (con->cflag & CBAUD) { in sunzilog_console_setup() 1255 sunzilog_convert_to_zs(up, con->cflag, 0, brg); in sunzilog_console_setup()
|
D | arc_uart.c | 552 static __init void arc_early_serial_write(struct console *con, const char *s, in arc_early_serial_write() argument 555 struct earlycon_device *dev = con->data; in arc_early_serial_write() 576 dev->con->write = arc_early_serial_write; in arc_early_console_setup()
|
D | ip22zilog.c | 1019 ip22zilog_console_write(struct console *con, const char *s, unsigned int count) in ip22zilog_console_write() argument 1021 struct uart_ip22zilog_port *up = &ip22zilog_port_table[con->index]; in ip22zilog_console_write() 1030 static int __init ip22zilog_console_setup(struct console *con, char *options) in ip22zilog_console_setup() argument 1032 struct uart_ip22zilog_port *up = &ip22zilog_port_table[con->index]; in ip22zilog_console_setup() 1040 printk(KERN_INFO "Console: ttyS%d (IP22-Zilog)\n", con->index); in ip22zilog_console_setup() 1052 return uart_set_options(&up->port, con, baud, parity, bits, flow); in ip22zilog_console_setup()
|
D | sprd_serial.c | 609 static void sprd_early_write(struct console *con, const char *s, in sprd_early_write() argument 612 struct earlycon_device *dev = con->data; in sprd_early_write() 624 device->con->write = sprd_early_write; in sprd_early_console_setup()
|
D | bcm63xx_uart.c | 771 static void bcm_early_write(struct console *con, const char *s, unsigned n) in bcm_early_write() argument 773 struct earlycon_device *dev = con->data; in bcm_early_write() 785 device->con->write = bcm_early_write; in bcm_early_console_setup()
|
D | sunhv.c | 428 static void sunhv_console_write_paged(struct console *con, const char *s, unsigned n) in sunhv_console_write_paged() argument 483 static void sunhv_console_write_bychar(struct console *con, const char *s, unsigned n) in sunhv_console_write_bychar() argument
|
D | msm_serial.c | 1465 msm_serial_early_write(struct console *con, const char *s, unsigned n) in msm_serial_early_write() argument 1467 struct earlycon_device *dev = con->data; in msm_serial_early_write() 1478 device->con->write = msm_serial_early_write; in msm_serial_early_console_setup() 1486 msm_serial_early_write_dm(struct console *con, const char *s, unsigned n) in msm_serial_early_write_dm() argument 1488 struct earlycon_device *dev = con->data; in msm_serial_early_write_dm() 1500 device->con->write = msm_serial_early_write_dm; in msm_serial_early_console_setup_dm()
|
D | fsl_lpuart.c | 1749 static void lpuart_early_write(struct console *con, const char *s, unsigned n) in lpuart_early_write() argument 1751 struct earlycon_device *dev = con->data; in lpuart_early_write() 1756 static void lpuart32_early_write(struct console *con, const char *s, unsigned n) in lpuart32_early_write() argument 1758 struct earlycon_device *dev = con->data; in lpuart32_early_write() 1769 device->con->write = lpuart_early_write; in lpuart_early_console_setup() 1779 device->con->write = lpuart32_early_write; in lpuart32_early_console_setup()
|
D | xilinx_uartps.c | 1078 static void __init cdns_early_write(struct console *con, const char *s, in cdns_early_write() argument 1081 struct earlycon_device *dev = con->data; in cdns_early_write() 1092 device->con->write = cdns_early_write; in cdns_early_console_setup()
|
D | pmac_zilog.c | 1814 static void pmz_console_write(struct console *con, const char *s, unsigned int count); 1971 static void pmz_console_write(struct console *con, const char *s, unsigned int count) in pmz_console_write() argument 1973 struct uart_pmac_port *uap = &pmz_ports[con->index]; in pmz_console_write()
|
D | samsung.c | 2424 static void samsung_early_write(struct console *con, const char *s, unsigned n) in samsung_early_write() argument 2426 struct earlycon_device *dev = con->data; in samsung_early_write() 2437 device->con->write = samsung_early_write; in samsung_early_console_setup()
|
D | imx.c | 1815 static void imx_console_early_write(struct console *con, const char *s, in imx_console_early_write() argument 1818 struct earlycon_device *dev = con->data; in imx_console_early_write() 1829 dev->con->write = imx_console_early_write; in imx_console_early_setup()
|
D | amba-pl011.c | 2214 static void pl011_early_write(struct console *con, const char *s, unsigned n) in pl011_early_write() argument 2216 struct earlycon_device *dev = con->data; in pl011_early_write() 2227 device->con->write = pl011_early_write; in pl011_early_console_setup()
|
/linux-4.4.14/drivers/rtc/ |
D | rtc-s3c.c | 383 unsigned int con, tmp; in s3c24xx_rtc_enable() local 385 con = readw(info->base + S3C2410_RTCCON); in s3c24xx_rtc_enable() 387 if ((con & S3C2410_RTCCON_RTCEN) == 0) { in s3c24xx_rtc_enable() 395 if (con & S3C2410_RTCCON_CNTSEL) { in s3c24xx_rtc_enable() 403 if (con & S3C2410_RTCCON_CLKRST) { in s3c24xx_rtc_enable() 414 unsigned int con; in s3c24xx_rtc_disable() local 416 con = readw(info->base + S3C2410_RTCCON); in s3c24xx_rtc_disable() 417 con &= ~S3C2410_RTCCON_RTCEN; in s3c24xx_rtc_disable() 418 writew(con, info->base + S3C2410_RTCCON); in s3c24xx_rtc_disable() 420 con = readb(info->base + S3C2410_TICNT); in s3c24xx_rtc_disable() [all …]
|
/linux-4.4.14/arch/mips/sgi-ip32/ |
D | ip32-setup.c | 91 char* con = ArcGetEnvironmentVariable("console"); in plat_mem_setup() local 92 if (con && *con == 'd') { in plat_mem_setup() 97 add_preferred_console("ttyS", *(con + 1) == '2' ? 1 : 0, in plat_mem_setup()
|
/linux-4.4.14/drivers/block/paride/ |
D | pseudo.h | 75 void (*con)(void); in ps_tq_int() local 80 con = ps_continuation; in ps_tq_int() 83 if (!con) { in ps_tq_int() 90 con(); in ps_tq_int()
|
D | Transition-notes | 38 return, call of con() or scheduling ps_tq. 121 Corollary 4: in ps_tq_int() uses of con can be replaced with uses of
|
/linux-4.4.14/arch/arm/plat-samsung/ |
D | adc.c | 89 unsigned con = readl(adc->regs + S3C2410_ADCCON); in s3c_adc_convert() local 91 con |= S3C2410_ADCCON_ENABLE_START; in s3c_adc_convert() 92 writel(con, adc->regs + S3C2410_ADCCON); in s3c_adc_convert() 98 unsigned con = readl(adc->regs + S3C2410_ADCCON); in s3c_adc_select() local 104 con &= ~S3C2410_ADCCON_MUXMASK; in s3c_adc_select() 105 con &= ~S3C2410_ADCCON_STDBM; in s3c_adc_select() 106 con &= ~S3C2410_ADCCON_STARTMASK; in s3c_adc_select() 115 con |= S3C2410_ADCCON_SELMUX(client->channel); in s3c_adc_select() 118 writel(con, adc->regs + S3C2410_ADCCON); in s3c_adc_select() 429 u32 con; in s3c_adc_suspend() local [all …]
|
D | pm-gpio.c | 80 static inline int is_sfn(unsigned long con) in is_sfn() argument 82 return con >= 2; in is_sfn() 87 static inline int is_in(unsigned long con) in is_in() argument 89 return con == 0; in is_in() 94 static inline int is_out(unsigned long con) in is_out() argument 96 return con == 1; in is_out() 249 void __iomem *con = chip->base + (index * 4); in samsung_gpio_pm_4bit_con() local 250 u32 old_gpcon = __raw_readl(con); in samsung_gpio_pm_4bit_con() 259 __raw_writel(gpcon, con); in samsung_gpio_pm_4bit_con()
|
/linux-4.4.14/drivers/gpu/drm/fsl-dcu/ |
D | fsl_dcu_drm_output.h | 22 to_fsl_dcu_connector(struct drm_connector *con) in to_fsl_dcu_connector() argument 24 return con ? container_of(con, struct fsl_dcu_drm_connector, base) in to_fsl_dcu_connector()
|
/linux-4.4.14/include/linux/ |
D | console.h | 138 #define for_each_console(con) \ argument 139 for (con = console_drivers; con != NULL; con = con->next)
|
D | serial_core.h | 336 struct console *con; member
|
/linux-4.4.14/drivers/tty/vt/ |
D | vt.c | 114 const struct consw *con; member 2980 if (con_driver->con == NULL) { in con_init() 2981 con_driver->con = conswitchp; in con_init() 3124 if (con_driver->con == csw) { in do_bind_con_driver() 3226 if (con_driver->con == csw && in do_unbind_con_driver() 3242 if (con_back->con && con_back->con != csw) { in do_unbind_con_driver() 3243 defcsw = con_back->con; in do_unbind_con_driver() 3289 static int vt_bind(struct con_driver *con) in vt_bind() argument 3294 if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE)) in vt_bind() 3297 csw = con->con; in vt_bind() [all …]
|
/linux-4.4.14/arch/arm/mach-s3c64xx/ |
D | irq-pm.c | 54 u32 con; member 79 grp->con = __raw_readl(S3C64XX_EINT12CON + (i * 4)); in s3c64xx_irq_pm_suspend() 100 __raw_writel(grp->con, S3C64XX_EINT12CON + (i * 4)); in s3c64xx_irq_pm_resume()
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | f_uac1.c | 20 static int generic_set_cmd(struct usb_audio_control *con, u8 cmd, int value); 21 static int generic_get_cmd(struct usb_audio_control *con, u8 cmd); 394 struct usb_audio_control *con; in audio_set_intf_req() local 401 list_for_each_entry(con, &cs->control, list) { in audio_set_intf_req() 402 if (con->type == con_sel) { in audio_set_intf_req() 403 audio->set_con = con; in audio_set_intf_req() 431 struct usb_audio_control *con; in audio_get_intf_req() local 438 list_for_each_entry(con, &cs->control, list) { in audio_get_intf_req() 439 if (con->type == con_sel && con->get) { in audio_get_intf_req() 440 value = con->get(con, cmd); in audio_get_intf_req() [all …]
|
/linux-4.4.14/arch/x86/kernel/ |
D | early_printk.c | 30 static void early_vga_write(struct console *con, const char *str, unsigned n) in early_vga_write() argument 121 static void early_serial_write(struct console *con, const char *s, unsigned n) in early_serial_write() argument 319 static void early_console_register(struct console *con, int keep_early) in early_console_register() argument 321 if (con->index != -1) { in early_console_register() 323 con->name); in early_console_register() 326 early_console = con; in early_console_register()
|
/linux-4.4.14/include/linux/usb/ |
D | audio.h | 31 int (*set)(struct usb_audio_control *con, u8 cmd, int value); 32 int (*get)(struct usb_audio_control *con, u8 cmd);
|
/linux-4.4.14/arch/m68k/emu/ |
D | nfcon.c | 43 static void nfcon_write(struct console *con, const char *str, in nfcon_write() argument 49 static struct tty_driver *nfcon_device(struct console *con, int *index) in nfcon_device() argument 52 return (con->flags & CON_ENABLED) ? nfcon_tty_driver : NULL; in nfcon_device()
|
/linux-4.4.14/arch/frv/include/asm/ |
D | uaccess.h | 160 #define __put_user_asm(err,x,ptr,bwl,con) \ argument 165 : "m" (*__ptr(ptr)), con (x) \ 249 #define __get_user_asm(err,x,ptr,bwl,con) \ argument 252 : con(x) \
|
/linux-4.4.14/drivers/i2c/busses/ |
D | i2c-rk3x.c | 208 u32 con; in rk3x_i2c_prepare_read() local 210 con = i2c_readl(i2c, REG_CON); in rk3x_i2c_prepare_read() 218 con &= ~REG_CON_LASTACK; in rk3x_i2c_prepare_read() 220 con |= REG_CON_LASTACK; in rk3x_i2c_prepare_read() 225 con &= ~REG_CON_MOD_MASK; in rk3x_i2c_prepare_read() 226 con |= REG_CON_MOD(REG_CON_MOD_RX); in rk3x_i2c_prepare_read() 229 i2c_writel(i2c, con, REG_CON); in rk3x_i2c_prepare_read() 353 unsigned int con; in rk3x_i2c_handle_stop() local 366 con = i2c_readl(i2c, REG_CON); in rk3x_i2c_handle_stop() 367 con &= ~REG_CON_STOP; in rk3x_i2c_handle_stop() [all …]
|
D | i2c-omap.c | 682 u16 con = omap_i2c_read_reg(omap, OMAP_I2C_CON_REG); in omap_i2c_xfer_msg() local 683 while (con & OMAP_I2C_CON_STT) { in omap_i2c_xfer_msg() 684 con = omap_i2c_read_reg(omap, OMAP_I2C_CON_REG); in omap_i2c_xfer_msg()
|
/linux-4.4.14/crypto/ |
D | algif_aead.c | 176 struct af_alg_control con = {}; in aead_sendmsg() local 183 err = af_alg_cmsg_send(msg, &con); in aead_sendmsg() 188 switch (con.op) { in aead_sendmsg() 199 if (con.iv && con.iv->ivlen != ivsize) in aead_sendmsg() 209 if (con.iv) in aead_sendmsg() 210 memcpy(ctx->iv, con.iv->iv, ivsize); in aead_sendmsg() 212 ctx->aead_assoclen = con.aead_assoclen; in aead_sendmsg()
|
D | af_alg.c | 441 int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con) in af_alg_cmsg_send() argument 453 if (cmsg->cmsg_len < CMSG_LEN(sizeof(*con->iv))) in af_alg_cmsg_send() 455 con->iv = (void *)CMSG_DATA(cmsg); in af_alg_cmsg_send() 456 if (cmsg->cmsg_len < CMSG_LEN(con->iv->ivlen + in af_alg_cmsg_send() 457 sizeof(*con->iv))) in af_alg_cmsg_send() 464 con->op = *(u32 *)CMSG_DATA(cmsg); in af_alg_cmsg_send() 470 con->aead_assoclen = *(u32 *)CMSG_DATA(cmsg); in af_alg_cmsg_send()
|
D | algif_skcipher.c | 305 struct af_alg_control con = {}; in skcipher_sendmsg() local 313 err = af_alg_cmsg_send(msg, &con); in skcipher_sendmsg() 318 switch (con.op) { in skcipher_sendmsg() 329 if (con.iv && con.iv->ivlen != ivsize) in skcipher_sendmsg() 341 if (con.iv) in skcipher_sendmsg() 342 memcpy(ctx->iv, con.iv->iv, ivsize); in skcipher_sendmsg()
|
/linux-4.4.14/drivers/pinctrl/samsung/ |
D | pinctrl-exynos.c | 126 unsigned int con, trig_type; in exynos_irq_set_type() local 155 con = readl(d->virt_base + reg_con); in exynos_irq_set_type() 156 con &= ~(EXYNOS_EINT_CON_MASK << shift); in exynos_irq_set_type() 157 con |= trig_type << shift; in exynos_irq_set_type() 158 writel(con, d->virt_base + reg_con); in exynos_irq_set_type() 174 unsigned int con; in exynos_irq_request_resources() local 190 con = readl(d->virt_base + reg_con); in exynos_irq_request_resources() 191 con &= ~(mask << shift); in exynos_irq_request_resources() 192 con |= EXYNOS_EINT_FUNC << shift; in exynos_irq_request_resources() 193 writel(con, d->virt_base + reg_con); in exynos_irq_request_resources() [all …]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_connector.h | 86 struct drm_connector *con) in nouveau_connector() argument 88 return container_of(con, struct nouveau_connector, base); in nouveau_connector()
|
/linux-4.4.14/drivers/hwtracing/stm/ |
D | console.c | 39 stm_console_write(struct console *con, const char *buf, unsigned len) in stm_console_write() argument 41 struct stm_console *sc = container_of(con, struct stm_console, console); in stm_console_write()
|
/linux-4.4.14/drivers/clk/ti/ |
D | clock.h | 55 #define CLK(dev, con, ck) \ argument 59 .con_id = con, \ 175 #define DT_CLK(dev, con, name) \ argument 179 .con_id = con, \
|
/linux-4.4.14/arch/nios2/kernel/ |
D | early_printk.c | 37 static void early_console_write(struct console *con, const char *s, unsigned n) in early_console_write() argument 73 static void early_console_write(struct console *con, const char *s, unsigned n) in early_console_write() argument
|
/linux-4.4.14/arch/x86/platform/efi/ |
D | early_printk.c | 127 early_efi_write(struct console *con, const char *str, unsigned int num) in early_efi_write() argument 199 static __init int early_efi_setup(struct console *con, char *options) in early_efi_setup() argument 225 if (!(con->flags & CON_BOOT)) in early_efi_setup()
|
/linux-4.4.14/scripts/ |
D | recordmcount.pl | 563 foreach my $con (@converts) { 564 $globallist .= " --globalize-symbol $con"; 565 $locallist .= " --localize-symbol $con";
|
/linux-4.4.14/drivers/iio/adc/ |
D | exynos_adc.c | 204 u32 con; in exynos_adc_v1_exit_hw() local 209 con = readl(ADC_V1_CON(info->regs)); in exynos_adc_v1_exit_hw() 210 con |= ADC_V1_CON_STANDBY; in exynos_adc_v1_exit_hw() 211 writel(con, ADC_V1_CON(info->regs)); in exynos_adc_v1_exit_hw() 339 u32 con; in exynos_adc_v2_exit_hw() local 344 con = readl(ADC_V2_CON1(info->regs)); in exynos_adc_v2_exit_hw() 345 con &= ~ADC_CON_EN_START; in exynos_adc_v2_exit_hw() 346 writel(con, ADC_V2_CON1(info->regs)); in exynos_adc_v2_exit_hw()
|
/linux-4.4.14/arch/arm/mach-davinci/ |
D | clock.h | 120 #define CLK(dev, con, ck) \ argument 123 .con_id = con, \
|
/linux-4.4.14/arch/c6x/include/asm/ |
D | clock.h | 124 #define CLK(dev, con, ck) \ argument 127 .con_id = con, \
|
/linux-4.4.14/Documentation/console/ |
D | console.txt | 118 2. All resources allocated during con->con_init() must be released in 119 con->con_deinit(). 121 3. All resources allocated in con->con_startup() must be released when the 123 does not have a complementary call to con->con_startup() so it's up to the 125 con_is_bound() in con->con_deinit() will help. If the call returned 127 ensured because con->con_startup() can be called again when a request to
|
/linux-4.4.14/kernel/printk/ |
D | printk.c | 1437 struct console *con; in call_console_drivers() local 1446 for_each_console(con) { in call_console_drivers() 1447 if (exclusive_console && con != exclusive_console) in call_console_drivers() 1449 if (!(con->flags & CON_ENABLED)) in call_console_drivers() 1451 if (!con->write) in call_console_drivers() 1454 !(con->flags & CON_ANYTIME)) in call_console_drivers() 1456 if (con->flags & CON_EXTENDED) in call_console_drivers() 1457 con->write(con, ext_text, ext_len); in call_console_drivers() 1459 con->write(con, text, len); in call_console_drivers() 1491 struct console *con; in have_callable_console() local [all …]
|
/linux-4.4.14/kernel/events/ |
D | uprobes.c | 515 struct uprobe_consumer **con; in consumer_del() local 519 for (con = &uprobe->consumers; *con; con = &(*con)->next) { in consumer_del() 520 if (*con == uc) { in consumer_del() 521 *con = uc->next; in consumer_del() 921 struct uprobe_consumer *con; in uprobe_apply() local 929 for (con = uprobe->consumers; con && con != uc ; con = con->next) in uprobe_apply() 931 if (con) in uprobe_apply()
|
/linux-4.4.14/drivers/mmc/host/ |
D | omap_hsmmc.c | 195 u32 con; member 682 u32 con; in omap_hsmmc_set_bus_width() local 684 con = OMAP_HSMMC_READ(host->base, CON); in omap_hsmmc_set_bus_width() 687 con |= DDR; /* configure in DDR mode */ in omap_hsmmc_set_bus_width() 689 con &= ~DDR; in omap_hsmmc_set_bus_width() 692 OMAP_HSMMC_WRITE(host->base, CON, con | DW8); in omap_hsmmc_set_bus_width() 695 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8); in omap_hsmmc_set_bus_width() 700 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8); in omap_hsmmc_set_bus_width() 710 u32 con; in omap_hsmmc_set_bus_mode() local 712 con = OMAP_HSMMC_READ(host->base, CON); in omap_hsmmc_set_bus_mode() [all …]
|
D | s3cmci.c | 153 u32 con, pre, cmdarg, cmdcon, cmdsta, r0, r1, r2, r3, timer, bsize; in dbg_dumpregs() local 156 con = readl(host->base + S3C2410_SDICON); in dbg_dumpregs() 174 prefix, con, pre, timer); in dbg_dumpregs() 1293 u32 con = readl(host->base + S3C2410_SDICON); in s3cmci_reset() local 1295 con |= S3C2440_SDICON_SDRESET; in s3cmci_reset() 1296 writel(con, host->base + S3C2410_SDICON); in s3cmci_reset() 1318 u32 con; in s3cmci_enable_sdio_irq() local 1322 con = readl(host->base + S3C2410_SDICON); in s3cmci_enable_sdio_irq() 1329 con |= S3C2410_SDICON_SDIOIRQ; in s3cmci_enable_sdio_irq() 1338 con &= ~S3C2410_SDICON_SDIOIRQ; in s3cmci_enable_sdio_irq() [all …]
|
/linux-4.4.14/arch/um/kernel/ |
D | early_printk.c | 14 static void early_console_write(struct console *con, const char *s, unsigned int n) in early_console_write() argument
|
/linux-4.4.14/arch/mips/kernel/ |
D | early_printk.c | 19 static void early_console_write(struct console *con, const char *s, unsigned n) in early_console_write() argument
|
/linux-4.4.14/arch/arm/kernel/ |
D | early_printk.c | 27 static void early_console_write(struct console *con, const char *s, unsigned n) in early_console_write() argument
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_kms.c | 1339 struct drm_connector *con; in vmw_du_update_layout() local 1355 list_for_each_entry(con, &dev->mode_config.connector_list, head) { in vmw_du_update_layout() 1356 du = vmw_connector_to_du(con); in vmw_du_update_layout() 1368 con->status = vmw_du_connector_detect(con, true); in vmw_du_update_layout() 2069 struct drm_connector *con; in vmw_kms_fbdev_init_data() local 2074 list_for_each_entry(con, &dev_priv->dev->mode_config.connector_list, in vmw_kms_fbdev_init_data() 2087 if (list_empty(&con->modes)) in vmw_kms_fbdev_init_data() 2088 (void) vmw_du_connector_fill_modes(con, max_width, max_height); in vmw_kms_fbdev_init_data() 2090 if (list_empty(&con->modes)) { in vmw_kms_fbdev_init_data() 2095 du = vmw_connector_to_du(con); in vmw_kms_fbdev_init_data() [all …]
|
D | vmwgfx_fb.c | 70 struct drm_connector *con; member 437 set.connectors = &par->con; in vmw_fb_kms_detach() 598 set.connectors = &par->con; in vmw_fb_set_par() 675 par->max_height, &par->con, in vmw_fb_init()
|
/linux-4.4.14/arch/blackfin/include/asm/ |
D | early_printk.h | 21 extern void early_shadow_write(struct console *con, const char *s,
|
/linux-4.4.14/arch/unicore32/kernel/ |
D | early_printk.c | 19 static void early_ocd_write(struct console *con, const char *s, unsigned n) in early_ocd_write() argument
|
/linux-4.4.14/arch/mips/dec/prom/ |
D | console.c | 18 static void __init prom_console_write(struct console *con, const char *s, in prom_console_write() argument
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | clock.h | 29 #define CLK(dev, con, ck, cp) \ argument 34 .con_id = con, \
|
/linux-4.4.14/drivers/gpu/drm/imx/ |
D | dw_hdmi-imx.c | 152 static enum drm_mode_status imx6q_hdmi_mode_valid(struct drm_connector *con, in imx6q_hdmi_mode_valid() argument 164 static enum drm_mode_status imx6dl_hdmi_mode_valid(struct drm_connector *con, in imx6dl_hdmi_mode_valid() argument
|
/linux-4.4.14/arch/tile/kernel/ |
D | early_printk.c | 24 static void early_hv_write(struct console *con, const char *s, unsigned n) in early_hv_write() argument
|
/linux-4.4.14/arch/mips/lantiq/xway/ |
D | gptu.c | 122 static inline void clkdev_add_gptu(struct device *dev, const char *con, in clkdev_add_gptu() argument 128 clk->cl.con_id = con; in clkdev_add_gptu()
|
D | sysctrl.c | 329 static void clkdev_add_pmu(const char *dev, const char *con, bool deactivate, in clkdev_add_pmu() argument 335 clk->cl.con_id = con; in clkdev_add_pmu() 352 static void clkdev_add_cgu(const char *dev, const char *con, in clkdev_add_cgu() argument 358 clk->cl.con_id = con; in clkdev_add_cgu()
|
/linux-4.4.14/Documentation/locking/ |
D | lockstat.txt | 45 con-bounces - number of lock contention that involved x-cpu data 87 03 class name con-bounces contentions waittime-min waittime-… 127 con-bounces point is missing in the statistics.
|
/linux-4.4.14/arch/blackfin/kernel/ |
D | shadow_console.c | 25 __init void early_shadow_write(struct console *con, const char *s, in early_shadow_write() argument
|
/linux-4.4.14/tools/firewire/ |
D | nosy-dump.c | 915 poptContext con; in main() local 921 con = poptGetContext(NULL, argc, argv, options, 0); in main() 922 retval = poptGetNextOpt(con); in main() 924 poptPrintUsage(con, stdout, 0); in main() 1032 poptFreeContext(con); in main()
|
/linux-4.4.14/security/selinux/ |
D | selinuxfs.c | 912 char *con = NULL, *user = NULL, *ptr; in sel_write_user() local 924 con = kzalloc(size + 1, GFP_KERNEL); in sel_write_user() 925 if (!con) in sel_write_user() 934 if (sscanf(buf, "%s %s", con, user) != 2) in sel_write_user() 937 length = security_context_str_to_sid(con, &sid, GFP_KERNEL); in sel_write_user() 966 kfree(con); in sel_write_user() 1467 char *con; in sel_read_initcon() local 1472 ret = security_sid_to_context(sid, &con, &len); in sel_read_initcon() 1476 ret = simple_read_from_buffer(buf, count, ppos, con, len); in sel_read_initcon() 1477 kfree(con); in sel_read_initcon()
|
/linux-4.4.14/include/crypto/ |
D | if_alg.h | 82 int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con);
|
/linux-4.4.14/fs/ceph/ |
D | mds_client.c | 3790 static struct ceph_connection *con_get(struct ceph_connection *con) in con_get() argument 3792 struct ceph_mds_session *s = con->private; in con_get() 3796 return con; in con_get() 3802 static void con_put(struct ceph_connection *con) in con_put() argument 3804 struct ceph_mds_session *s = con->private; in con_put() 3814 static void peer_reset(struct ceph_connection *con) in peer_reset() argument 3816 struct ceph_mds_session *s = con->private; in peer_reset() 3823 static void dispatch(struct ceph_connection *con, struct ceph_msg *msg) in dispatch() argument 3825 struct ceph_mds_session *s = con->private; in dispatch() 3875 static struct ceph_auth_handshake *get_authorizer(struct ceph_connection *con, in get_authorizer() argument [all …]
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | udbg.c | 145 static void udbg_console_write(struct console *con, const char *s, in udbg_console_write() argument
|
/linux-4.4.14/kernel/trace/ |
D | trace_uprobe.c | 78 static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs); 79 static int uretprobe_dispatcher(struct uprobe_consumer *con, 1216 static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs) in uprobe_dispatcher() argument 1225 tu = container_of(con, struct trace_uprobe, consumer); in uprobe_dispatcher() 1253 static int uretprobe_dispatcher(struct uprobe_consumer *con, in uretprobe_dispatcher() argument 1261 tu = container_of(con, struct trace_uprobe, consumer); in uretprobe_dispatcher()
|
/linux-4.4.14/drivers/tty/serial/8250/ |
D | 8250_early.c | 152 device->con->write = early_serial8250_write; in early_serial8250_setup()
|
D | 8250_ingenic.c | 127 dev->con->write = ingenic_early_console_write; in ingenic_early_console_setup()
|
/linux-4.4.14/arch/cris/arch-v32/kernel/ |
D | debugport.c | 196 early_console_write(struct console *con, const char *s, unsigned n) in early_console_write() argument
|
/linux-4.4.14/arch/arm/mach-ep93xx/ |
D | clock.c | 202 #define INIT_CK(dev,con,ck) \ argument 203 { .dev_id = dev, .con_id = con, .clk = ck }
|
/linux-4.4.14/arch/sparc/kernel/ |
D | setup_32.c | 112 prom_console_write(struct console *con, const char *s, unsigned n) in prom_console_write() argument
|
D | btext.c | 296 static void btext_console_write(struct console *con, const char *s, in btext_console_write() argument
|
D | setup_64.c | 80 prom_console_write(struct console *con, const char *s, unsigned n) in prom_console_write() argument
|
/linux-4.4.14/tools/power/cpupower/po/ |
D | it.po | 505 "Per le opzioni segnalate con *, omettere l'opzione -c o --cpu è come " 507 "con il valore 0\n" 515 "L'opzione specificata a questo programma non può essere combinata con --cpu\n" 597 "Per le opzioni segnalate con *, omettere l'opzione -c o --cpu è come " 599 "con il valore 0\n" 613 "2. l'opzione -f FREQ, --freq FREQ non può essere specificata con altre " 655 "l'opzione -f/--freq non può venire combinata con i parametri\n"
|
/linux-4.4.14/drivers/net/ |
D | netconsole.c | 831 static void write_ext_msg(struct console *con, const char *msg, in write_ext_msg() argument 847 static void write_msg(struct console *con, const char *msg, unsigned int len) in write_msg() argument
|
/linux-4.4.14/fs/pstore/ |
D | platform.c | 378 static void pstore_console_write(struct console *con, const char *s, unsigned c) in pstore_console_write() argument
|
/linux-4.4.14/drivers/s390/char/ |
D | sclp_vt220.c | 842 sclp_vt220_con_write(struct console *con, const char *buf, unsigned int count) in sclp_vt220_con_write() argument
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | gdb-stub.c | 736 void gdbstub_console_write(struct console *con, const char *p, unsigned n) in gdbstub_console_write() argument 769 static kdev_t gdbstub_console_dev(struct console *con) in gdbstub_console_dev() argument
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | exynos3250-pinctrl.dtsi | 27 samsung,pin-con-pdn = <PIN_PDN_ ##_mode>; \
|
D | exynos4x12-pinctrl.dtsi | 27 samsung,pin-con-pdn = <PIN_PDN_ ##_mode>; \
|
/linux-4.4.14/drivers/video/fbdev/sis/ |
D | sis_main.h | 675 static int sisfb_get_fix(struct fb_fix_screeninfo *fix, int con,
|
D | sis_main.c | 1828 sisfb_get_fix(struct fb_fix_screeninfo *fix, int con, struct fb_info *info) in sisfb_get_fix() argument
|
/linux-4.4.14/Documentation/networking/ |
D | batman-adv.txt | 115 face. It needs an IP address which can be either statically con-
|
/linux-4.4.14/drivers/scsi/aic94xx/ |
D | aic94xx_seq.c | 464 u8 con = asd_read_reg_byte(asd_ha, CCONEXIST); in asd_init_cseq_mip() local 465 u8 val = hweight8(con); in asd_init_cseq_mip()
|
/linux-4.4.14/sound/soc/ |
D | soc-dapm.c | 1080 int con = 0; in is_connected_ep() local 1109 con += fn(path->node[dir], list); in is_connected_ep() 1114 widget->endpoints[dir] = con; in is_connected_ep() 1116 return con; in is_connected_ep()
|
/linux-4.4.14/Documentation/filesystems/ |
D | spufs.txt | 312 gets filled when spu_run returns. It can be one of the following con- 480 context or the user specific limit for the number of SPU con-
|
/linux-4.4.14/drivers/usb/early/ |
D | ehci-dbgp.c | 914 static void early_dbgp_write(struct console *con, const char *str, u32 n) in early_dbgp_write() argument
|
/linux-4.4.14/drivers/staging/xgifb/ |
D | XGI_main_26.c | 1176 static int XGIfb_get_fix(struct fb_fix_screeninfo *fix, int con, in XGIfb_get_fix() argument
|
/linux-4.4.14/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 604 Devices are specified with "con" or "ssl" (console or serial line, 609 Using just "con" or "ssl" describes all of the consoles or serial 614 A specific device name will override a less general "con=" or "ssl=". 737 con0=fd:0,fd:1 con=pts 798 con=pty con0=fd:0,fd:1
|
/linux-4.4.14/drivers/video/console/ |
D | fbcon.c | 2546 static int fbcon_copy_font(struct vc_data *vc, int con) in fbcon_copy_font() argument 2548 struct display *od = &fb_display[con]; in fbcon_copy_font()
|