Lines Matching refs:flags
81 int flags; in SvpSalInstance() local
84 if ((flags = fcntl (m_pTimeoutFDS[0], F_GETFD)) != -1) in SvpSalInstance()
86 flags |= FD_CLOEXEC; in SvpSalInstance()
87 fcntl (m_pTimeoutFDS[0], F_SETFD, flags); in SvpSalInstance()
89 if ((flags = fcntl (m_pTimeoutFDS[1], F_GETFD)) != -1) in SvpSalInstance()
91 flags |= FD_CLOEXEC; in SvpSalInstance()
92 fcntl (m_pTimeoutFDS[1], F_SETFD, flags); in SvpSalInstance()
96 if ((flags = fcntl (m_pTimeoutFDS[0], F_GETFL)) != -1) in SvpSalInstance()
98 flags |= O_NONBLOCK; in SvpSalInstance()
99 fcntl (m_pTimeoutFDS[0], F_SETFL, flags); in SvpSalInstance()
101 if ((flags = fcntl (m_pTimeoutFDS[1], F_GETFL)) != -1) in SvpSalInstance()
103 flags |= O_NONBLOCK; in SvpSalInstance()
104 fcntl (m_pTimeoutFDS[1], F_SETFL, flags); in SvpSalInstance()