| /openbmc/u-boot/drivers/tpm/ |
| H A D | tpm2_tis_sandbox.c | 260 const u8 *sent = sendbuf; in sandbox_tpm2_xfer() local 277 tag = get_unaligned_be16(sent); in sandbox_tpm2_xfer() 278 sent += sizeof(tag); in sandbox_tpm2_xfer() 280 length = get_unaligned_be32(sent); in sandbox_tpm2_xfer() 281 sent += sizeof(length); in sandbox_tpm2_xfer() 290 command = get_unaligned_be32(sent); in sandbox_tpm2_xfer() 291 sent += sizeof(command); in sandbox_tpm2_xfer() 298 rc = sandbox_tpm2_check_session(dev, command, tag, &sent, &hierarchy); in sandbox_tpm2_xfer() 306 mode = get_unaligned_be16(sent); in sandbox_tpm2_xfer() 307 sent += sizeof(mode); in sandbox_tpm2_xfer() [all …]
|
| H A D | tpm2_tis_core.c | 222 size_t burstcnt, wr_size, sent = 0; in tpm_tis_send() local 259 wr_size, buf + sent); in tpm_tis_send() 268 sent += wr_size; in tpm_tis_send() 295 return sent; in tpm_tis_send()
|
| /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/phosphor-logging/extensions/openpower-pels/ |
| H A D | host_notifier.cpp | 364 _repo.setPELHostTransState(id, TransmissionState::sent); in commandResponse() 423 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in ackPEL() local 424 if (sent != _sentPELs.end()) in ackPEL() 426 _sentPELs.erase(sent); in ackPEL() 457 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in setHostFull() local 458 if (sent != _sentPELs.end()) in setHostFull() 460 _sentPELs.erase(sent); in setHostFull() 483 auto sent = std::find(_sentPELs.begin(), _sentPELs.end(), id); in setBadPEL() local 484 if (sent != _sentPELs.end()) in setBadPEL() 486 _sentPELs.erase(sent); in setBadPEL()
|
| H A D | pel_types.hpp | 131 sent = 2, enumerator
|
| /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 74 # Raw packets sent: 2 (80B) | Rcvd: 1 (46B) | Lost: 1 (50.00%) 81 # ${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()
|
| H A D | designware_udc.c | 271 last = min_t(u32, urb->actual_length - endpoint->sent, in dw_write_noniso_tx_fifo() 275 u8 *cp = urb->buffer + endpoint->sent; in dw_write_noniso_tx_fifo() 290 endpoint->sent, endpoint->tx_packetSize, last); in dw_write_noniso_tx_fifo() 338 endpoint->sent = 0; in dw_udc_setup() 417 endpoint->sent += endpoint->last; in dw_udc_ep0_tx() 428 if ((endpoint->sent == ep0_urb->actual_length) && in dw_udc_ep0_tx() 504 (endpoint->tx_urb->actual_length - endpoint->sent - in dw_udc_epn_tx()
|
| /openbmc/bmcweb/test/include/ |
| H A D | credential_pipe_test.cpp | 22 const boost::system::error_code& ec, size_t sent) in handler() argument 26 EXPECT_EQ(sent, 18); in handler()
|
| /openbmc/openbmc/poky/meta/files/common-licenses/ |
| H A D | CC-BY-NC-SA-2.0-FR | 3 …contrat ne crée aucune relation juridique entre les parties au contrat présenté ci-après et Creati… 7 L'Oeuvre (telle que définie ci-dessous) est mise à disposition selon les termes du présent contrat … 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. 17 …ive ne sera pas considérée comme une Oeuvre dite Dérivée aux termes du présent Contrat. Dans le ca… 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… 46 …sent Contrat à toute reproduction ou enregistrement de l'Oeuvre que l'Acceptant distribue, représe… 48 …sent Contrat, ou un Contrat Creative Commons iCommons comprenant les mêmes Options du Contrat que … 61 …cessaires pour pouvoir autoriser l'exercice des droits accordés par le présent Contrat, et permett… [all …]
|
| /openbmc/qemu/hw/riscv/ |
| H A D | trace-events | 9 riscv_iommu_mrif_notification(const char *id, uint32_t nid, uint64_t phys) "%s: sent MRIF notificat… 13 riscv_iommu_notify_int_vector(uint32_t cause, uint32_t vector) "Interrupt cause 0x%x sent via vecto… 18 riscv_iommu_sys_irq_sent(uint32_t vector) "IRQ sent to vector %u" 19 …t32_t vector, uint64_t msi_addr, uint32_t msi_data, uint32_t result) "MSI sent to vector %u msi_ad…
|
| /openbmc/bmcweb/http/ |
| H A D | http_body.hpp | 183 size_t sent = 0; member in bmcweb::HttpBody::writer 220 size_t remain = body.str().size() - sent; in getWithMaxSize() 222 ret.first = const_buffers_type(&body.str()[sent], toReturn); in getWithMaxSize() 224 sent += toReturn; in getWithMaxSize() 225 ret.second = sent < body.str().size(); in getWithMaxSize()
|
| /openbmc/u-boot/drivers/usb/musb/ |
| H A D | musb_udc.c | 354 ep0_endpoint->sent = 0; in musb_peri_ep0_tx_data_request() 543 if (ep0_endpoint->sent >= ep0_urb->actual_length) { in musb_peri_ep0_tx() 548 transfer_size = ep0_urb->actual_length - ep0_endpoint->sent; in musb_peri_ep0_tx() 564 write_fifo(0, transfer_size, &ep0_urb->buffer[ep0_endpoint->sent]); in musb_peri_ep0_tx() 565 ep0_endpoint->sent += transfer_size; in musb_peri_ep0_tx() 568 if (ep0_endpoint->sent >= ep0_urb->actual_length) in musb_peri_ep0_tx() 584 if ((ep0_endpoint->sent >= ep0_urb->actual_length) && (p < pm)) in musb_peri_ep0_tx() 831 endpoint->sent; in udc_endpoint_write() 839 data += endpoint->sent; in udc_endpoint_write()
|
| /openbmc/qemu/python/qemu/qmp/ |
| H A D | qmp_client.py | 78 sent: Message, received: Message): 81 self.sent: Message = sent 152 def __init__(self, error_message: str, msg: Message, sent: Message): 155 self.sent = sent
|
| /openbmc/u-boot/drivers/input/ |
| H A D | cros_ec_keyb.c | 105 int irq_pending, sent; in cros_ec_kbc_check() local 139 sent = input_send_keycodes(input, keycodes, num_keycodes); in cros_ec_kbc_check() 147 } while (irq_pending && !sent); in cros_ec_kbc_check()
|
| /openbmc/qemu/qapi/ |
| H A D | qapi-schema.json | 17 # -> ... text sent by client (commands) ... 18 # <- ... text sent by server (command responses and events) ...
|
| /openbmc/qemu/docs/ |
| H A D | colo-proxy.txt | 25 client and compare packets sent by PVM with sent by SVM. 65 …p | rx:receive packets sent to the netdev 66 … | tx:receive packets sent by the netdev 146 Packets coming from the primary char indev will be sent to outdev.
|
| /openbmc/qemu/storage-daemon/qapi/ |
| H A D | qapi-schema.json | 30 # -> ... text sent by client (commands) ... 31 # <- ... text sent by server (command responses and events) ...
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/ |
| H A D | rdist-6.1.5-makefile-add-ldflags.patch | 1 Add LDFLAGS variable to Makefile so that extra linker flags can be sent via this variable.
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/ippool/ippool/ |
| H A D | makefile-add-ldflags.patch | 1 Add LDFLAGS variable to Makefile so that extra linker flags can be sent via this variable.
|
| /openbmc/openbmc/meta-ibm/recipes-phosphor/configuration/ |
| H A D | acx22-yaml-config.bb | 11 file://acx22-ipmi-fru-not-sent-by-host.yaml \ 28 acx22-ipmi-fru-not-sent-by-host.yaml \
|
| /openbmc/u-boot/tools/patman/ |
| H A D | README | 26 in one of your commits, the series will be sent there. 40 series should be sent, cover letter, version, etc. Most of these are 280 whole series is sent to the recipients in Series-to: and Series-cc. 301 If you have a cover letter it will get sent to the union of the Patch-cc 302 lists of all of the other patches. If you want to sent it to additional 387 The patches will be created, shown in your editor, and then sent along with 392 Let's say one person sent comments and you get an Acked-by: on one patch. 447 to remember what version you are up to, who you sent the last lot of patches 453 3. If you want to keep the commits from each series you sent so that you can 457 git tag sent/us-cmd-rfc [all …]
|
| /openbmc/openbmc/meta-raspberrypi/recipes-kernel/linux/files/ |
| H A D | default-cpu-governor.cfg | 4 # A fix for this was sent to upstream: https://github.com/raspberrypi/linux/pull/5666
|