/Zephyr-latest/drivers/net/ |
D | nsos_sockets.c | 58 struct nsos_socket_poll poll; member 208 sock->poll.mid.fd = nsos_adapt_socket(family_mid, type_mid, proto_mid); in nsos_socket_create() 209 if (sock->poll.mid.fd < 0) { in nsos_socket_create() 210 errno = errno_from_nsos_mid(-sock->poll.mid.fd); in nsos_socket_create() 237 ret = nsi_host_read(sock->poll.mid.fd, buf, sz); in nsos_read() 250 ret = nsi_host_write(sock->poll.mid.fd, buf, sz); in nsos_write() 261 struct nsos_socket_poll *poll; in nsos_close() local 264 ret = nsi_host_close(sock->poll.mid.fd); in nsos_close() 269 SYS_DLIST_FOR_EACH_CONTAINER(&nsos_polls, poll, node) { in nsos_close() 270 if (poll == &sock->poll) { in nsos_close() [all …]
|
/Zephyr-latest/tests/drivers/input/gpio_kbd_matrix/boards/ |
D | native_sim.overlay | 20 poll-timeout-ms = <500>; 23 kbd_matrix_poll: kbd-matrix-poll { 31 poll-timeout-ms = <500>; 32 idle-mode = "poll"; 45 poll-timeout-ms = <0>;
|
/Zephyr-latest/tests/drivers/input/kbd_matrix/boards/ |
D | native_sim.overlay | 12 poll-period-ms = <5>; 15 poll-timeout-ms = <500>;
|
/Zephyr-latest/drivers/stepper/adi_tmc/ |
D | Kconfig.tmc_rampgen_template | 5 bool "$(module-str) poll ramp status" 16 int "$(module-str) poll ramp status interval in ms" 20 The interval in ms to poll the ramp status on TMC.
|
/Zephyr-latest/lib/os/zvfs/ |
D | Kconfig | 23 like read, write and poll. 37 bool "ZVFS poll" 51 Maximum number of entries supported for poll() call.
|
/Zephyr-latest/tests/kernel/poll/ |
D | CMakeLists.txt | 5 project(poll) project
|
/Zephyr-latest/include/zephyr/posix/ |
D | poll.h | 26 int poll(struct pollfd *fds, int nfds, int timeout);
|
/Zephyr-latest/tests/posix/headers/src/ |
D | poll_h.c | 40 zassert_not_null(poll); in ZTEST()
|
/Zephyr-latest/doc/kernel/services/ |
D | polling.rst | 17 in concept to the POSIX :c:func:`poll` function, except that it operates on 29 - a poll signal is raised 32 **poll events**, one for each condition. 48 Apart from the kernel objects, there is also a **poll signal** pseudo-object 55 nature of the kernel. The caller must look at the state of all the poll events 60 the poll event states that the semaphore is available, the caller of 72 The main API is :c:func:`k_poll`, which operates on an array of poll events 214 signal to a poll event. This can be seen as a lightweight binary semaphore only 217 A poll signal is a separate object of type :c:struct:`k_poll_signal` that 304 Note that poll signals are not internally synchronized. A :c:func:`k_poll` call [all …]
|
/Zephyr-latest/drivers/led/ |
D | Kconfig.ht16k33 | 50 int "Keyscan poll interval in milliseconds" 54 Keyscan poll interval in milliseconds. Polling is only used
|
/Zephyr-latest/subsys/net/lib/sntp/ |
D | sntp_pkt.h | 23 uint8_t poll; member
|
/Zephyr-latest/lib/posix/options/ |
D | Kconfig.compat | 16 like read, write and poll.
|
/Zephyr-latest/samples/subsys/mgmt/updatehub/ |
D | overlay-prj.conf.example | 11 #This example, the updatehub will poll on the server
|
/Zephyr-latest/samples/net/sockets/echo_async/ |
D | README.rst | 2 :name: Asynchronous echo server using poll() 5 Implement an asynchronous IPv4/IPv6 TCP echo server using BSD sockets and poll() 12 with non-blocking sockets and a ``poll()`` call. This is an extension of
|
/Zephyr-latest/samples/sensor/co2_polling/ |
D | README.rst | 10 A sensor sample that demonstrates how to poll a CO2 sensor.
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | binary_adapter.py | 82 return_code: int | None = self._process.poll() 104 if self._process is None or self._process.poll() is not None:
|
/Zephyr-latest/dts/arm/xilinx/ |
D | zynqmp.dtsi | 115 phy-poll-interval = <1000>; 142 phy-poll-interval = <1000>; 169 phy-poll-interval = <1000>; 196 phy-poll-interval = <1000>;
|
D | zynq7000.dtsi | 62 phy-poll-interval = <1000>; 89 phy-poll-interval = <1000>;
|
/Zephyr-latest/drivers/serial/ |
D | Kconfig.intel_lw | 21 bool "Auto set RTS signal during poll out"
|
/Zephyr-latest/samples/sensor/max30101/ |
D | README.rst | 10 A sensor application that demonstrates how to poll data from the max30101 heart
|
/Zephyr-latest/tests/drivers/build_all/input/ |
D | app.overlay | 100 idle-mode = "poll"; 110 poll-timeout-ms = <0>; 132 idle-poll-time-us = <5000>;
|
/Zephyr-latest/tests/posix/eventfd/src/ |
D | _main.c | 25 ret = poll(&pfd, 1, 0); in is_blocked()
|
/Zephyr-latest/samples/drivers/charger/ |
D | README.rst | 14 - The application will first poll for external power provided to the charger device.
|
/Zephyr-latest/subsys/modem/backends/ |
D | modem_backend_tty.c | 39 if (poll(&pd, 1, MODEM_BACKEND_TTY_THREAD_RUN_PERIOD_MS) < 0) { in modem_backend_tty_routine()
|
/Zephyr-latest/doc/services/input/ |
D | gpio-kbd.rst | 121 ``poll``: 128 idle-mode = "poll"; 138 This can be done by setting ``idle-mode`` to ``scan`` and ``poll-timeout-ms`` 146 poll-timeout-ms = <0>;
|