OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TcpStream
(Results
1 - 13
of
13
) 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"
31
TcpStream
::
TcpStream
(size_t bufSize) :
36
TcpStream
::
TcpStream
(int sock, size_t bufSize) :
50
int
TcpStream
::listen(unsigned short port)
58
SocketStream *
TcpStream
::accept()
73
TcpStream
*clientStream = NULL;
76
clientStream = new
TcpStream
(clientSock, m_bufsize);
81
int
TcpStream
::connect(unsigned short port
[
all
...]
Makefile
6
CXXFILES =
TcpStream
.cpp GLClientState.cpp glUtils.cpp
Android.mk
11
TcpStream
.cpp \
/sdk/emulator/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"
33
TcpStream
::
TcpStream
(size_t bufSize) :
38
TcpStream
::
TcpStream
(int sock, size_t bufSize) :
52
int
TcpStream
::listen(char addrstr[MAX_ADDRSTR_LEN])
72
SocketStream *
TcpStream
::accept()
87
TcpStream
*clientStream = NULL;
90
clientStream = new
TcpStream
(clientSock, m_bufsize);
95
int
TcpStream
::connect(const char* addr
[
all
...]
Makefile
6
CXXFILES =
TcpStream
.cpp GLClientState.cpp glUtils.cpp
Android.mk
11
TcpStream
.cpp \
/sdk/emulator/opengl/tests/ut_renderer/
ut_renderer.cpp
22
#include "
TcpStream
.h"
31
TcpStream
*socket = new
TcpStream
();
/device/generic/goldfish/opengl/system/OpenglSystemCommon/
HostConnection.cpp
17
#include "
TcpStream
.h"
80
TcpStream
*stream = new
TcpStream
(STREAM_BUFFER_SIZE);
82
ALOGE("Failed to create
TcpStream
for host connection!!!\n");
88
ALOGE("Failed to connect to host (
TcpStream
)!!!\n");
/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
;
/sdk/emulator/opengl/host/libs/libOpenglRender/
RenderServer.cpp
17
#include "
TcpStream
.h"
51
server->m_listenSock = new
TcpStream
();
render_api.cpp
23
#include "
TcpStream
.h"
334
stream = new
TcpStream
(p_stream_buffer_size);
Completed in 227 milliseconds