Home
last modified time | relevance | path

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

12

/components/libc/cplusplus/cpp11/gcc/
A Dcondition_variable23 enum class cv_status
29 class condition_variable
63 template <class Clock, class Duration>
81 template <class Clock, class Duration, class Predicate>
92 template <class Rep, class Period>
99 template <class Rep, class Period, class Predicate>
174 template <class Lock, class Predicate>
181 template <class Lock, class Clock, class Duration>
193 template <class Lock, class Clock, class Duration, class Predicate>
204 template <class Lock, class Rep, class Period>
[all …]
A Dmutex212 template <class Clock, class Duration>
217 template <class Rep, class Period>
279 template <class Rep, class Period>
294 template <class Clock, class Duration>
356 template <class L0, class L1>
375 template <class L0, class L1, class L2, class... L3>
392 template <class L0, class L1, class L2, class ...L3>
438 template <class L0, class L1>
465 template <class L0, class L1, class... L2>
478 template <class Callable, class... Args>
[all …]
A Dfuture15 enum class future_status {
23 class shared_state_base {
47 template <class Rep, class Period>
57 template <class Clock, class Duration>
127 class future {
164 template <class Rep, class Period>
170 template <class Clock, class Duration>
219 template <class Rep, class Period>
225 template <class Clock, class Duration>
237 class promise {
[all …]
A Dthread34 class thread
42 class id
53 friend class thread;
54 friend class hash<thread::id>;
60 template <class charT, class traits>
70 template <class F, class ...Args>
186 template <class charT, class traits>
220 template <class Rep, class Period>
230 template <class Clock, class Duration>
A D__utils.h31 class tick_clock
45 class real_time_clock
/components/legacy/usb/usbhost/
A DSConscript13 src += Glob('class/adk.c')
14 src += Glob('class/adkapp.c')
17 src += Glob('class/mass.c')
18 src += Glob('class/udisk.c')
21 src += Glob('class/hid.c')
24 src += Glob('class/umouse.c')
27 src += Glob('class/ukbd.c')
29 CPPPATH = [cwd, cwd + '/class', cwd + '/core', \
/components/legacy/usb/usbdevice/
A DSConscript11 src += Glob('class/cdc_vcom.c')
14 src += Glob('class/hid.c')
17 src += Glob('class/mstorage.c')
20 src += Glob('class/ecm.c')
23 src += Glob('class/rndis.c')
26 src += Glob('class/winusb.c')
29 src += Glob('class/audio_mic.c')
32 src += Glob('class/audio_speaker.c')
/components/drivers/usb/cherryusb/
A DSConscript7 path += [cwd + '/class/hub']
8 path += [cwd + '/class/cdc']
9 path += [cwd + '/class/msc']
10 path += [cwd + '/class/hid']
11 path += [cwd + '/class/audio']
12 path += [cwd + '/class/video']
13 path += [cwd + '/class/wireless']
14 path += [cwd + '/class/midi']
15 path += [cwd + '/class/adb']
16 path += [cwd + '/class/dfu']
[all …]
A Dcherryusb.cmake40 ${CMAKE_CURRENT_LIST_DIR}/class/hub
41 ${CMAKE_CURRENT_LIST_DIR}/class/cdc
42 ${CMAKE_CURRENT_LIST_DIR}/class/hid
43 ${CMAKE_CURRENT_LIST_DIR}/class/msc
44 ${CMAKE_CURRENT_LIST_DIR}/class/audio
45 ${CMAKE_CURRENT_LIST_DIR}/class/video
46 ${CMAKE_CURRENT_LIST_DIR}/class/wireless
47 ${CMAKE_CURRENT_LIST_DIR}/class/midi
48 ${CMAKE_CURRENT_LIST_DIR}/class/adb
49 ${CMAKE_CURRENT_LIST_DIR}/class/dfu
[all …]
A DREADME.md28 … the following advantages have been designed for the data sending and receiving class of interface:
35 …retical bandwidth of the USB hardware, the design of the data transceiver class interface has the …
47 |class | usb class driver |
52 |platform | class support for other os |
76 - Support Vendor class
112 - Support USB Bluetooth class (support nimble and zephyr bluetooth stack, support **CLASS:0xE0** or…
113 - Support Vendor class (serial, net, wifi)
A DREADME_zh.md49 |class | usb class 类主从驱动 |
52 |demo | 主从 class demo |
78 - 支持 Vendor 类 class
115 - 支持 Vendor 类 class (serial, net, wifi)
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A Dmultilink.c462 ep->class = EPD_MAC;
474 ep->class = EPD_IP;
501 if (ep->class == EPD_NULL && ep->length == 0)
503 if (ep->class == EPD_IP && ep->length == 4) {
513 if (ep->class == EPD_MAC && ep->length == 6)
515 else if (ep->class == EPD_MAGIC && (ep->length % 4) == 0)
518 if (ep->class <= EPD_PHONENUM)
520 endp_class_names[ep->class]);
522 q += slprintf(q, sizeof(str)-1, "%d", ep->class);
565 ep->class = i;
[all …]
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A Dmultilink.c462 ep->class = EPD_MAC;
474 ep->class = EPD_IP;
501 if (ep->class == EPD_NULL && ep->length == 0)
503 if (ep->class == EPD_IP && ep->length == 4) {
513 if (ep->class == EPD_MAC && ep->length == 6)
515 else if (ep->class == EPD_MAGIC && (ep->length % 4) == 0)
518 if (ep->class <= EPD_PHONENUM)
520 endp_class_names[ep->class]);
522 q += slprintf(q, sizeof(str)-1, "%d", ep->class);
565 ep->class = i;
[all …]
/components/drivers/pci/
A Dprobe.c259 rt_uint16_t class = pdev->class >> 8; in pci_cfg_space_size() local
261 if (class == PCIS_BRIDGE_HOST) in pci_cfg_space_size()
307 rt_uint32_t class = 0; in rt_pci_setup_device() local
322 rt_pci_read_config_u32(pdev, PCIR_REVID, &class); in rt_pci_setup_device()
324 pdev->revision = class & 0xff; in rt_pci_setup_device()
325 pdev->class = class >> 8; /* Upper 3 bytes */ in rt_pci_setup_device()
348 if (class == PCIS_BRIDGE_PCI) in rt_pci_setup_device()
370 if (class != PCIS_BRIDGE_CARDBUS) in rt_pci_setup_device()
385 LOG_E("Ignoring class %08x (doesn't match header type %02x)", pdev->class, pdev->hdr_type); in rt_pci_setup_device()
386 pdev->class = PCIC_NOT_DEFINED << 8; in rt_pci_setup_device()
A Dpci.c538 rt_uint16_t class, command = 0; in rt_pci_device_alloc_resource() local
705 rt_pci_read_config_u16(pdev, PCIR_SUBCLASS, &class); in rt_pci_device_alloc_resource()
707 if (class == PCIS_DISPLAY_VGA) in rt_pci_device_alloc_resource()
868 !((id->class ^ pdev->class) & id->class_mask)) in rt_pci_match_id()
/components/drivers/usb/cherryusb/platform/
A DREADME.md13 lwip support with usb host net class(cdc_ecm/cdc_ncm/cdc_rndis/asix/rtl8152/bl616_wifi).
19 - lwip support with usb host net class(cdc_ecm/cdc_ncm/cdc_rndis/asix/rtl8152/bl616_wifi).
30 - net support with usb host net class(cdc_rndis).
/components/libc/cplusplus/os/
A Dcxx_mutex.h21 class Mutex {
A Dcxx_semaphore.h19 class Semaphore
A Dcxx_lock.h18 class Lock
A Dcxx_queue.h28 class Queue
A Dcxx_thread.h20 class Thread
A Dcxx_mail.h28 class Mail {
/components/libc/cplusplus/cpp11/armclang/
A Dtpl.h41 class arm_tpl_cv
/components/net/lwip/lwip-2.0.3/doc/doxygen/
A Dlwip.Doxyfile121 ABBREVIATE_BRIEF = "The $name class " \
141 # inherited members of a class in the documentation of that class as if those
220 # of the file/class/namespace that contains it.
244 # A mapping has the form "name=value". For example adding "class=itcl::class"
245 # will allow you to use the command class in the itcl::class meaning.
423 # class members and static file members will be hidden unless the
1037 # See also: Section \class.
1062 # Configuration options related to the alphabetical class index
2280 # class with other documented classes.
2341 # dependency graph for every global function or class method.
[all …]
/components/net/lwip/lwip-2.1.2/doc/doxygen/
A Dlwip.Doxyfile121 ABBREVIATE_BRIEF = "The $name class " \
141 # inherited members of a class in the documentation of that class as if those
220 # of the file/class/namespace that contains it.
244 # A mapping has the form "name=value". For example adding "class=itcl::class"
245 # will allow you to use the command class in the itcl::class meaning.
432 # class members and static file members will be hidden unless the
1048 # See also: Section \class.
1073 # Configuration options related to the alphabetical class index
2303 # class with other documented classes.
2364 # dependency graph for every global function or class method.
[all …]

Completed in 29 milliseconds

12