OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TcpStream
(Results
1 - 6
of
6
) sorted by null
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
TcpStream.h
21
class
TcpStream
: public SocketStream {
23
explicit
TcpStream
(size_t bufsize = 10000);
29
TcpStream
(int sock, size_t bufSize);
TcpStream.cpp
16
#include "
TcpStream
.h"
63
TcpStream
::
TcpStream
(size_t bufSize) :
68
TcpStream
::
TcpStream
(int sock, size_t bufSize) :
82
int
TcpStream
::listen(unsigned short port)
90
SocketStream *
TcpStream
::accept()
105
TcpStream
*clientStream = NULL;
108
clientStream = new
TcpStream
(clientSock, m_bufsize);
113
int
TcpStream
::connect(unsigned short port
[
all
...]
Makefile
6
CXXFILES =
TcpStream
.cpp GLClientState.cpp glUtils.cpp
Android.mk
14
TcpStream
.cpp \
/device/generic/goldfish-opengl/tests/gles_android_wrapper/
ServerConnection.cpp
19
#include "
TcpStream
.h"
94
TcpStream
*
tcpStream
= new
TcpStream
(bufsize);
104
if (
tcpStream
->connect(hostname, CODEC_SERVER_PORT) < 0) {
107
delete
tcpStream
;
113
m_stream =
tcpStream
;
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
HostConnection.cpp
22
#include "
TcpStream
.h"
90
TcpStream
*stream = new
TcpStream
(STREAM_BUFFER_SIZE);
92
ALOGE("Failed to create
TcpStream
for host connection!!!\n");
98
ALOGE("Failed to connect to host (
TcpStream
)!!!\n");
Completed in 1163 milliseconds