Home
last modified time | relevance | path

Searched refs:class (Results 1 – 25 of 151) sorted by relevance

1234567

/Zephyr-Core-3.5.0/subsys/usb/device/class/
DKconfig1 # USB class drivers configuration options
6 source "subsys/usb/device/class/Kconfig.cdc"
8 source "subsys/usb/device/class/Kconfig.msc"
10 source "subsys/usb/device/class/Kconfig.bt"
12 source "subsys/usb/device/class/Kconfig.test"
14 source "subsys/usb/device/class/netusb/Kconfig"
16 source "subsys/usb/device/class/hid/Kconfig"
18 source "subsys/usb/device/class/audio/Kconfig"
20 source "subsys/usb/device/class/dfu/Kconfig"
DKconfig.bt9 USB Bluetooth device class support
27 USB Bluetooth H4 device class support
DKconfig.cdc17 USB CDC ACM class support.
31 CDC ACM class interrupt IN endpoint size
38 CDC ACM class bulk endpoints size
/Zephyr-Core-3.5.0/subsys/usb/device_next/
DCMakeLists.txt26 class/loopback.c
31 class/usbd_cdc_acm.c
40 class/usbd_cdc_ecm.c
45 class/bt_hci.c
50 class/usbd_msc.c
51 class/usbd_msc_scsi.c
56 SECTIONS class/usbd_msc.ld
Dusbd_interface.c150 struct usbd_class_node *class; in usbd_interface_default() local
153 class = usbd_class_get_by_config(uds_ctx, new_cfg, i); in usbd_interface_default()
154 if (class == NULL) { in usbd_interface_default()
158 ret = usbd_interface_modify(uds_ctx, class, EP_OP_UP, i, 0); in usbd_interface_default()
171 struct usbd_class_node *class; in usbd_interface_set() local
175 class = usbd_class_get_by_iface(uds_ctx, iface); in usbd_interface_set()
176 if (class == NULL) { in usbd_interface_set()
191 ret = usbd_interface_modify(uds_ctx, class, EP_OP_TEST, iface, alt); in usbd_interface_set()
197 ret = usbd_interface_modify(uds_ctx, class, EP_OP_DOWN, iface, cur_alt); in usbd_interface_set()
203 ret = usbd_interface_modify(uds_ctx, class, EP_OP_UP, iface, alt); in usbd_interface_set()
[all …]
/Zephyr-Core-3.5.0/drivers/dma/
Ddma_dw.c61 .class = 6, \
65 .class = 6, \
69 .class = 6, \
73 .class = 6, \
77 .class = 6, \
81 .class = 6, \
85 .class = 6, \
89 .class = 6, \
Ddma_intel_lpss.c71 .class = 6, \
75 .class = 6, \
Ddma_intel_adsp_gpdma.c499 .class = 6, \
503 .class = 6, \
507 .class = 6, \
511 .class = 6, \
515 .class = 6, \
519 .class = 6, \
523 .class = 6, \
527 .class = 6, \
/Zephyr-Core-3.5.0/doc/
Dindex.rst35 <ul class="grid">
36 <li class="grid-item">
43 <li class="grid-item">
45 <span class="grid-icon fa fa-map-signs"></span>
51 <li class="grid-item">
53 <span class="grid-icon fa fa-github"></span>
59 <li class="grid-item">
61 <span class="grid-icon fa fa-cogs"></span>
67 <li class="grid-item">
69 <span class="grid-icon fa fa-sign-in"></span>
[all …]
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/hci/
Dhci_driver.c365 int8_t class) in encode_node() argument
370 switch (class) { in encode_node()
375 if (class == HCI_CLASS_EVT_DISCARDABLE) { in encode_node()
471 uint8_t class = node_rx->hdr.user_meta; in process_node() local
479 switch (class) { in process_node()
492 LOG_DBG("FC: Queuing item: %d", class); in process_node()
504 buf = encode_node(node_rx, class); in process_node()
516 uint8_t class; in process_hbuf() local
540 class = node_rx->hdr.user_meta; in process_hbuf()
542 if (class == HCI_CLASS_EVT_CONNECTION || in process_hbuf()
[all …]
/Zephyr-Core-3.5.0/modules/thrift/src/thrift/transport/
DTSSLSocket.h25 class AccessManager;
26 class SSLContext;
61 class TSSLSocket : public TSocket
187 friend class TSSLSocketFactory;
214 class TSSLSocketFactory
361 class TSSLException : public TTransportException
390 class AccessManager
453 class DefaultClientAccessManager : public AccessManager
DTSSLServerSocket.h19 class TSSLSocketFactory;
24 class TSSLServerSocket : public TServerSocket
DTServerSocket.h31 class TSocket;
38 class TServerSocket : public TServerTransport
/Zephyr-Core-3.5.0/doc/connectivity/networking/api/
Dtraffic-class.rst1 .. _traffic-class-support:
18 the number of receive queues. Each traffic class queue corresponds to a
20 The VLAN priority is mapped to a certain traffic class according to rules
22 and chapter 34.5 table 34-1. Each traffic class is in turn mapped to a certain
Dsystem_mgmt.rst18 traffic-class.rst
/Zephyr-Core-3.5.0/drivers/pcie/host/
Dcontroller.c162 uint32_t class = pcie_conf_read(bdf, PCIE_CONF_CLASSREV); in pcie_generic_ctrl_enumerate_type1() local
165 if (PCIE_CONF_CLASSREV_CLASS(class) == 0x06 && in pcie_generic_ctrl_enumerate_type1()
166 PCIE_CONF_CLASSREV_SUBCLASS(class) == 0x04) { in pcie_generic_ctrl_enumerate_type1()
273 uint32_t data, class, id; in pcie_generic_ctrl_enumerate_endpoint() local
283 class = pcie_conf_read(bdf, PCIE_CONF_CLASSREV); in pcie_generic_ctrl_enumerate_endpoint()
293 PCIE_CONF_CLASSREV_CLASS(class), in pcie_generic_ctrl_enumerate_endpoint()
294 PCIE_CONF_CLASSREV_SUBCLASS(class), in pcie_generic_ctrl_enumerate_endpoint()
295 PCIE_CONF_CLASSREV_PROGIF(class), in pcie_generic_ctrl_enumerate_endpoint()
296 PCIE_CONF_CLASSREV_REV(class), in pcie_generic_ctrl_enumerate_endpoint()
/Zephyr-Core-3.5.0/doc/connectivity/usb/device/api/
Dusb_device.rst13 To transmit data to the host, the class driver should call usb_write().
15 sending another packet the class driver should wait for the completion of
24 USB transaction(s), depending endpoint max packet size. The class driver does
Dusb_device_hid.rst7 :zephyr_file:`include/zephyr/usb/class/usb_hid.h`.
/Zephyr-Core-3.5.0/modules/thrift/src/thrift/protocol/
DTBinaryProtocol.h45 template <class Transport_, class ByteOrder_ = TNetworkBigEndian>
46 class TBinaryProtocolT : public TVirtualProtocol<TBinaryProtocolT<Transport_, ByteOrder_>>
219 template <class Transport_, class ByteOrder_ = TNetworkBigEndian>
220 class TBinaryProtocolFactoryT : public TProtocolFactory
/Zephyr-Core-3.5.0/subsys/usb/device_next/class/
DKconfig.msc6 bool "USB Mass Storage Device class support [EXPERIMENTAL]"
9 USB Mass Storage device class support.
/Zephyr-Core-3.5.0/scripts/tests/twister/
DREADME.md55 - test_testsuite_class.py : Contains testcases for Testsuite class (except reporting functionality)…
56 - test_testinstance.py : Contains testcases for Testinstance and Testcase class.
57 - test_reporting_testsuite.py : Contains testcases for reporting functionality of Testsuite class o…
/Zephyr-Core-3.5.0/samples/subsys/lorawan/class_a/
DREADME.rst1 .. zephyr:code-sample:: lorawan-class-a
2 :name: LoRaWAN class A device
/Zephyr-Core-3.5.0/samples/drivers/ethernet/eth_ivshmem/boards/
Dqemu_cortex_a53.overlay50 class-rev = <0xFF000100>; /* PCI_CLASS_OTHERS | IVSHMEM_PROTO_NET */
51 class-rev-mask = <0xFFFFFF00>; /* PCI_CLASS_MASK | IVSHMEM_PROTO_MASK */
/Zephyr-Core-3.5.0/doc/connectivity/usb/device_next/
Dusb_device.rst12 class instances to a configuration at runtime. The stack also provides a specific
13 class API that should be used to implement the functions (classes).
50 At the moment only CDC ECM class is implemented and has support for multiple instances.
/Zephyr-Core-3.5.0/doc/develop/west/
Dextensions.rst74 This file must contain a subclass of the ``west.commands.WestCommand`` class;
75 this class will be instantiated and used when your extension is run.
92 class MyCommand(WestCommand):
142 Here is an example for the above class definition, assuming it's in
151 class: MyCommand
158 (if not given, the ``class`` value defaults to the same thing as ``name``).
185 class: MyCommand
192 class: ThirdCommand
198 with class ``MyCommand``
201 #. ``command2`` with class ``command2``
[all …]

1234567