Searched refs:F_GETFL (Results 1 - 14 of 14) sorted by relevance

/fuchsia/zircon/system/utest/fs/
H A Dtest-fcntl.cpp35 // Use F_GETFL; observe O_APPEND
36 int flags = fcntl(fd, F_GETFL);
44 // Use F_GETFL; observe O_APPEND has been turned off
45 flags = fcntl(fd, F_GETFL);
77 // Use F_GETFL; observe O_APPEND
78 int flags = fcntl(fd, F_GETFL);
H A Dtest-access.cpp180 int flags = fcntl(fd, F_GETFL);
187 flags = fcntl(fd, F_GETFL);
H A Dtest-append.cpp112 ASSERT_EQ(fcntl(fd.get(), F_GETFL), O_APPEND | O_RDWR);
118 ASSERT_EQ(fcntl(fd.get(), F_GETFL), O_RDWR);
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A D__fdopen.c19 int flags = fcntl(fd, F_GETFL);
/fuchsia/zircon/system/utest/fdio/
H A Dfdio_socket.c32 int flags = fcntl(fd, F_GETFL);
H A Dfdio_handle_fd.c65 status = fcntl(fds[0], F_GETFL);
66 ASSERT_EQ(status, 0, "fcntl(F_GETFL) failed");
72 status = fcntl(fds[0], F_GETFL);
73 ASSERT_EQ(status, O_NONBLOCK, "fcntl(F_GETFL) failed");
250 int flags = fcntl(fd, F_GETFL);
251 ASSERT_EQ(flags, 0, "fcntl(F_GETFL) failed");
/fuchsia/zircon/third_party/ulib/musl/include/
H A Dfcntl.h81 #define F_GETFL 3 macro
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dshow.c399 if ((flags = fcntl(fileno(tracefile), F_GETFL, 0)) >= 0)
H A Dinput.c193 int flags = fcntl(0, F_GETFL, 0);
/fuchsia/zircon/system/host/bootserver/
H A Dtftp.c133 int flags = fcntl(state->socket, F_GETFL, 0);
/fuchsia/zircon/system/host/netprotocol/
H A Dnetcp.c135 int flags = fcntl(transport_info->socket, F_GETFL, 0);
/fuchsia/zircon/system/ulib/tftp/
H A Dtftp-example.c72 int fl = fcntl(connection->socket, F_GETFL, 0);
/fuchsia/zircon/system/host/xdc-server/
H A Dxdc-server.cpp364 int flags = fcntl(client_fd, F_GETFL, 0);
/fuchsia/zircon/system/ulib/fdio/
H A Dunistd.c1210 case F_GETFL: {

Completed in 101 milliseconds