Home
last modified time | relevance | path

Searched refs:poll (Results 1 – 25 of 104) sorted by relevance

12345

/Zephyr-latest/drivers/net/
Dnsos_sockets.c58 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/
Dnative_sim.overlay20 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/
Dnative_sim.overlay12 poll-period-ms = <5>;
15 poll-timeout-ms = <500>;
/Zephyr-latest/drivers/stepper/adi_tmc/
DKconfig.tmc_rampgen_template5 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/
DKconfig23 like read, write and poll.
37 bool "ZVFS poll"
51 Maximum number of entries supported for poll() call.
/Zephyr-latest/tests/kernel/poll/
DCMakeLists.txt5 project(poll) project
/Zephyr-latest/include/zephyr/posix/
Dpoll.h26 int poll(struct pollfd *fds, int nfds, int timeout);
/Zephyr-latest/tests/posix/headers/src/
Dpoll_h.c40 zassert_not_null(poll); in ZTEST()
/Zephyr-latest/doc/kernel/services/
Dpolling.rst17 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/
DKconfig.ht16k3350 int "Keyscan poll interval in milliseconds"
54 Keyscan poll interval in milliseconds. Polling is only used
/Zephyr-latest/subsys/net/lib/sntp/
Dsntp_pkt.h23 uint8_t poll; member
/Zephyr-latest/lib/posix/options/
DKconfig.compat16 like read, write and poll.
/Zephyr-latest/samples/subsys/mgmt/updatehub/
Doverlay-prj.conf.example11 #This example, the updatehub will poll on the server
/Zephyr-latest/samples/net/sockets/echo_async/
DREADME.rst2 :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/
DREADME.rst10 A sensor sample that demonstrates how to poll a CO2 sensor.
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dbinary_adapter.py82 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/
Dzynqmp.dtsi115 phy-poll-interval = <1000>;
142 phy-poll-interval = <1000>;
169 phy-poll-interval = <1000>;
196 phy-poll-interval = <1000>;
Dzynq7000.dtsi62 phy-poll-interval = <1000>;
89 phy-poll-interval = <1000>;
/Zephyr-latest/drivers/serial/
DKconfig.intel_lw21 bool "Auto set RTS signal during poll out"
/Zephyr-latest/samples/sensor/max30101/
DREADME.rst10 A sensor application that demonstrates how to poll data from the max30101 heart
/Zephyr-latest/tests/drivers/build_all/input/
Dapp.overlay100 idle-mode = "poll";
110 poll-timeout-ms = <0>;
132 idle-poll-time-us = <5000>;
/Zephyr-latest/tests/posix/eventfd/src/
D_main.c25 ret = poll(&pfd, 1, 0); in is_blocked()
/Zephyr-latest/samples/drivers/charger/
DREADME.rst14 - The application will first poll for external power provided to the charger device.
/Zephyr-latest/subsys/modem/backends/
Dmodem_backend_tty.c39 if (poll(&pd, 1, MODEM_BACKEND_TTY_THREAD_RUN_PERIOD_MS) < 0) { in modem_backend_tty_routine()
/Zephyr-latest/doc/services/input/
Dgpio-kbd.rst121 ``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>;

12345