/Zephyr-latest/subsys/net/l2/ppp/ |
D | link.c | 22 if (proto->protocol == PPP_LCP) { in lcp_up() 37 if (proto->protocol == PPP_CCP || proto->protocol == PPP_ECP) { in do_network() 50 if (proto->protocol == PPP_CCP || proto->protocol == PPP_ECP || in do_network() 51 proto->protocol >= 0xC000) { in do_network() 87 if (proto->protocol == auth_proto) { in do_auth()
|
D | ppp_l2.c | 76 uint16_t protocol; in process_ppp_msg() local 83 ret = net_pkt_read_be16(pkt, &protocol); in process_ppp_msg() 88 if ((IS_ENABLED(CONFIG_NET_IPV4) && protocol == PPP_IP) || in process_ppp_msg() 89 (IS_ENABLED(CONFIG_NET_IPV6) && protocol == PPP_IPV6)) { in process_ppp_msg() 99 if (proto->protocol != protocol) { in process_ppp_msg() 106 switch (protocol) { in process_ppp_msg() 114 ppp_send_proto_rej(iface, pkt, protocol); in process_ppp_msg() 121 ppp_proto2str(protocol) ? "Unhandled" : "Unknown", in process_ppp_msg() 122 ppp_proto2str(protocol), in process_ppp_msg() 123 ppp_proto2str(protocol) ? " " : "", in process_ppp_msg() [all …]
|
D | ppp_internal.h | 61 uint16_t protocol; member 83 enum ppp_protocol_type protocol, 96 .protocol = proto, \ 110 const char *ppp_option2str(enum ppp_protocol_type protocol, int type); 137 uint16_t protocol); 139 void ppp_fsm_init(struct ppp_fsm *fsm, uint16_t protocol);
|
D | network.c | 59 if (proto->protocol != PPP_LCP && proto->lower_down) { in ppp_network_all_down() 63 if (proto->protocol < 0xC000 && proto->close) { in ppp_network_all_down()
|
D | options.c | 59 ppp_option2str(fsm->protocol, opt_type), opt_type, in ppp_parse_options() 99 enum ppp_protocol_type protocol; member 122 ppp_option2str(parse_data->protocol, code), in ppp_parse_option_conf_req_unsupported() 167 enum ppp_protocol_type protocol, in ppp_config_info_req() argument 175 .protocol = protocol, in ppp_config_info_req()
|
/Zephyr-latest/drivers/firmware/scmi/ |
D | Kconfig | 7 bool "Helper functions for SCMI clock protocol" 11 Enable support for SCMI clock protocol helper functions. 24 bool "Helper functions for SCMI pinctrl protocol" 29 Enable support for SCMI pinctrl protocol helper functions. 48 What this means is that each protocol will have its channels 51 allocation scheme (i.e: use protocol-specific channels if 52 they exist, otherwise use base protocol channels).
|
/Zephyr-latest/modules/thrift/src/thrift/server/ |
D | TSimpleServer.h | 50 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> &protocolFactory); 57 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> &protocolFactory); 66 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> 68 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> 78 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> 80 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory>
|
D | TConnectedClient.h | 62 const std::shared_ptr<apache::thrift::protocol::TProtocol> &inputProtocol, 63 const std::shared_ptr<apache::thrift::protocol::TProtocol> &outputProtocol, 105 std::shared_ptr<apache::thrift::protocol::TProtocol> inputProtocol_; 106 std::shared_ptr<apache::thrift::protocol::TProtocol> outputProtocol_;
|
D | TServerFramework.h | 63 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> &protocolFactory); 70 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> &protocolFactory); 79 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> 81 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> 91 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory> 93 const std::shared_ptr<apache::thrift::protocol::TProtocolFactory>
|
/Zephyr-latest/samples/modules/thrift/hello/client/src/ |
D | main.cpp | 25 using namespace apache::thrift::protocol; 68 std::shared_ptr<TProtocol> protocol; in main() local 110 protocol = std::make_shared<TCompactProtocol>(transport); in main() 112 protocol = std::make_shared<TBinaryProtocol>(transport); in main() 115 HelloClient client(protocol); in main()
|
/Zephyr-latest/subsys/canbus/ |
D | Kconfig.canopen | 5 bool "CANopen protocol support" 9 Enable CANopen (EN 50325-4) (CiA 301) protocol 11 protocol stack.
|
/Zephyr-latest/samples/modules/thrift/hello/client/ |
D | hello_client.py | 21 from thrift.protocol import TBinaryProtocol 38 protocol = TBinaryProtocol.TBinaryProtocol(transport) 39 client = Hello.Client(protocol)
|
/Zephyr-latest/drivers/sdhc/ |
D | Kconfig | 41 to enable UHS portion of protocol stack. 47 Enables SPI protocol in SD protocol stack 53 required. Enables native protocol in SD protocol stack.
|
/Zephyr-latest/doc/hardware/arch/ |
D | arm-scmi.rst | 17 Agent, platform, protocol and transport 32 A protocol is a set of messages grouped by functionality. Intuitively, a message 48 where each of these protocols is identified by an unique protocol ID 52 **0x80-0xFF** protocol ID range for vendor-specific protocols. 142 Clock management protocol 145 This protocol is used to perform clock management operations. This is done 155 Pin Control protocol 158 This protocol is used to perform pin configuration operations. This is done 163 The support for this protocol **does not** include a definition for 166 call into the SCMI pin control protocol function implementing the [all …]
|
/Zephyr-latest/subsys/logging/backends/ |
D | Kconfig.spinel | 5 bool "OpenThread dedicated Spinel protocol backend" 9 When enabled, backend will use OpenThread dedicated SPINEL protocol for logging. 10 This protocol is byte oriented and wraps given messages into serial frames.
|
/Zephyr-latest/subsys/sd/ |
D | Kconfig | 9 bool "MMC protocol support" 11 Enable MMC protocol support. Required for eMMC cards to function. 14 bool "SDMMC protocol support" 16 Enable SDMMC protocol support. Required for SD memory cards to 20 bool "SDIO protocol support" 22 Enable SDIO protocol support. Required for SD I/O cards to function. 97 bool "Ultra high speed SD card protocol support"
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | thread.rst | 3 Thread protocol 14 technology over IEEE 802.15.4 protocol. IP connectivity lets you easily connect 20 Thread protocol can be found at 23 Zephyr integrates an open source Thread protocol implementation called OpenThread, 53 OpenThread L2 uses Zephyr's protocol agnostic IEEE 802.15.4 driver API 64 stack together with Zephyr's IEEE 802.15.4 protocol agnostic driver API. This
|
D | ptp.rst | 13 PTP is a network protocol implemented in the application layer, used to synchronize 15 The stack supports the protocol and procedures as defined in the `IEEE 1588-2019 standard`_ 19 Its accuracy is achieved by using hardware timestamping of the protocol packets. 49 UDP IPv4 transport protocol, yes 50 UDP IPv6 transport protocol, yes 51 IEEE 802.3 (Ethernet) transport protocol,
|
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/ |
D | main.cpp | 25 using namespace apache::thrift::protocol; 63 std::shared_ptr<TProtocol> protocol; in setup_client() local 79 protocol = std::make_shared<TCompactProtocol>(transport); in setup_client() 81 protocol = std::make_shared<TBinaryProtocol>(transport); in setup_client() 84 return std::unique_ptr<ThriftTestClient>(new ThriftTestClient(protocol)); in setup_client()
|
/Zephyr-latest/subsys/usb/device/class/hid/ |
D | core.c | 144 uint8_t protocol; member 202 uint32_t size = sizeof(dev_data->protocol); in hid_on_get_protocol() 209 LOG_DBG("Get Protocol: %d", dev_data->protocol); in hid_on_get_protocol() 211 *data = &dev_data->protocol; in hid_on_get_protocol() 268 uint16_t protocol = setup->wValue; in hid_on_set_protocol() local 270 if (protocol > HID_PROTOCOL_REPORT) { in hid_on_set_protocol() 271 LOG_ERR("Unsupported protocol: %u", protocol); in hid_on_set_protocol() 275 LOG_DBG("Set Protocol: %u", protocol); in hid_on_set_protocol() 277 if (dev_data->protocol != protocol) { in hid_on_set_protocol() 278 dev_data->protocol = protocol; in hid_on_set_protocol() [all …]
|
/Zephyr-latest/samples/subsys/mgmt/osdp/ |
D | README.rst | 11 OSDP describes the communication protocol for interfacing one or more Peripheral 13 communication channel. Nevertheless, this protocol can be used to transfer 18 used as a general communication protocol for devices in a secure way without
|
/Zephyr-latest/subsys/net/l2/ieee802154/ |
D | Kconfig.radio | 23 prompt "Radio channel access protocol" 26 Select which medium access protocol to use. 29 bool "IEEE 802.15.4 unslotted CSMA-CA medium access protocol" 37 bool "IEEE 802.15.4 Aloha medium access protocol (CCA mode 4)"
|
/Zephyr-latest/tests/posix/common/src/ |
D | mutex.c | 50 int protocol; in test_mutex_common() local 63 zassert_not_ok(pthread_mutexattr_getprotocol(NULL, &protocol)); in test_mutex_common() 70 zassert_ok(pthread_mutexattr_getprotocol(&mut_attr, &protocol), in test_mutex_common() 77 zassert_equal(protocol, PTHREAD_PRIO_NONE, "mutex protocol is not prio_none"); in test_mutex_common()
|
/Zephyr-latest/samples/net/sockets/http_client/src/ |
D | main.c | 200 req.protocol = "HTTP/1.1"; in run_queries() 218 req.protocol = "HTTP/1.1"; in run_queries() 256 req.protocol = "HTTP/1.1"; in run_queries() 276 req.protocol = "HTTP/1.1"; in run_queries() 322 req.protocol = "HTTP/1.1"; in run_queries() 346 req.protocol = "HTTP/1.1"; in run_queries()
|
/Zephyr-latest/subsys/usb/device_next/class/ |
D | usbd_hid.c | 81 uint8_t protocol; member 277 const uint16_t protocol = setup->wValue; in handle_set_protocol() local 279 if (protocol > HID_PROTOCOL_REPORT) { in handle_set_protocol() 294 LOG_DBG("Set Protocol: %s", protocol ? "Report" : "Boot"); in handle_set_protocol() 296 if (ddata->protocol != protocol) { in handle_set_protocol() 297 ddata->protocol = protocol; in handle_set_protocol() 300 ops->set_protocol(dev, protocol); in handle_set_protocol() 326 LOG_DBG("Get Protocol: %s", ddata->protocol ? "Report" : "Boot"); in handle_get_protocol() 327 net_buf_add_u8(buf, ddata->protocol); in handle_get_protocol() 436 ddata->protocol = HID_PROTOCOL_REPORT; in usbd_hid_enable()
|