Home
last modified time | relevance | path

Searched refs:select (Results 1 – 25 of 131) sorted by relevance

123456

/AliOS-Things-master/components/select/
A DREADME.md1 @page select select
6 select组件实现了IO多路复用机制select和poll。
9 - select
27 │   └── select.h # 对外头文件
32 └── select
33 └── select.c # aos_select接口实现
53 - 参考 [select](https://man7.org/linux/man-pages/man2/select.2.html)
76 - select: master # helloworld_demo中引入select组件
84 aos install select
92select组件的package.yaml中添加example:
[all …]
/AliOS-Things-master/components/py_engine/tests/extmod/
A Duselect_poll_udp.py4 import usocket as socket, uselect as select namespace
7 import socket, select
15 poll = select.poll()
18 poll.register(s, select.POLLIN)
22 poll.modify(s, select.POLLOUT)
23 print(poll.poll(0)[0][1] == select.POLLOUT)
26 if hasattr(select, "select"):
27 r, w, e = select.select([s], [], [], 0)
A Duselect_poll_basic.py2 import usocket as socket, uselect as select, uerrno as errno namespace
5 import socket, select, errno
7 select.poll # Raises AttributeError for CPython implementations without poll()
13 poller = select.poll()
29 poller.modify(s, select.POLLIN)
34 poller.modify(s, select.POLLIN)
/AliOS-Things-master/hardware/chip/rtl872xd/hal/hal_test/
A DConfig.in6 select AOS_COMP_UART_TEST if ENABLE_UART
7 select AOS_COMP_GPIO_TEST if ENABLE_GPIO
8 select AOS_COMP_I2C_TEST if ENABLE_I2C
9 select AOS_COMP_SPI_TEST if ENABLE_SPI
10 select AOS_COMP_FLASH_TEST if ENABLE_FLASH
11 select AOS_COMP_ADC_TEST if ENABLE_ADC
12 select AOS_COMP_DAC_TEST if ENABLE_DAC
13 select AOS_COMP_PWM_TEST if ENABLE_PWM
14 select AOS_COMP_RNG_TEST if ENABLE_RNG
15 select AOS_COMP_RTC_TEST if ENABLE_RTC
[all …]
/AliOS-Things-master/components/py_engine/engine/extmod/uasyncio/
A Dcore.py5 import sys, select
71 self.poller = select.poll()
79 self.poller.register(s, select.POLLIN if idx == 0 else select.POLLOUT)
85 self.poller.modify(s, select.POLLIN | select.POLLOUT)
116 if ev & ~select.POLLOUT and sm[0] is not None:
120 if ev & ~select.POLLIN and sm[1] is not None:
127 self.poller.modify(s, select.POLLOUT)
129 self.poller.modify(s, select.POLLIN)
/AliOS-Things-master/components/py_engine/tests/net_hosted/
A Dconnect_poll.py4 import usocket as socket, uselect as select namespace
6 import socket, select
11 poller = select.poll()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/
A Dbuild_defs.bzl6 return select({
31 return select({
43 return select({
47 # Careful to keep debug builds debuggable, whence the select based
58 return select({
65 return select({
75 return select({
A DBUILD382 select({
388 }) + select({
389 # This select must match the similar select in `deps`.
403 ] + select({
404 # This select must match the similar select in `copts`
1128 linkopts = select({
/AliOS-Things-master/components/py_engine/engine/tools/mpremote/mpremote/
A Dconsole.py4 import select, termios
7 select = None variable
36 select.select([self.infd, pyb_serial.fd], [], [])
39 res = select.select([self.infd], [], [], 0)
/AliOS-Things-master/components/amp/libjs/lib/
A Dsmartcard.js18 select(operator) {
19 return __native.smartcard.select(operator);
/AliOS-Things-master/components/py_engine/tests/multi_net/
A Dtcp_client_rst.py3 import struct, time, socket, select
23 poll = select.poll()
24 poll.register(s2, select.POLLIN)
/AliOS-Things-master/components/ble_host/bt_host/
A DKconfig12 select NET_BUF
52 select BT_RECV_IS_RX_THREAD
65 select BT_RECV_IS_RX_THREAD
99 select BT_BROADCASTER
100 select BT_CONN
107 select BT_OBSERVER
108 select BT_CONN
154 select POLL
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/third_party/
A Dcpuinfo.BUILD104 copts = select({
108 linkopts = select({
112 linkstatic = select({
117 defines = select({
127 srcs = select({
153 copts = select({
160 linkstatic = select({
/AliOS-Things-master/components/ble_host/bt_host/host/
A DKconfig17 select POLL
133 select TINYCRYPT
134 select TINYCRYPT_AES
255 select TINYCRYPT
256 select TINYCRYPT_AES
258 select BT_RPA
405 select TINYCRYPT
539 select BT_CENTRAL
540 select BT_SMP
572 select BT_RFCOMM
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/mlir/testing/
A DBUILD37 args = args + select({
48 # data = select({
73 ] + select({
/AliOS-Things-master/components/py_engine/
A DConfig.in4 select AOS_COMP_AMP_ADAPTER
/AliOS-Things-master/components/amp_adapter/
A DConfig.in4 #select VFS_CONFIG_ROOTFS
/AliOS-Things-master/components/posix/src/
A Dselect.c10 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, in select() function
/AliOS-Things-master/components/ble_host/bt_shell/bt_host/
A DKconfig11 select CONSOLE_SHELL
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/microfrontend/
A DBUILD39 ] + select({
51 ] + select({
/AliOS-Things-master/components/posix/
A Dpackage.yaml13 - select: master
/AliOS-Things-master/documentation/doxygen/style/
A Ddoxygen-custom.css332 -khtml-user-select: none;
333 -moz-user-select: none;
334 -ms-user-select: none;
335 user-select: none;
890 user-select: none;
963 -moz-user-select: none;
964 -ms-user-select: none;
965 user-select: none;
1517 -moz-user-select: none;
1518 -ms-user-select: none;
[all …]
/AliOS-Things-master/components/ble_host/bt_host/port/core/
A DKconfig30 select SYS_LOG
61 select SYS_LOG
/AliOS-Things-master/components/uservice/src/
A Dselect.c32 __attribute__((weak)) int select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset, in select() function
/AliOS-Things-master/components/posix/include/sys/
A Dselect.h28 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds,

Completed in 35 milliseconds

123456