/openbmc/u-boot/drivers/tpm/ |
H A D | tpm2_tis_sandbox.c | 260 const u8 *sent = sendbuf; in sandbox_tpm2_xfer() local 278 sent += sizeof(tag); in sandbox_tpm2_xfer() 281 sent += sizeof(length); in sandbox_tpm2_xfer() 291 sent += sizeof(command); in sandbox_tpm2_xfer() 307 sent += sizeof(mode); in sandbox_tpm2_xfer() 322 yes_no = *sent; in sandbox_tpm2_xfer() 323 sent += sizeof(yes_no); in sandbox_tpm2_xfer() 368 sent += new_pw_sz; in sandbox_tpm2_xfer() 505 sent += sizeof(alg); in sandbox_tpm2_xfer() 512 pcr_array_sz = *sent; in sandbox_tpm2_xfer() [all …]
|
/openbmc/linux/sound/pci/echoaudio/ |
H A D | midi.c | 205 int bytes, sent, time; in snd_echo_midi_output_write() local 210 sent = 0; in snd_echo_midi_output_write() 217 sent = write_midi(chip, buf, bytes); in snd_echo_midi_output_write() 218 if (sent < 0) { in snd_echo_midi_output_write() 220 "write_midi() error %d\n", sent); in snd_echo_midi_output_write() 222 sent = 9000; in snd_echo_midi_output_write() 224 } else if (sent > 0) { in snd_echo_midi_output_write() 225 dev_dbg(chip->card->dev, "%d bytes sent\n", sent); in snd_echo_midi_output_write() 226 snd_rawmidi_transmit_ack(chip->midi_out, sent); in snd_echo_midi_output_write() 231 sent = 32; in snd_echo_midi_output_write() [all …]
|
/openbmc/openbmc-test-automation/lib/ |
H A D | bmc_network_security_utils.robot | 16 # packet_type The type of packets to be sent ("tcp, "udp", "icmp"). 19 # num Number of packets to be sent. 21 # This keyword expects host, port, type and number of packets to be sent 22 # and rate at which packets to be sent, should be given in command line. 42 # packet_type The type of packets to be sent ("tcp, "udp", "icmp"). 45 # num Number of packets to be sent. 47 # This keyword expects host, port, type and number of packets to be sent 48 # and rate at which packets to be sent, should be given in command line.
|
/openbmc/linux/net/x25/ |
H A D | x25_out.c | 52 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()
|
/openbmc/phosphor-logging/extensions/openpower-pels/ |
H A D | host_notifier.cpp | 376 _repo.setPELHostTransState(id, TransmissionState::sent); in commandResponse() 435 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in ackPEL() local 436 if (sent != _sentPELs.end()) in ackPEL() 438 _sentPELs.erase(sent); in ackPEL() 469 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in setHostFull() local 470 if (sent != _sentPELs.end()) in setHostFull() 472 _sentPELs.erase(sent); in setHostFull() 495 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in setBadPEL() local 496 if (sent != _sentPELs.end()) in setBadPEL() 498 _sentPELs.erase(sent); in setBadPEL()
|
/openbmc/linux/drivers/iommu/ |
H A D | exynos-iommu.c | 41 #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 1072 if (lv1ent_fault(sent)) { in alloc_lv2entry() [all …]
|
/openbmc/linux/include/trace/events/ |
H A D | xdp.h | 57 int sent, int drops, int err), 59 TP_ARGS(dev, sent, drops, err), 65 __field(int, sent) 73 __entry->sent = sent; 80 __entry->sent, __entry->drops, __entry->err) 272 int sent, int drops, int err), 274 TP_ARGS(from_dev, to_dev, sent, drops, err), 281 __field(int, sent) 290 __entry->sent = sent; 300 __entry->sent, __entry->drops,
|
/openbmc/linux/net/smc/ |
H A 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()
|
H A D | smc_tx.c | 342 union smc_host_cursor *sent, in smc_tx_advance_cursors() argument 352 smc_curs_add(conn->sndbuf_desc->len, sent, len); in smc_tx_advance_cursors() 467 union smc_host_cursor sent, prep, prod, cons; in smc_tx_rdma_writes() local 473 smc_curs_copy(&sent, &conn->tx_curs_sent, conn); in smc_tx_rdma_writes() 476 to_send = smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep); in smc_tx_rdma_writes() 516 if (sent.count + dst_len <= conn->sndbuf_desc->len) { in smc_tx_rdma_writes() 521 src_len = conn->sndbuf_desc->len - sent.count; in smc_tx_rdma_writes() 525 rc = smcd_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes() 528 rc = smcr_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes() 535 smc_tx_advance_cursors(conn, &prod, &sent, len); in smc_tx_rdma_writes() [all …]
|
/openbmc/linux/Documentation/input/ |
H A D | notifier.rst | 15 - 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.
|
/openbmc/openbmc-test-automation/network/ |
H A D | test_network_nping.robot | 45 # ${host}- Target system to which network packets to be sent. 46 # ${packet_type}- type of packets to be sent viz tcp, udp or icmp. 49 # This program expects host, port, type and number of packets to be sent 50 # and rate at which packets to be sent, should be given in command line 76 # Raw packets sent: 2 (80B) | Rcvd: 1 (46B) | Lost: 1 (50.00%) 83 # ${traffic_details}- Details of the network traffic sent.
|
/openbmc/u-boot/drivers/usb/gadget/ |
H A D | aspeed_usbtty.c | 176 remaining_packet = urb->actual_length - endpoint->sent; in udc_endpoint_write() 187 data += endpoint->sent; in udc_endpoint_write() 289 urb->actual_length, endpoint->sent); in aspeed_udc_ep0_tx() 291 last = min((int)(urb->actual_length - endpoint->sent), in aspeed_udc_ep0_tx() 295 u8 *cp = urb->buffer + endpoint->sent; in aspeed_udc_ep0_tx() 308 endpoint->sent, endpoint->tx_packetSize, last); in aspeed_udc_ep0_tx() 345 endpoint->sent += endpoint->last; in aspeed_udc_ep0_in() 356 if (endpoint->sent == ep0_urb->actual_length && in aspeed_udc_ep0_in() 363 endpoint->sent = 0; in aspeed_udc_ep0_in() 420 endpoint->sent = 0; in aspeed_udc_setup_handle() [all …]
|
H A D | pxa27x_udc.c | 66 n = min_t(unsigned int, urb->actual_length - endpoint->sent, in udc_write_urb() 76 endpoint->sent, endpoint->tx_packetSize, endpoint->last); in udc_write_urb() 83 udc_dump_buffer("urb write", data8 + endpoint->sent, n); in udc_write_urb() 90 writel(data32[endpoint->sent / 4 + i], UDCDN(ep_num)); in udc_write_urb() 93 writeb(data8[endpoint->sent + w * 4 + i], UDCDN(ep_num)); in udc_write_urb() 114 endpoint->sent += n; in udc_write_urb() 118 if (endpoint->sent >= urb->actual_length) { in udc_write_urb() 120 endpoint->sent = 0; in udc_write_urb() 124 if ((endpoint->sent >= urb->actual_length) && (!ep_num)) { in udc_write_urb() 293 endpoint->sent = 0; in udc_handle_ep0()
|
H A D | core.c | 389 int sent = endpoint->last; in usbd_tx_complete() local 390 endpoint->sent += sent; in usbd_tx_complete() 391 endpoint->last -= sent; in usbd_tx_complete() 393 if( (endpoint->tx_urb->actual_length - endpoint->sent) <= 0 ) { in usbd_tx_complete() 395 endpoint->sent = 0; in usbd_tx_complete()
|
/openbmc/linux/net/bluetooth/ |
H A D | hci_event.c | 213 void *sent; in hci_cc_write_link_policy() local 221 if (!sent) in hci_cc_write_link_policy() 254 void *sent; in hci_cc_write_def_link_policy() local 262 if (!sent) in hci_cc_write_def_link_policy() 314 if (!sent) in hci_cc_read_stored_link_key() 355 if (!sent) in hci_cc_write_local_name() 396 if (!sent) in hci_cc_write_auth_enable() 431 if (!sent) in hci_cc_write_encrypt_mode() 454 if (!sent) in hci_cc_write_scan_enable() 495 if (!sent) in hci_cc_set_event_filter() [all …]
|
H A D | hci_codec.c | 10 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()
|
/openbmc/linux/drivers/net/wireless/marvell/libertas/ |
H A D | if_cs.c | 562 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()
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | CC-BY-NC-SA-2.0-FR | 9 …sent contrat vaut acceptation de celui-ci. Selon les termes et les obligations du présent contrat,… 13 …tistique ou toute loi applicable et qui est mise à disposition selon les termes du présent Contrat. 21 …) ou morale(s) qui proposent la mise à disposition de l'Oeuvre selon les termes du présent Contrat. 23 …sent contrat et exerce des droits sans en avoir violé les termes au préalable ou qui a reçu l'auto… 48 …sent Contrat, ou un Contrat Creative Commons iCommons comprenant les mêmes Options du Contrat que … 65 …b. A l'exception des situations expressément mentionnées dans le présent Contrat ou dans un autre … 67 …sent contrat, l'Offrant ne sera en aucun cas tenu responsable vis-à-vis de l'Acceptant, sur la bas… 73 …sent Contrat s'applique pendant toute la durée de protection de l'Oeuvre selon le droit applicable… 77 …des termes et conditions identiques à ceux accordés à la partie Acceptante dans le présent Contrat. 79 …des termes et conditions identiques à ceux accordés à la partie Acceptante dans le présent Contrat. [all …]
|
/openbmc/linux/drivers/bluetooth/ |
H A D | ath3k.c | 207 int err, pipe, size, sent = 0; in ath3k_load_firmware() local 225 sent += FW_HDR_SIZE; in ath3k_load_firmware() 235 memcpy(send_buf, firmware->data + sent, size); in ath3k_load_firmware() 245 sent += size; in ath3k_load_firmware() 276 int err, pipe, size, count, sent = 0; in ath3k_load_fwfile() local 298 sent += size; in ath3k_load_fwfile() 308 memcpy(send_buf, firmware->data + sent, size); in ath3k_load_fwfile() 317 sent += size; in ath3k_load_fwfile()
|
/openbmc/linux/net/hsr/ |
H A D | Kconfig | 18 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
|
/openbmc/linux/net/vmw_vsock/ |
H A D | vmci_transport_notify.c | 121 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()
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | debugfs-scmi-raw | 7 in little-endian binary format to have it sent to the configured 12 and sent while the replies are read back one message at time 22 in little-endian binary format to have it sent to the configured 30 and sent while the replies are read back one message at time 74 in little-endian binary format to have it sent to the configured 81 and sent while the replies are read back one message at time 98 in little-endian binary format to have it sent to the configured 108 and sent while the replies are read back one message at time
|
/openbmc/linux/drivers/tty/hvc/ |
H A D | hvc_xen.c | 92 int sent = 0; in __write_console() local 106 while ((sent < len) && ((prod - cons) < sizeof(intf->out))) in __write_console() 107 intf->out[MASK_XENCONS_IDX(prod++, intf->out)] = data[sent++]; in __write_console() 113 if (sent) in __write_console() 115 return sent; in __write_console() 132 int sent = __write_console(cons, data, len); in domU_write_console() local 134 if (sent < 0) in domU_write_console() 135 return sent; in domU_write_console() 137 data += sent; in domU_write_console() 138 len -= sent; in domU_write_console()
|
/openbmc/linux/Documentation/hwmon/ |
H A D | acpi_power_meter.rst | 32 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
|
/openbmc/linux/drivers/perf/ |
H A D | xgene_pmu.c | 338 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 …]
|