OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numSent
(Results
1 - 7
of
7
) sorted by null
/external/deqp/framework/delibs/decpp/
deSocket.hpp
98
deSocketResult send (const void* buf, int bufSize, int*
numSent
) { return deSocket_send(m_socket, buf, bufSize,
numSent
); }
/external/deqp/execserver/
xsExecutionServer.cpp
381
int
numSent
;
382
deSocketResult result = m_socket->send(&m_sendRecvTmpBuf[0], maxLen, &
numSent
);
386
DE_ASSERT(
numSent
> 0);
387
m_bufferOut.popBack(
numSent
);
/external/deqp/executor/
xeTcpIpLink.cpp
210
int
numSent
= 0;
224
while (
numSent
< numToSend)
226
result = m_socket.send(&buf[
numSent
], numToSend-
numSent
, &
numSent
);
237
DE_ASSERT(
numSent
<= 0);
/external/deqp/execserver/tools/
xsClient.cpp
74
int
numSent
= 0;
75
deSocketResult result = socket.send(&buf[pos], numLeft, &
numSent
);
80
pos +=
numSent
;
xsTest.cpp
80
int
numSent
= 0;
81
deSocketResult result = socket.send(&buf[pos], numLeft, &
numSent
);
86
pos +=
numSent
;
/external/deqp/framework/delibs/deutil/
deSocket.h
134
deSocketResult deSocket_send (deSocket* socket, const void* buf, int bufSize, int*
numSent
);
deSocket.c
696
int
numSent
= (int)send(sock->handle, (const char*)buf, bufSize, 0);
697
deSocketResult result = mapSendRecvResult(
numSent
);
700
*numSentPtr =
numSent
;
Completed in 901 milliseconds