|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
projects/compiler-rt/lib/profile/InstrProfilingUtil.c 135 while (fcntl(fd, F_SETLKW, &s_flock) == -1) {
160 while (fcntl(fd, F_SETLKW, &s_flock) == -1) {
tools/lldb/source/Host/common/Terminal.cpp 112 m_tflags = ::fcntl(fd, F_GETFL, 0);
145 fcntl(fd, F_SETFL, m_tflags);
tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp 193 int flags = ::fcntl(fd, F_GETFL, 0);
266 int flags = ::fcntl(fd, F_GETFL, 0);
270 ::fcntl(fd, F_SETFL, flags);
tools/lldb/source/Host/posix/LockFilePosix.cpp 32 if (llvm::sys::RetryAfterSignal(-1, ::fcntl, fd, cmd, &fl) == -1)
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp 195 int status = fcntl(fd, F_GETFL);
201 if (fcntl(fd, F_SETFL, status | flags) == -1) {
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp 3443 int flags = ::fcntl(fd, F_GETFD);
3446 return (::fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == 0);
tools/lldb/tools/lldb-server/lldb-gdbserver.cpp 241 ::fcntl(connection_fd, F_SETFD, FD_CLOEXEC);
utils/unittest/googletest/src/gtest-death-test.cc 1134 GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1);