Home
last modified time | relevance | path

Searched refs:send (Results 26 – 50 of 567) sorted by relevance

12345678910>>...23

/Zephyr-latest/samples/net/sockets/packet/src/
Dpacket.c154 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/
DKconfig21 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/
Dnet_l2.h71 int (*send)(struct net_if *iface, struct net_pkt *pkt); member
136 .send = (_send_fn), \
Dcanbus.h34 int (*send)(const struct device *dev, struct net_pkt *pkt); member
/Zephyr-latest/doc/kernel/services/data_passing/
Dmailboxes.rst8 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/
Dtest_blockwise.py129 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/
Deth_slip_tap.c34 .send = slip_send,
/Zephyr-latest/include/zephyr/drivers/
Dipm.h101 ipm_send_t send; member
156 return api->send(ipmdev, wait, id, data, size); in z_impl_ipm_send()
Dbluetooth.h101 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/
Dlog_multidomain_helper.h145 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/
Dtest_can.py84 can_dut.send(msg, timeout=TIMEOUT)
92 can_host.send(msg, timeout=TIMEOUT)
/Zephyr-latest/subsys/logging/backends/
Dlog_multidomain_backend.c72 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/
Dipc_icmsg_me_initiator.c159 static int send(const struct device *instance, void *token, in send() function
172 .send = send,
/Zephyr-latest/samples/subsys/canbus/isotp/
DREADME.rst15 The send function call for the short message is non-blocking, and the send
/Zephyr-latest/samples/subsys/modbus/tcp_gateway/src/
Dmain.c51 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/
Dservice.c26 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/
DREADME.rst21 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/
Dbackend.h108 ec_host_cmd_backend_api_send send; member
/Zephyr-latest/drivers/ipm/
Dipm_handlers.c14 K_OOPS(K_SYSCALL_DRIVER_IPM(dev, send)); in z_vrfy_ipm_send()
/Zephyr-latest/drivers/mbox/
Dmbox_handlers.c14 K_OOPS(K_SYSCALL_DRIVER_MBOX(dev, send)); in z_vrfy_mbox_send()
/Zephyr-latest/tests/bluetooth/bluetooth/src/
Dbluetooth.c40 .send = driver_send,
/Zephyr-latest/subsys/bluetooth/mesh/
Dop_agg_srv.c76 goto send; in handle_sequence()
101 send: in handle_sequence()
/Zephyr-latest/drivers/xen/
Devents.c116 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/
DKconfig10 CoAP server port that the application should send requests to.
/Zephyr-latest/include/zephyr/ipc/
Dipc_service_backend.h71 int (*send)(const struct device *instance, void *token, member

12345678910>>...23