Home
last modified time | relevance | path

Searched refs:sent (Results 1 – 25 of 517) sorted by relevance

12345678910>>...21

/linux/sound/pci/echoaudio/
A Dmidi.c206 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/drivers/iommu/
A Dexynos-iommu.c41 #define lv1ent_fault(sent) ((*(sent) == ZERO_LV2LINK) || \ argument
42 ((*(sent) & 3) == 0) || ((*(sent) & 3) == 3))
43 #define lv1ent_zero(sent) (*(sent) == ZERO_LV2LINK) argument
44 #define lv1ent_page_zero(sent) ((*(sent) & 3) == 1) argument
45 #define lv1ent_page(sent) ((*(sent) != ZERO_LV2LINK) && \ argument
46 ((*(sent) & 3) == 1))
47 #define lv1ent_section(sent) ((*(sent) & 3) == 2) argument
96 #define section_phys(sent) (sect_to_phys(*(sent)) & SECT_MASK) argument
120 #define lv2table_base(sent) (sect_to_phys(*(sent) & 0xFFFFFFC0)) argument
911 if (lv1ent_fault(sent)) { in alloc_lv2entry()
[all …]
/linux/net/bluetooth/
A Dhci_event.c162 void *sent; in hci_cc_write_link_policy() local
170 if (!sent) in hci_cc_write_link_policy()
199 void *sent; in hci_cc_write_def_link_policy() local
207 if (!sent) in hci_cc_write_def_link_policy()
255 if (!sent) in hci_cc_read_stored_link_key()
288 if (!sent) in hci_cc_write_local_name()
323 if (!sent) in hci_cc_write_auth_enable()
355 if (!sent) in hci_cc_write_encrypt_mode()
375 if (!sent) in hci_cc_write_scan_enable()
413 if (!sent) in hci_cc_set_event_filter()
[all …]
A Dhci_codec.c10 struct hci_op_read_local_codec_caps *sent, in hci_codec_list_add() argument
21 entry->id = sent->id; in hci_codec_list_add()
22 if (sent->id == 0xFF) { in hci_codec_list_add()
23 entry->cid = __le16_to_cpu(sent->cid); in hci_codec_list_add()
24 entry->vid = __le16_to_cpu(sent->vid); in hci_codec_list_add()
26 entry->transport = sent->transport; in hci_codec_list_add()
/linux/include/trace/events/
A Dxdp.h56 int sent, int drops, int err),
58 TP_ARGS(dev, sent, drops, err),
64 __field(int, sent)
72 __entry->sent = sent;
79 __entry->sent, __entry->drops, __entry->err)
271 int sent, int drops, int err),
273 TP_ARGS(from_dev, to_dev, sent, drops, err),
280 __field(int, sent)
289 __entry->sent = sent;
299 __entry->sent, __entry->drops,
/linux/net/x25/
A Dx25_out.c52 int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT; in x25_output() local
73 return sent; in x25_output()
77 "sent\n", err, sent); in x25_output()
101 sent += len; in x25_output()
107 sent = skb->len - header_len; in x25_output()
109 return sent; in x25_output()
/linux/Documentation/input/
A Dnotifier.rst15 - KBD_KEYCODE events are always sent before other events, value is the keycode.
16 - KBD_UNBOUND_KEYCODE events are sent if the keycode is not bound to a keysym.
18 - KBD_UNICODE events are sent if the keycode -> keysym translation produced a
20 - KBD_KEYSYM events are sent if the keycode -> keysym translation produced a
22 - KBD_POST_KEYSYM events are sent after the treatment of non-unicode keysyms.
A Duserio.rst27 /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/drivers/net/wireless/marvell/libertas/
A Dif_cs.c562 int sent = 0; in if_cs_prog_helper() local
595 int remain = fw->size - sent; in if_cs_prog_helper()
609 &fw->data[sent], in if_cs_prog_helper()
632 sent, ret); in if_cs_prog_helper()
639 sent += count; in if_cs_prog_helper()
652 int sent; in if_cs_prog_real() local
663 for (sent = 0; sent < fw->size; sent += len) { in if_cs_prog_real()
678 sent -= len; in if_cs_prog_real()
685 &fw->data[sent], in if_cs_prog_real()
693 pr_err("can't download firmware at 0x%x\n", sent); in if_cs_prog_real()
/linux/net/smc/
A Dsmc_tx.h23 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()
A Dsmc_tx.c309 union smc_host_cursor *sent, in smc_tx_advance_cursors() argument
319 smc_curs_add(conn->sndbuf_desc->len, sent, len); in smc_tx_advance_cursors()
422 union smc_host_cursor sent, prep, prod, cons; in smc_tx_rdma_writes() local
428 smc_curs_copy(&sent, &conn->tx_curs_sent, conn); in smc_tx_rdma_writes()
431 to_send = smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep); in smc_tx_rdma_writes()
471 if (sent.count + dst_len <= conn->sndbuf_desc->len) { in smc_tx_rdma_writes()
476 src_len = conn->sndbuf_desc->len - sent.count; in smc_tx_rdma_writes()
480 rc = smcd_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes()
483 rc = smcr_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes()
490 smc_tx_advance_cursors(conn, &prod, &sent, len); in smc_tx_rdma_writes()
[all …]
/linux/drivers/staging/unisys/visorhba/
A Dvisorhba_main.c52 void *sent; member
129 entry->sent = new; in add_scsipending_entry()
132 entry->sent = &entry->cmdrsp; in add_scsipending_entry()
151 void *sent; in del_scsipending_ent() local
157 sent = devdata->pending[del].sent; in del_scsipending_ent()
159 devdata->pending[del].sent = NULL; in del_scsipending_ent()
162 return sent; in del_scsipending_ent()
178 if (ddata->pending[ent].sent) in get_scsipending_cmdrsp()
684 scsicmd = pendingdel->sent; in visorhba_serverdown_complete()
689 cmdrsp = pendingdel->sent; in visorhba_serverdown_complete()
[all …]
/linux/drivers/bluetooth/
A Dath3k.c210 int err, pipe, size, sent = 0; in ath3k_load_firmware() local
228 sent += FW_HDR_SIZE; in ath3k_load_firmware()
238 memcpy(send_buf, firmware->data + sent, size); in ath3k_load_firmware()
248 sent += size; in ath3k_load_firmware()
279 int err, pipe, size, count, sent = 0; in ath3k_load_fwfile() local
301 sent += size; in ath3k_load_fwfile()
311 memcpy(send_buf, firmware->data + sent, size); in ath3k_load_fwfile()
320 sent += size; in ath3k_load_fwfile()
/linux/drivers/tty/hvc/
A Dhvc_xen.c86 int sent = 0; in __write_console() local
97 while ((sent < len) && ((prod - cons) < sizeof(intf->out))) in __write_console()
98 intf->out[MASK_XENCONS_IDX(prod++, intf->out)] = data[sent++]; in __write_console()
103 if (sent) in __write_console()
105 return sent; in __write_console()
122 int sent = __write_console(cons, data, len); in domU_write_console() local
124 if (sent < 0) in domU_write_console()
125 return sent; in domU_write_console()
127 data += sent; in domU_write_console()
128 len -= sent; in domU_write_console()
/linux/drivers/perf/
A Dxgene_pmu.c338 XGENE_PMU_EVENT_ATTR(act-cmd-sent, 0x02),
340 XGENE_PMU_EVENT_ATTR(rd-cmd-sent, 0x04),
342 XGENE_PMU_EVENT_ATTR(wr-cmd-sent, 0x06),
529 XGENE_PMU_EVENT_ATTR(act-sent, 0x01),
530 XGENE_PMU_EVENT_ATTR(pre-sent, 0x02),
531 XGENE_PMU_EVENT_ATTR(rd-sent, 0x03),
532 XGENE_PMU_EVENT_ATTR(rda-sent, 0x04),
533 XGENE_PMU_EVENT_ATTR(wr-sent, 0x05),
534 XGENE_PMU_EVENT_ATTR(wra-sent, 0x06),
537 XGENE_PMU_EVENT_ATTR(prea-sent, 0x09),
[all …]
/linux/net/vmw_vsock/
A Dvmci_transport_notify.c121 bool sent; in vmci_transport_handle_waiting_read() local
124 sent = vmci_transport_send_wrote_bh(dst, src) > 0; in vmci_transport_handle_waiting_read()
126 sent = vmci_transport_send_wrote(sk) > 0; in vmci_transport_handle_waiting_read()
128 if (sent) in vmci_transport_handle_waiting_read()
151 bool sent; in vmci_transport_handle_waiting_write() local
154 sent = vmci_transport_send_read_bh(dst, src) > 0; in vmci_transport_handle_waiting_write()
156 sent = vmci_transport_send_read(sk) > 0; in vmci_transport_handle_waiting_write()
158 if (sent) in vmci_transport_handle_waiting_write()
/linux/Documentation/hid/
A Dhid-transport.rst100 reports. No management commands or data acknowledgements are sent on this
101 channel. Any unrequested incoming or outgoing data report must be sent on
104 not sent via intr, except if high throughput is required.
106 device management. Unrequested data input events must not be sent on this
111 Outgoing reports are usually sent on the ctrl channel via synchronous
119 data is generated by the device and sent to the host with or without
124 reports are never sent from device to host, but a host can retrieve their
141 Plain reports must not be sent on the ctrl channel, though. Instead, the ctrl
145 - GET_REPORT: A GET_REPORT request has a report ID as payload and is sent
159 GET_REPORT requests can be sent for any of the 3 report types and shall
[all …]
A Duhid.rst39 payloads are sent. You must not split a single event across multiple read()'s or
40 multiple write()'s. A single event must always be sent as a whole. Furthermore,
41 only a single event can be sent per read() or write(). Pending data is ignored.
98 UHID_INPUT events can be sent to the kernel.
125 This is sent when the HID device is started. Consider this as an answer to
126 UHID_CREATE2. This is always the first event that is sent. Note that this
140 For messages sent by user-space to the kernel, you must adjust the
144 This is sent when the HID device is stopped. Consider this as an answer to
155 This is sent when the HID device is opened. That is, the data that the HID
162 This is sent when there are no more processes which read the HID data. It is
[all …]
/linux/net/hsr/
A DKconfig18 with other HSR capable nodes. All Ethernet frames sent over the HSR
19 device will be sent in both directions on the ring (over both slave
26 frames sent over the PRP device will be sent to both networks giving
/linux/drivers/net/wireless/marvell/mwifiex/
A DREADME107 num_tx_bytes = <number of bytes sent to device>
108 num_rx_bytes = <number of bytes received from device and sent to kernel>
109 num_tx_pkts = <number of packets sent to device>
110 num_rx_pkts = <number of packets received from device and sent to kernel>
121 wmm_ac_vo = <number of packets sent to device from WMM AcVo queue>
122 wmm_ac_vi = <number of packets sent to device from WMM AcVi queue>
123 wmm_ac_be = <number of packets sent to device from WMM AcBE queue>
124 wmm_ac_bk = <number of packets sent to device from WMM AcBK queue>
138 last_cmd_id = <command id of the last several commands sent to device>
139 last_cmd_act = <command action of the last several commands sent to device>
[all …]
/linux/Documentation/hwmon/
A Dacpi_power_meter.rst32 socket and a poll notification will be sent to the appropriate
42 the netlink event socket and a poll notification will be sent to the
47 There are a few other ACPI notifications that can be sent by the firmware. In
49 well as sent as a poll notification to a sysfs file. The events are as
/linux/Documentation/networking/device_drivers/cellular/qualcomm/
A Drmnet.rst46 Reserved bits must be zero when sent and ignored when received.
51 Multiplexer ID is to indicate the PDN on which data has to be sent.
72 Reserved bits must be zero when sent and ignored when received.
77 Multiplexer ID is to indicate the PDN on which data has to be sent.
93 Reserved bits must be zero when sent and ignored when received.
131 Multiplexer ID is to indicate the PDN on which data has to be sent.
155 Reserved bits must be zero when sent and ignored when received.
/linux/fs/ksmbd/
A Dconnection.c162 int sent; in ksmbd_conn_write() local
193 sent = conn->transport->ops->writev(conn->transport, &iov[0], in ksmbd_conn_write()
199 if (sent < 0) { in ksmbd_conn_write()
200 pr_err("Failed to send message: %d\n", sent); in ksmbd_conn_write()
201 return sent; in ksmbd_conn_write()
/linux/Documentation/userspace-api/media/dvb/
A Dfe-set-voltage.rst13 FE_SET_VOLTAGE - Allow setting the DC level sent to the antenna subsystem.
34 This ioctl allows to set the DC voltage level sent through the antenna
42 control the voltage level, provided that either 13V or 18V is sent to
/linux/samples/bpf/
A Dxdp_sample.bpf.c207 const struct net_device *to_dev, int sent, int drops, int err) in BPF_PROG() argument
225 NO_TEAR_ADD(rec->processed, sent); in BPF_PROG()
238 const struct net_device *to_dev, int sent, int drops, int err) in BPF_PROG() argument
260 NO_TEAR_ADD(rec->processed, sent); in BPF_PROG()

Completed in 50 milliseconds

12345678910>>...21