Lines Matching refs:m_pTimeoutFDS
77 m_pTimeoutFDS[0] = m_pTimeoutFDS[1] = -1; in SvpSalInstance()
78 if (pipe (m_pTimeoutFDS) != -1) in SvpSalInstance()
84 if ((flags = fcntl (m_pTimeoutFDS[0], F_GETFD)) != -1) in SvpSalInstance()
87 fcntl (m_pTimeoutFDS[0], F_SETFD, flags); in SvpSalInstance()
89 if ((flags = fcntl (m_pTimeoutFDS[1], F_GETFD)) != -1) in SvpSalInstance()
92 fcntl (m_pTimeoutFDS[1], F_SETFD, flags); in SvpSalInstance()
96 if ((flags = fcntl (m_pTimeoutFDS[0], F_GETFL)) != -1) in SvpSalInstance()
99 fcntl (m_pTimeoutFDS[0], F_SETFL, flags); in SvpSalInstance()
101 if ((flags = fcntl (m_pTimeoutFDS[1], F_GETFL)) != -1) in SvpSalInstance()
104 fcntl (m_pTimeoutFDS[1], F_SETFL, flags); in SvpSalInstance()
118 close (m_pTimeoutFDS[0]); in ~SvpSalInstance()
119 close (m_pTimeoutFDS[1]); in ~SvpSalInstance()
182 write (m_pTimeoutFDS[1], "", 1); in Wakeup()
408 aPoll.fd = m_pTimeoutFDS[0]; in Yield()
420 while (read (m_pTimeoutFDS[0], &buffer, sizeof(buffer)) > 0) in Yield()