Searched refs:m_fds (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/unix/
H A Dpipe.h40 wxPipe() { m_fds[Read] = m_fds[Write] = INVALID_FD; }
45 if ( pipe(m_fds) == -1 )
56 bool IsOk() const { return m_fds[Read] != INVALID_FD; }
59 int operator[](Direction which) const { return m_fds[which]; }
65 int fd = m_fds[which];
66 m_fds[which] = INVALID_FD;
74 for ( size_t n = 0; n < WXSIZEOF(m_fds); n++ )
76 if ( m_fds[n] != INVALID_FD )
78 close(m_fds[
88 int m_fds[2]; member in class:wxPipe
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A Damuled.cpp127 int m_fds[FD_SETSIZE], m_fd_idx[FD_SETSIZE]; member in class:CSocketSet
146 m_fds[i] = 0;
167 m_fds[m_count] = fd;
189 wxASSERT(m_fds[i] == fd);
190 m_fds[i] = m_fds[m_count-1];
192 m_fds[m_count-1] = 0;
194 m_fd_idx[m_fds[i]] = i;
203 FD_SET(m_fds[i], &m_set);
204 if ( m_fds[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/webserver/src/
H A DWebInterface.cpp70 int m_fds[FD_SETSIZE], m_fd_idx[FD_SETSIZE]; member in class:CSocketSet
88 m_fds[i] = 0;
110 m_fds[m_count] = fd;
133 wxASSERT(m_fds[i] == fd);
134 m_fds[i] = m_fds[m_count-1];
136 m_fds[m_count-1] = 0;
138 m_fd_idx[m_fds[i]] = i;
147 FD_SET(m_fds[i], &m_set);
148 if (m_fds[
[all...]

Completed in 45 milliseconds