Home
last modified time | relevance | path

Searched refs:m_pRecvBuf (Results 1 – 3 of 3) sorted by relevance

/dports/chinese/pcmanx/pcmanx-gtk2-1.3/src/view/
H A Dtelnetcon.cpp126 m_pBuf = m_pLastByte = m_pRecvBuf = NULL; in CTelnetCon()
362 m_pRecvBuf = recv_buf; in OnRecv()
368 g_io_channel_read_chars(m_IOChannel, (char*)m_pRecvBuf, (RECV_BUF_SIZE - 1), &rlen, NULL); in OnRecv()
375 m_pRecvBuf[rlen] = '\0'; in OnRecv()
376 m_pBuf = m_pRecvBuf; in OnRecv()
377 m_pLastByte = m_pRecvBuf + rlen; in OnRecv()
441 for( m_pBuf = m_pRecvBuf; m_pBuf < m_pLastByte; m_pBuf++ ) in ParseReceivedData()
H A Deditor.cpp189 m_pRecvBuf = recv_buf; in LoadEditorText()
192 m_pRecvBuf[rlen] = '\0'; in LoadEditorText()
193 m_pBuf = m_pRecvBuf; in LoadEditorText()
194 m_pLastByte = m_pRecvBuf + rlen; in LoadEditorText()
H A Dtelnetcon.h188 unsigned char* m_pRecvBuf; variable