/Zephyr-latest/subsys/shell/backends/ |
D | shell_rpmsg.c | 17 const struct shell_transport *transport = (const struct shell_transport *)priv; in rpmsg_shell_cb() local 37 static int uninit(const struct shell_transport *transport) in uninit() 51 static int init(const struct shell_transport *transport, in init() 88 static int enable(const struct shell_transport *transport, bool blocking) in enable() 101 static int write(const struct shell_transport *transport, in write() 131 static int read(const struct shell_transport *transport, in read()
|
D | shell_dummy.c | 16 static int init(const struct shell_transport *transport, in init() 32 static int uninit(const struct shell_transport *transport) in uninit() 45 static int enable(const struct shell_transport *transport, bool blocking) in enable() 56 static int write(const struct shell_transport *transport, in write() 79 static int read(const struct shell_transport *transport, in read()
|
D | shell_adsp_memory_window.c | 40 static int init(const struct shell_transport *transport, in init() 76 static int uninit(const struct shell_transport *transport) in uninit() 86 static int enable(const struct shell_transport *transport, bool blocking) in enable() 91 static int write(const struct shell_transport *transport, in write() 103 static int read(const struct shell_transport *transport, in read()
|
D | shell_rtt.c | 46 static int init(const struct shell_transport *transport, in init() 74 static int uninit(const struct shell_transport *transport) in uninit() 83 static int enable(const struct shell_transport *transport, bool blocking) in enable() 137 static int write(const struct shell_transport *transport, in write() 170 static int read(const struct shell_transport *transport, in read()
|
D | shell_websocket.c | 231 static int init(const struct shell_transport *transport, in init() 254 static int uninit(const struct shell_transport *transport) in uninit() 261 static int enable(const struct shell_transport *transport, bool blocking) in enable() 269 static int sh_write(const struct shell_transport *transport, in sh_write() 331 static int sh_read(const struct shell_transport *transport, in sh_read()
|
D | shell_mqtt.c | 644 static int init(const struct shell_transport *transport, const void *config, in init() 698 static int uninit(const struct shell_transport *transport) in uninit() 710 static int enable(const struct shell_transport *transport, bool blocking) in enable() 727 static int write_data(const struct shell_transport *transport, const void *data, size_t length, in write_data() 787 static int read_data(const struct shell_transport *transport, void *data, size_t length, in read_data()
|
D | shell_telnet.c | 616 static int init(const struct shell_transport *transport, in init() 644 static int uninit(const struct shell_transport *transport) in uninit() 653 static int enable(const struct shell_transport *transport, bool blocking) in enable() 662 static int telnet_write(const struct shell_transport *transport, in telnet_write() 735 static int telnet_read(const struct shell_transport *transport, in telnet_read()
|
D | shell_uart.c | 287 static int init(const struct shell_transport *transport, in init() 332 static int uninit(const struct shell_transport *transport) in uninit() 345 static int enable(const struct shell_transport *transport, bool blocking_tx) in enable() 406 static int write_uart(const struct shell_transport *transport, in write_uart() 483 static int read_uart(const struct shell_transport *transport, in read_uart() 496 static void update(const struct shell_transport *transport) in update()
|
/Zephyr-latest/drivers/firmware/scmi/ |
D | mailbox.c | 24 static int scmi_mbox_send_message(const struct device *transport, in scmi_mbox_send_message() 48 static int scmi_mbox_read_message(const struct device *transport, in scmi_mbox_read_message() 59 static bool scmi_mbox_channel_is_free(const struct device *transport, in scmi_mbox_channel_is_free() 68 static int scmi_mbox_setup_chan(const struct device *transport, in scmi_mbox_setup_chan()
|
D | core.c | 52 static int scmi_core_setup_chan(const struct device *transport, in scmi_core_setup_chan() 179 static int scmi_core_protocol_setup(const struct device *transport) in scmi_core_protocol_setup() 204 int scmi_core_transport_init(const struct device *transport) in scmi_core_transport_init()
|
/Zephyr-latest/include/zephyr/drivers/firmware/scmi/ |
D | transport.h | 110 scmi_transport_request_channel(const struct device *transport, in scmi_transport_request_channel() 142 static inline int scmi_transport_init(const struct device *transport) in scmi_transport_init() 170 static inline int scmi_transport_setup_chan(const struct device *transport, in scmi_transport_setup_chan() 199 static inline int scmi_transport_send_message(const struct device *transport, in scmi_transport_send_message() 225 static inline int scmi_transport_read_message(const struct device *transport, in scmi_transport_read_message() 250 static inline bool scmi_transport_channel_is_free(const struct device *transport, in scmi_transport_channel_is_free()
|
D | protocol.h | 80 const struct device *transport; member
|
/Zephyr-latest/subsys/net/lib/mqtt_sn/ |
D | mqtt_sn_transport_udp.c | 43 static int tp_udp_init(struct mqtt_sn_transport *transport) in tp_udp_init() 141 static void tp_udp_deinit(struct mqtt_sn_transport *transport) in tp_udp_deinit()
|
/Zephyr-latest/drivers/misc/coresight/ |
D | nrf_etr.c | 828 static int etr_shell_write(const struct shell_transport *transport, const void *data, size_t length, in etr_shell_write() 852 static int etr_shell_read(const struct shell_transport *transport, void *data, size_t length, in etr_shell_read() 886 static int etr_shell_enable(const struct shell_transport *transport, bool blocking_tx) in etr_shell_enable() 891 static int etr_shell_uninit(const struct shell_transport *transport) in etr_shell_uninit() 896 static int etr_shell_init(const struct shell_transport *transport, const void *config, in etr_shell_init() 920 static void etr_shell_update(const struct shell_transport *transport) in etr_shell_update() 936 static struct shell_transport transport = { variable
|
/Zephyr-latest/samples/modules/thrift/hello/client/src/ |
D | main.cpp | 69 std::shared_ptr<TTransport> transport; in main() local
|
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/ |
D | main.cpp | 62 std::shared_ptr<TTransport> transport; in setup_client() local
|
/Zephyr-latest/modules/thrift/src/thrift/server/ |
D | TServer.h | 94 virtual void processContext(void *serverContext, std::shared_ptr<TTransport> transport) in processContext() 278 std::shared_ptr<TTransport> transport) in getProcessor()
|
D | TFDServer.cpp | 30 namespace transport namespace
|
/Zephyr-latest/tests/bluetooth/hci_codecs_info/src/ |
D | main.c | 149 uint8_t transport, in hci_vendor_read_codec_capabilities() 226 uint8_t transport, in hci_vendor_read_ctlr_delay()
|
/Zephyr-latest/modules/thrift/src/thrift/transport/ |
D | TSSLServerSocket.cpp | 30 namespace transport namespace
|
/Zephyr-latest/tests/subsys/mgmt/mcumgr/smp_reassembly/src/ |
D | main.c | 28 void smp_rx_req(struct smp_transport *transport, struct net_buf *nb) in smp_rx_req()
|
/Zephyr-latest/include/zephyr/net/ |
D | mqtt_sn.h | 237 #define UDP_TRANSPORT(transport) CONTAINER_OF(transport, struct mqtt_sn_transport_udp, tp) argument 274 struct mqtt_sn_transport *transport; member
|
/Zephyr-latest/tests/net/lib/mqtt_sn_client/src/ |
D | mqtt_sn_client.c | 86 static struct mqtt_sn_transport transport; variable
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/fs_mgmt/src/ |
D | fs_mgmt.c | 105 void *transport; member
|
/Zephyr-latest/tests/bluetooth/tester/src/btp/ |
D | btp_l2cap.h | 60 uint8_t transport; member
|