/Zephyr-latest/samples/drivers/espi/src/ |
D | espi_oob_handler.c | 79 static int retrieve_packet(const struct device *dev, uint8_t *sender) in retrieve_packet() argument 108 if (sender) { in retrieve_packet() 109 *sender = buf[OOB_RESPONSE_SENDER_INDEX]; in retrieve_packet() 177 uint8_t sender; in espihub_thread() local 184 ret = retrieve_packet(context.espi_dev, &sender); in espihub_thread() 186 switch (sender) { in espihub_thread() 199 LOG_INF("Other host sender %x", sender); in espihub_thread()
|
/Zephyr-latest/subsys/net/lib/ptp/ |
D | btca.c | 43 diff = btca_port_id_cmp(&a->receiver, &a->sender); in btca_ds_cmp2() 54 diff = btca_port_id_cmp(&b->receiver, &b->sender); in btca_ds_cmp2() 65 diff = btca_port_id_cmp(&a->sender, &b->sender); in btca_ds_cmp2()
|
D | ds.h | 215 struct ptp_port_id sender; member
|
D | clock.c | 215 &ptp_clk.best->dataset.sender, in clock_update_time_receiver() 216 sizeof(ptp_clk.best->dataset.sender)); in clock_update_time_receiver() 607 ds->sender.port_number = 0; in ptp_clock_ds() 610 memcpy(&ds->sender.clk_id, &ptp_clk.default_ds.clk_id, sizeof(ptp_clk_id)); in ptp_clock_ds()
|
D | port.c | 1354 if (ptp_port_id_eq(&msg->header.src_port_id, &foreign->dataset.sender)) { in ptp_port_add_foreign_tt() 1372 memcpy(&foreign->dataset.sender, in ptp_port_add_foreign_tt() 1374 sizeof(foreign->dataset.sender)); in ptp_port_add_foreign_tt() 1423 !ptp_port_id_eq(&msg->header.src_port_id, &foreign->dataset.sender)) { in ptp_port_update_current_time_transmitter()
|
/Zephyr-latest/samples/arch/smp/pktqueue/ |
D | README.rst | 38 The headers then are stored in multiple "sender" queues (the number is defined 39 in QUEUE_NUM). After that for each pair of "sender"/"receiver" queues one thread 40 is created, which will control "sender" queue processing. 43 of them first pick the header from "sender" queue, calculates crc and if 45 time can access to sender or receiver queue. 47 As soon as all headers in each pair of queues are moved from "sender" to
|
/Zephyr-latest/samples/arch/smp/pktqueue/src/ |
D | main.c | 46 struct phdr_desc_queue sender[QUEUE_NUM], receiver[QUEUE_NUM]; variable 140 (void *)&sender[queue_num], in queue_thread() 146 while (sender[queue_num].count != 0) { in queue_thread() 169 init_datagram_queue(&sender[i], i); in main() 180 (void *)&sender[i], (void *)&receiver[i], in main()
|
/Zephyr-latest/samples/bluetooth/central_past/ |
D | README.rst | 5 Use the Periodic Advertising Sync Transfer (PAST) feature as the sender. 11 functionality as the sender.
|
/Zephyr-latest/samples/net/sockets/txtime/ |
D | README.rst | 2 :name: UDP sender using SO_TXTIME 10 This sample is a simple UDP sender/receiver which will set the
|
/Zephyr-latest/doc/connectivity/canbus/ |
D | isotp.rst | 22 Additionally, it adds a flow control mechanism to influence the sender's 37 many CF the sender is allowed to send, before he has to wait for another FC.
|
/Zephyr-latest/tests/net/icmp/src/ |
D | main.c | 61 static struct net_if *sender, *receiver; variable 484 ret = net_icmp_send_echo_request(&ctx, sender, in ZTEST() 527 ret = net_icmp_send_echo_request(&ctx, sender, in ZTEST() 654 sender = net_if_lookup_by_dev(DEVICE_GET(test_sender_icmp)); in setup() 655 zassert_equal(sender, send_ctx.iface, "Invalid interface (%p vs %p)", in setup() 656 sender, send_ctx.iface); in setup()
|
/Zephyr-latest/doc/services/ipc/ipc_service/backends/ |
D | ipc_service_icbmsg.rst | 23 * The sender allocates one or more blocks. 176 #. The sender wants to send a message that contains ``K`` bytes. 177 #. The sender reserves blocks from his ``tx-region`` blocks area that can hold at least ``K + 4`` b… 180 The sender is responsible for block allocation management. 182 #. The sender fills the header with a 32-bit integer value, ``K`` (little-endian). 183 #. The sender fills the remaining part of the blocks with his data. 185 #. The sender sends an ``MSG_DATA`` or ``MSG_BOUND`` control message over ICMsg that contains start… 192 #. The control message travels back to the sender. 193 #. The sender releases the blocks starting from the block number provided in the control message.
|
/Zephyr-latest/samples/drivers/can/counter/src/ |
D | main.c | 50 char *sender = (char *)arg; in tx_irq_callback() local 56 error, sender); in tx_irq_callback()
|
/Zephyr-latest/tests/posix/common/src/ |
D | mqueue.c | 150 pthread_t sender = (pthread_t)val.sival_int; in notify_function_thread() local 152 zassert_not_equal(sender, pthread_self(), in notify_function_thread()
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | mailboxes.rst | 146 A 32-bit value that is exchanged by the message sender and receiver, 148 bi-directional, allowing the sender to pass a value to the receiver 150 to the sender during a synchronous message exchange. 174 with the actual sender's address when the message is put into 385 printf("sender tried to send %d bytes", recv_msg.info); 412 * If the message descriptor size is zero, then either the sender's message 436 "info" field supplied by the sender is used to classify the message.
|
D | pipes.rst | 42 waiting sender(s).
|
/Zephyr-latest/doc/hardware/peripherals/can/ |
D | controller.rst | 89 detect. The sender may resend the frame right after. 157 char *sender = (char *)user_data; 160 LOG_ERR("Sending failed [%d]\nSender: %s\n", error, sender);
|
/Zephyr-latest/samples/net/sockets/echo_server/ |
D | README.rst | 5 Implement a UDP/TCP server that sends received packets back to the sender.
|
/Zephyr-latest/subsys/canbus/isotp/ |
D | Kconfig | 41 As (sender transmit timeout) and Ar (receiver transmit timeout).
|
/Zephyr-latest/doc/services/device_mgmt/ |
D | smp_transport.rst | 25 sender fragments it across several packets. No additional framing is
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | blob_cli.rst | 6 The Binary Large Object (BLOB) Transfer Client is the sender of the BLOB transfer. It supports
|
/Zephyr-latest/subsys/bluetooth/ |
D | Kconfig | 160 bool "Periodic Advertising Sync Transfer sender"
|
/Zephyr-latest/modules/openthread/ |
D | Kconfig.features | 285 bool "Ping sender support"
|
D | CMakeLists.txt | 109 kconfig_to_ot_option(CONFIG_OPENTHREAD_PING_SENDER OT_PING_SENDER "Enable ping sender support")
|
/Zephyr-latest/drivers/console/ |
D | Kconfig | 169 bool "Inter-processor Mailbox console sender"
|