/Linux-v4.19/sound/pci/echoaudio/ |
D | midi.c | 206 int bytes, sent, time; in snd_echo_midi_output_write() local 211 sent = bytes = 0; in snd_echo_midi_output_write() 218 sent = write_midi(chip, buf, bytes); in snd_echo_midi_output_write() 219 if (sent < 0) { in snd_echo_midi_output_write() 221 "write_midi() error %d\n", sent); in snd_echo_midi_output_write() 223 sent = 9000; in snd_echo_midi_output_write() 225 } else if (sent > 0) { in snd_echo_midi_output_write() 226 dev_dbg(chip->card->dev, "%d bytes sent\n", sent); in snd_echo_midi_output_write() 227 snd_rawmidi_transmit_ack(chip->midi_out, sent); in snd_echo_midi_output_write() 232 sent = 32; in snd_echo_midi_output_write() [all …]
|
/Linux-v4.19/drivers/isdn/gigaset/ |
D | ser-gigaset.c | 68 int sent = -EOPNOTSUPP; in write_modem() local 80 sent = tty->ops->write(tty, skb->data, skb->len); in write_modem() 81 gig_dbg(DEBUG_OUTPUT, "write_modem: sent %d", sent); in write_modem() 82 if (sent < 0) { in write_modem() 85 return sent; in write_modem() 87 skb_pull(skb, sent); in write_modem() 97 return sent; in write_modem() 109 int sent = 0; in send_cb() local 119 sent = tty->ops->write(tty, cb->buf + cb->offset, cb->len); in send_cb() 120 if (sent < 0) { in send_cb() [all …]
|
/Linux-v4.19/drivers/iommu/ |
D | exynos-iommu.c | 46 #define lv1ent_fault(sent) ((*(sent) == ZERO_LV2LINK) || \ argument 47 ((*(sent) & 3) == 0) || ((*(sent) & 3) == 3)) 48 #define lv1ent_zero(sent) (*(sent) == ZERO_LV2LINK) argument 49 #define lv1ent_page_zero(sent) ((*(sent) & 3) == 1) argument 50 #define lv1ent_page(sent) ((*(sent) != ZERO_LV2LINK) && \ argument 51 ((*(sent) & 3) == 1)) 52 #define lv1ent_section(sent) ((*(sent) & 3) == 2) argument 101 #define section_phys(sent) (sect_to_phys(*(sent)) & SECT_MASK) argument 125 #define lv2table_base(sent) (sect_to_phys(*(sent) & 0xFFFFFFC0)) argument 191 static sysmmu_pte_t *page_entry(sysmmu_pte_t *sent, sysmmu_iova_t iova) in page_entry() argument [all …]
|
/Linux-v4.19/net/x25/ |
D | x25_out.c | 57 int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT; in x25_output() local 78 return sent; in x25_output() 82 "sent\n", err, sent); in x25_output() 106 sent += len; in x25_output() 112 sent = skb->len - header_len; in x25_output() 114 return sent; in x25_output()
|
/Linux-v4.19/Documentation/input/ |
D | notifier.rst | 14 - KBD_KEYCODE events are always sent before other events, value is the keycode. 15 - KBD_UNBOUND_KEYCODE events are sent if the keycode is not bound to a keysym. 17 - KBD_UNICODE events are sent if the keycode -> keysym translation produced a 19 - KBD_KEYSYM events are sent if the keycode -> keysym translation produced a 21 - KBD_POST_KEYSYM events are sent after the treatment of non-unicode keysyms.
|
D | userio.rst | 27 /dev/userio character device in their applications. Commands are sent to the 43 ``type`` describes the type of command that is being sent. This can be any one 47 Each command should be sent by writing the struct directly to the character 50 to the kernel log. Only one command can be sent at a time, any additional data 76 ``data`` is the interrupt data being sent.
|
/Linux-v4.19/net/smc/ |
D | smc_tx.h | 23 union smc_host_cursor sent, prep; in smc_tx_prepared_sends() local 25 smc_curs_copy(&sent, &conn->tx_curs_sent, conn); in smc_tx_prepared_sends() 27 return smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep); in smc_tx_prepared_sends()
|
D | smc_tx.c | 301 union smc_host_cursor *sent, in smc_tx_advance_cursors() argument 311 smc_curs_add(conn->sndbuf_desc->len, sent, len); in smc_tx_advance_cursors() 409 union smc_host_cursor sent, prep, prod, cons; in smc_tx_rdma_writes() local 415 smc_curs_copy(&sent, &conn->tx_curs_sent, conn); in smc_tx_rdma_writes() 418 to_send = smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep); in smc_tx_rdma_writes() 454 if (sent.count + dst_len <= conn->sndbuf_desc->len) { in smc_tx_rdma_writes() 459 src_len = conn->sndbuf_desc->len - sent.count; in smc_tx_rdma_writes() 463 rc = smcd_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes() 466 rc = smcr_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes() 473 smc_tx_advance_cursors(conn, &prod, &sent, len); in smc_tx_rdma_writes() [all …]
|
/Linux-v4.19/net/bluetooth/ |
D | hci_event.c | 143 void *sent; in hci_cc_write_link_policy() local 150 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_LINK_POLICY); in hci_cc_write_link_policy() 151 if (!sent) in hci_cc_write_link_policy() 158 conn->link_policy = get_unaligned_le16(sent + 2); in hci_cc_write_link_policy() 180 void *sent; in hci_cc_write_def_link_policy() local 187 sent = hci_sent_cmd_data(hdev, HCI_OP_WRITE_DEF_LINK_POLICY); in hci_cc_write_def_link_policy() 188 if (!sent) in hci_cc_write_def_link_policy() 191 hdev->link_policy = get_unaligned_le16(sent); in hci_cc_write_def_link_policy() 231 struct hci_cp_read_stored_link_key *sent; in hci_cc_read_stored_link_key() local 235 sent = hci_sent_cmd_data(hdev, HCI_OP_READ_STORED_LINK_KEY); in hci_cc_read_stored_link_key() [all …]
|
/Linux-v4.19/drivers/net/wireless/marvell/libertas/ |
D | if_cs.c | 575 int sent = 0; in if_cs_prog_helper() local 608 int remain = fw->size - sent; in if_cs_prog_helper() 622 &fw->data[sent], in if_cs_prog_helper() 645 sent, ret); in if_cs_prog_helper() 652 sent += count; in if_cs_prog_helper() 665 int sent; in if_cs_prog_real() local 676 for (sent = 0; sent < fw->size; sent += len) { in if_cs_prog_real() 691 sent -= len; in if_cs_prog_real() 698 &fw->data[sent], in if_cs_prog_real() 706 pr_err("can't download firmware at 0x%x\n", sent); in if_cs_prog_real()
|
/Linux-v4.19/Documentation/isdn/ |
D | README.avmb1 | 106 sentctlmsg: capi messages sent without DATA_B3_REQ 107 sentdatamsg: capi DATA_B3_REQ sent 118 nsentctlmsg: capi messages sent without DATA_B3_REQ 119 nsentdatamsg: capi DATA_B3_REQ sent 128 nsentctlmsg: capi messages sent without DATA_B3_REQ 129 nsentdatamsg: capi DATA_B3_REQ sent 144 nsentctlmsg: capi messages sent without DATA_B3_REQ 145 nsentdatamsg: capi DATA_B3_REQ sent
|
/Linux-v4.19/include/trace/events/ |
D | xdp.h | 234 int sent, int drops, 238 TP_ARGS(map, map_index, sent, drops, from_dev, to_dev, err), 245 __field(int, sent) 256 __entry->sent = sent; 268 __entry->sent, __entry->drops,
|
/Linux-v4.19/drivers/bluetooth/ |
D | ath3k.c | 223 int err, pipe, size, sent = 0; in ath3k_load_firmware() local 244 sent += FW_HDR_SIZE; in ath3k_load_firmware() 254 memcpy(send_buf, firmware->data + sent, size); in ath3k_load_firmware() 264 sent += size; in ath3k_load_firmware() 320 int err, pipe, size, count, sent = 0; in ath3k_load_fwfile() local 344 sent += size; in ath3k_load_fwfile() 354 memcpy(send_buf, firmware->data + sent, size); in ath3k_load_fwfile() 363 sent += size; in ath3k_load_fwfile()
|
/Linux-v4.19/net/vmw_vsock/ |
D | vmci_transport_notify.c | 129 bool sent; in vmci_transport_handle_waiting_read() local 132 sent = vmci_transport_send_wrote_bh(dst, src) > 0; in vmci_transport_handle_waiting_read() 134 sent = vmci_transport_send_wrote(sk) > 0; in vmci_transport_handle_waiting_read() 136 if (sent) in vmci_transport_handle_waiting_read() 159 bool sent; in vmci_transport_handle_waiting_write() local 162 sent = vmci_transport_send_read_bh(dst, src) > 0; in vmci_transport_handle_waiting_write() 164 sent = vmci_transport_send_read(sk) > 0; in vmci_transport_handle_waiting_write() 166 if (sent) in vmci_transport_handle_waiting_write()
|
/Linux-v4.19/drivers/staging/unisys/visorhba/ |
D | visorhba_main.c | 52 void *sent; member 155 while (devdata->pending[insert_location].sent) { in add_scsipending_entry() 167 entry->sent = new; in add_scsipending_entry() 170 entry->sent = &entry->cmdrsp; in add_scsipending_entry() 189 void *sent; in del_scsipending_ent() local 195 sent = devdata->pending[del].sent; in del_scsipending_ent() 197 devdata->pending[del].sent = NULL; in del_scsipending_ent() 200 return sent; in del_scsipending_ent() 216 if (ddata->pending[ent].sent) in get_scsipending_cmdrsp() 754 scsicmd = pendingdel->sent; in visorhba_serverdown_complete() [all …]
|
/Linux-v4.19/drivers/perf/ |
D | xgene_pmu.c | 350 XGENE_PMU_EVENT_ATTR(act-cmd-sent, 0x02), 351 XGENE_PMU_EVENT_ATTR(pre-cmd-sent, 0x03), 352 XGENE_PMU_EVENT_ATTR(rd-cmd-sent, 0x04), 353 XGENE_PMU_EVENT_ATTR(rda-cmd-sent, 0x05), 354 XGENE_PMU_EVENT_ATTR(wr-cmd-sent, 0x06), 355 XGENE_PMU_EVENT_ATTR(wra-cmd-sent, 0x07), 356 XGENE_PMU_EVENT_ATTR(pde-cmd-sent, 0x08), 357 XGENE_PMU_EVENT_ATTR(sre-cmd-sent, 0x09), 358 XGENE_PMU_EVENT_ATTR(prea-cmd-sent, 0x0a), 359 XGENE_PMU_EVENT_ATTR(ref-cmd-sent, 0x0b), [all …]
|
/Linux-v4.19/Documentation/hwmon/ |
D | acpi_power_meter | 29 socket and a poll notification will be sent to the appropriate 39 the netlink event socket and a poll notification will be sent to the 44 There are a few other ACPI notifications that can be sent by the firmware. In 46 well as sent as a poll notification to a sysfs file. The events are as
|
/Linux-v4.19/Documentation/hid/ |
D | uhid.txt | 38 payloads are sent. You must not split a single event across multiple read()'s or 39 multiple write()'s. A single event must always be sent as a whole. Furthermore, 40 only a single event can be sent per read() or write(). Pending data is ignored. 97 UHID_INPUT events can be sent to the kernel. 124 This is sent when the HID device is started. Consider this as an answer to 125 UHID_CREATE2. This is always the first event that is sent. Note that this 137 For messages sent by user-space to the kernel, you must adjust the 141 This is sent when the HID device is stopped. Consider this as an answer to 150 This is sent when the HID device is opened. That is, the data that the HID 157 This is sent when there are no more processes which read the HID data. It is [all …]
|
D | hid-transport.txt | 96 reports. No management commands or data acknowledgements are sent on this 97 channel. Any unrequested incoming or outgoing data report must be sent on 102 device management. Unrequested data input events must not be sent on this 107 Outgoing reports are usually sent on the ctrl channel via synchronous 115 data is generated by the device and sent to the host with or without 118 - OUTPUT Report: Output reports change device states. They are sent from host 120 reports are never sent from device to host, but a host can retrieve their 127 Feature reports are never sent without requests. A host must explicitly set 128 or retrieve a feature report. This also means, feature reports are never sent 131 INPUT and OUTPUT reports can be sent as pure data reports on the intr channel. [all …]
|
D | hidraw.txt | 5 Interface Devices (HIDs). It differs from hiddev in that reports sent and 6 received are not parsed by the HID parser, but are sent to and received from 16 descriptors. Because hiddev parses reports which are sent and received 42 devices, the reports read using read() are the reports sent from the device 56 the device has an INTERRUPT OUT endpoint, the report will be sent on that 57 endpoint. If it does not, the report will be sent over the control endpoint, 98 specification, feature reports are always sent using the control endpoint.
|
/Linux-v4.19/drivers/net/wireless/marvell/mwifiex/ |
D | README | 106 num_tx_bytes = <number of bytes sent to device> 107 num_rx_bytes = <number of bytes received from device and sent to kernel> 108 num_tx_pkts = <number of packets sent to device> 109 num_rx_pkts = <number of packets received from device and sent to kernel> 120 wmm_ac_vo = <number of packets sent to device from WMM AcVo queue> 121 wmm_ac_vi = <number of packets sent to device from WMM AcVi queue> 122 wmm_ac_be = <number of packets sent to device from WMM AcBE queue> 123 wmm_ac_bk = <number of packets sent to device from WMM AcBK queue> 137 last_cmd_id = <command id of the last several commands sent to device> 138 last_cmd_act = <command action of the last several commands sent to device> [all …]
|
/Linux-v4.19/drivers/tty/hvc/ |
D | hvc_xen.c | 84 int sent = 0; in __write_console() local 91 while ((sent < len) && ((prod - cons) < sizeof(intf->out))) in __write_console() 92 intf->out[MASK_XENCONS_IDX(prod++, intf->out)] = data[sent++]; in __write_console() 97 if (sent) in __write_console() 99 return sent; in __write_console() 116 int sent = __write_console(cons, data, len); in domU_write_console() local 118 data += sent; in domU_write_console() 119 len -= sent; in domU_write_console()
|
/Linux-v4.19/Documentation/media/uapi/dvb/ |
D | fe-set-voltage.rst | 12 FE_SET_VOLTAGE - Allow setting the DC level sent to the antenna subsystem. 35 This ioctl allows to set the DC voltage level sent through the antenna 43 control the voltage level, provided that either 13V or 18V is sent to
|
/Linux-v4.19/kernel/bpf/ |
D | devmap.c | 225 int sent = 0, drops = 0, err = 0; in bq_xmit_all() local 237 sent = dev->netdev_ops->ndo_xdp_xmit(dev, bq->count, bq->q, flags); in bq_xmit_all() 238 if (sent < 0) { in bq_xmit_all() 239 err = sent; in bq_xmit_all() 240 sent = 0; in bq_xmit_all() 243 drops = bq->count - sent; in bq_xmit_all() 248 sent, drops, bq->dev_rx, dev, err); in bq_xmit_all()
|
/Linux-v4.19/Documentation/networking/ |
D | ipsec.txt | 13 payload, the IP datagram MUST be sent in the original non-compressed 14 form. To clarify: If an IP datagram is sent non-compressed, no 23 where IP datagrams of size smaller than the threshold are sent in the
|