Searched refs:fcntl (Results 1 – 17 of 17) sorted by relevance
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | jobserver.py | 5 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/ |
D | fd_mgmt.c | 21 int fcntl(int fd, int cmd, ...) in fcntl() function 33 FUNC_ALIAS(fcntl, _fcntl, int);
|
D | Kconfig.fd_mgmt | 9 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/ |
D | edtt_driver_bsim.c | 207 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/ |
D | fcntl.h | 10 #include_next <fcntl.h>
|
/Zephyr-latest/include/zephyr/posix/ |
D | fcntl.h | 38 int fcntl(int fildes, int cmd, ...);
|
/Zephyr-latest/drivers/serial/ |
D | uart_native_ptty_bottom.c | 169 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/ |
D | language_extensions.ecl | 5 -config=MC3R1.R1.2,behaviors+={hide,"service(STD.freestlb)&&category(^(string|fcntl|time|errno|ctyp…
|
D | toolchain.ecl | 64 -config=STD.freestlb,behavior+={c99,GCC,"^(string|fcntl|time|errno|ctype|stdio|inttypes|stdlib).h$"}
|
/Zephyr-latest/samples/net/sockets/echo_async/src/ |
D | socket_echo.c | 60 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/ |
D | socket_echo_select.c | 62 fl = fcntl(fd, F_GETFL, 0); in setblocking() 73 res = fcntl(fd, F_SETFL, fl); in setblocking()
|
/Zephyr-latest/subsys/net/lib/sockets/ |
D | sockets.c | 723 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/ |
D | test_jobserver.py | 23 from fcntl import F_GETFL
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | sockets.rst | 31 ``listen()``, ``accept()``, ``fcntl()`` (to set non-blocking mode), 40 functions like ``close()`` and ``fcntl()`` (which may conflict with
|
/Zephyr-latest/drivers/net/ |
D | nsos_adapt.c | 1084 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/ |
D | index.rst | 195 fcntl(),
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.3.rst | 289 * 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
|