Home | History | Annotate | Download | only in OpenglCodecCommon

Lines Matching refs:m_pipe

36     m_pipe(INVALID_HANDLE_VALUE)
42 m_pipe(pipe)
48 if (m_pipe != INVALID_HANDLE_VALUE) {
49 CloseHandle(m_pipe);
50 m_pipe = INVALID_HANDLE_VALUE;
171 m_pipe = pipe;
179 if (m_pipe == INVALID_HANDLE_VALUE)
187 if (! ::WriteFile(m_pipe, (const char *)m_buf + (size - res), res, &written, NULL)) {
201 if (m_pipe == INVALID_HANDLE_VALUE)
211 if (! ::ReadFile(m_pipe, (char *)buf + (len - res), res, &readcount, NULL) || readcount == 0) {
225 if (m_pipe == INVALID_HANDLE_VALUE)
232 if (!::ReadFile(m_pipe, (char *)buf, len, &readcount, NULL)) {