Home
last modified time | relevance | path

Searched refs:fcntl (Results 1 – 17 of 17) sorted by relevance

/Zephyr-latest/scripts/pylib/twister/twisterlib/
Djobserver.py5 import fcntl
150 rc = fcntl.fcntl(pipe[0], fcntl.F_GETFL)
158 rc = fcntl.fcntl(pipe[1], fcntl.F_GETFL)
/Zephyr-latest/lib/posix/options/
Dfd_mgmt.c21 int fcntl(int fd, int cmd, ...) in fcntl() function
33 FUNC_ALIAS(fcntl, _fcntl, int);
DKconfig.fd_mgmt9 This includes support for dup(), dup2(), fcntl(), fseeko(), ftello(), ftruncate(),
23 When selected via Kconfig, Zephyr will provide an alias for fcntl() as _fcntl().
/Zephyr-latest/tests/bsim/bluetooth/ll/edtt/common/
Dedtt_driver_bsim.c207 flags = fcntl(fifo[TO_EDTT], F_GETFL); in edptd_create_fifo_if()
209 fcntl(fifo[TO_EDTT], F_SETFL, flags); in edptd_create_fifo_if()
217 flags = fcntl(fifo[TO_DEVICE], F_GETFL); in edptd_create_fifo_if()
219 fcntl(fifo[TO_DEVICE], F_SETFL, flags); in edptd_create_fifo_if()
/Zephyr-latest/lib/libc/arcmwdt/include/
Dfcntl.h10 #include_next <fcntl.h>
/Zephyr-latest/include/zephyr/posix/
Dfcntl.h38 int fcntl(int fildes, int cmd, ...);
/Zephyr-latest/drivers/serial/
Duart_native_ptty_bottom.c169 flags = fcntl(master_pty, F_GETFL); in np_uart_open_ptty()
177 ret = fcntl(master_pty, F_SETFL, flags | O_NONBLOCK); in np_uart_open_ptty()
/Zephyr-latest/cmake/sca/eclair/ECL/
Dlanguage_extensions.ecl5 -config=MC3R1.R1.2,behaviors+={hide,"service(STD.freestlb)&&category(^(string|fcntl|time|errno|ctyp…
Dtoolchain.ecl64 -config=STD.freestlb,behavior+={c99,GCC,"^(string|fcntl|time|errno|ctype|stdio|inttypes|stdlib).h$"}
/Zephyr-latest/samples/net/sockets/echo_async/src/
Dsocket_echo.c60 fl = fcntl(fd, F_GETFL, 0); in setblocking()
71 res = fcntl(fd, F_SETFL, fl); in setblocking()
/Zephyr-latest/samples/net/sockets/echo_async_select/src/
Dsocket_echo_select.c62 fl = fcntl(fd, F_GETFL, 0); in setblocking()
73 res = fcntl(fd, F_SETFL, fl); in setblocking()
/Zephyr-latest/subsys/net/lib/sockets/
Dsockets.c723 SYS_PORT_TRACING_OBJ_FUNC_ENTER(socket, fcntl, sock, cmd, flags); in z_impl_zsock_fcntl_impl()
728 SYS_PORT_TRACING_OBJ_FUNC_EXIT(socket, fcntl, sock, -errno); in z_impl_zsock_fcntl_impl()
739 SYS_PORT_TRACING_OBJ_FUNC_EXIT(socket, fcntl, sock, in z_impl_zsock_fcntl_impl()
/Zephyr-latest/scripts/tests/twister/
Dtest_jobserver.py23 from fcntl import F_GETFL
/Zephyr-latest/doc/connectivity/networking/api/
Dsockets.rst31 ``listen()``, ``accept()``, ``fcntl()`` (to set non-blocking mode),
40 functions like ``close()`` and ``fcntl()`` (which may conflict with
/Zephyr-latest/drivers/net/
Dnsos_adapt.c1084 flags = fcntl(fd, F_GETFL); in nsos_adapt_fcntl_getfl()
1093 ret = fcntl(fd, F_SETFL, fl_from_nsos_mid(flags)); in nsos_adapt_fcntl_setfl()
/Zephyr-latest/doc/services/portability/posix/option_groups/
Dindex.rst195 fcntl(),
/Zephyr-latest/doc/releases/
Drelease-notes-3.3.rst289 * Deprecated ``<fcntl.h>``, ``<sys/stat.h>`` header files in the minimal libc in favour of
290 ``<zephyr/posix/fcntl.h>`` and ``<zephyr/posix/sys/stat.h>``.
2435 * E.g. move ``fcntl.h``, ``sys/stat.h`` from the minimal libc into the
2438 :c:macro:`O_WRONLY`, to ``fcntl.h``.
2858 * :github:`54760` - net_lwm2m_engine: fcntl(F_GETFL) failed (-22) on es-wifi
2937 * :github:`54347` - zephyr/posix/fcntl.h header works differently on native_posix platform