Lines Matching full:stream
64 QemuPipeStream *stream = new QemuPipeStream(STREAM_BUFFER_SIZE);
65 if (!stream) {
70 if (stream->connect() < 0) {
72 delete stream;
76 con->m_stream = stream;
80 TcpStream *stream = new TcpStream(STREAM_BUFFER_SIZE);
81 if (!stream) {
87 if (stream->connect("10.0.2.2", STREAM_PORT_NUM) < 0) {
89 delete stream;
93 con->m_stream = stream;