/Zephyr-latest/samples/net/sockets/packet/src/ |
D | packet.c | 154 size_t send = 100U; in send_packet_socket() local 182 ret = sendto(packet->send_sock, lorem_ipsum, send, 0, in send_packet_socket() 190 LOG_DBG("Sent %zd bytes", send); in send_packet_socket()
|
/Zephyr-latest/subsys/mgmt/mcumgr/smp_client/ |
D | Kconfig | 21 This define lifetime for SMP client send request. This configure is used if a request 25 int "SMP command re-send period in ms"
|
/Zephyr-latest/include/zephyr/net/ |
D | net_l2.h | 71 int (*send)(struct net_if *iface, struct net_pkt *pkt); member 136 .send = (_send_fn), \
|
D | canbus.h | 34 int (*send)(const struct device *dev, struct net_pkt *pkt); member
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | mailboxes.rst | 8 A mailbox allows threads to send and receive messages of any size 23 * A **send queue** of messages that have been sent but not yet received. 79 is sent, or send it to any thread by specifying :c:macro:`K_ANY`. 185 Finally, the sending thread calls a mailbox send API to initiate the 188 to the mailbox's send queue. 190 Any number of messages may exist simultaneously on a send queue. 191 The messages in the send queue are sorted according to the priority 195 For a synchronous send operation, the operation normally completes when a 198 sending thread is reached, the message is removed from the mailbox's send queue 199 and the send operation fails. When a send operation completes successfully [all …]
|
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/ |
D | test_blockwise.py | 129 send = events.next_event('SEND') 130 assert send is not None 131 content = binascii.a2b_hex(send[19][0][0][0])
|
/Zephyr-latest/drivers/ethernet/ |
D | eth_slip_tap.c | 34 .send = slip_send,
|
/Zephyr-latest/include/zephyr/drivers/ |
D | ipm.h | 101 ipm_send_t send; member 156 return api->send(ipmdev, wait, id, data, size); in z_impl_ipm_send()
|
D | bluetooth.h | 101 int (*send)(const struct device *dev, struct net_buf *buf); member 168 return api->send(dev, buf); in bt_hci_send()
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_multidomain_helper.h | 145 int (*send)(struct log_multidomain_link *link, void *data, size_t len); member 186 int (*send)(struct log_multidomain_backend *backend, void *data, size_t len); member
|
/Zephyr-latest/tests/drivers/can/host/pytest/ |
D | test_can.py | 84 can_dut.send(msg, timeout=TIMEOUT) 92 can_host.send(msg, timeout=TIMEOUT)
|
/Zephyr-latest/subsys/logging/backends/ |
D | log_multidomain_backend.c | 72 err = backend_remote->transport_api->send(backend_remote, out_msg, msg_len + msg_offset); in process() 123 err = backend_remote->transport_api->send(backend_remote, outmsg, msg_size); in get_name_response() 189 err = backend_remote->transport_api->send(backend_remote, &outmsg, sizeof(outmsg)); in log_multidomain_backend_on_recv_cb() 236 err = backend_remote->transport_api->send(backend_remote, &msg, sizeof(msg)); in dropped()
|
/Zephyr-latest/subsys/ipc/ipc_service/backends/ |
D | ipc_icmsg_me_initiator.c | 159 static int send(const struct device *instance, void *token, in send() function 172 .send = send,
|
/Zephyr-latest/samples/subsys/canbus/isotp/ |
D | README.rst | 15 The send function call for the short message is non-blocking, and the send
|
/Zephyr-latest/samples/subsys/modbus/tcp_gateway/src/ |
D | main.c | 51 if (send(client, header, sizeof(header), 0) < 0) { in modbus_tcp_reply() 55 if (send(client, adu->data, adu->length, 0) < 0) { in modbus_tcp_reply()
|
/Zephyr-latest/samples/net/mdns_responder/src/ |
D | service.c | 26 return send(fd, msg, sizeof(msg), 0); in welcome() 143 r = send(client_fd, line, len, 0); in service()
|
/Zephyr-latest/samples/bluetooth/mtu_update/ |
D | README.rst | 21 Question: I only want to *send* large packets. I don't need to receive large 32 Updating the MTU can be useful to send bigger packets and so have a better 35 To be able to send a large notification both the server and the client need to 82 and send his MTU to the other device. If the MTU exchange succeeds, the central 83 should subscribe and then the peripheral will send a large notification. Right
|
/Zephyr-latest/include/zephyr/mgmt/ec_host_cmd/ |
D | backend.h | 108 ec_host_cmd_backend_api_send send; member
|
/Zephyr-latest/drivers/ipm/ |
D | ipm_handlers.c | 14 K_OOPS(K_SYSCALL_DRIVER_IPM(dev, send)); in z_vrfy_ipm_send()
|
/Zephyr-latest/drivers/mbox/ |
D | mbox_handlers.c | 14 K_OOPS(K_SYSCALL_DRIVER_MBOX(dev, send)); in z_vrfy_mbox_send()
|
/Zephyr-latest/tests/bluetooth/bluetooth/src/ |
D | bluetooth.c | 40 .send = driver_send,
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | op_agg_srv.c | 76 goto send; in handle_sequence() 101 send: in handle_sequence()
|
/Zephyr-latest/drivers/xen/ |
D | events.c | 116 struct evtchn_send send; in notify_evtchn() local 122 send.port = port; in notify_evtchn() 124 HYPERVISOR_event_channel_op(EVTCHNOP_send, &send); in notify_evtchn()
|
/Zephyr-latest/samples/net/sockets/coap_download/ |
D | Kconfig | 10 CoAP server port that the application should send requests to.
|
/Zephyr-latest/include/zephyr/ipc/ |
D | ipc_service_backend.h | 71 int (*send)(const struct device *instance, void *token, member
|