HomeSort by relevance Sort by last modified time
    Searched defs:sent (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/network/curl/
FormDataStreamCurl.cpp 62 size_t sent; local
76 sent = fread(ptr, blockSize, numberOfBlocks, m_file);
91 sent = elementSize > toSend ? toSend : elementSize;
92 memcpy(ptr, element.m_data.data() + m_formDataElementDataOffset, sent);
93 if (elementSize > sent)
94 m_formDataElementDataOffset += sent;
101 return sent;
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
udpport.cc 84 int sent = socket_->SendTo(data, size, addr); local
85 if (sent < 0) {
90 return sent;
tcpport.cc 124 int sent = socket->Send(data, size); local
125 if (sent < 0) {
130 return sent;
228 int sent = socket_->Send(data, size); local
229 if (sent < 0) {
232 send_rate_tracker_.Update(sent);
234 return sent;
stunport.cc 43 // Handles a binding request sent to the STUN server.
187 int sent = socket_->SendTo(data, size, addr); local
188 if (sent < 0) {
193 return sent;
  /external/chromium/chrome/browser/extensions/
extension_rlz_module.cc 165 // not sent false is returned, but this is not an error, so we should not
169 bool sent = rlz_lib::SendFinancialPing(product, access_points.get(), local
173 result_.reset(Value::CreateBooleanValue(sent));
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Ping.java 26 private long sent = -1; field in class:Ping
33 if (sent != -1) throw new IllegalStateException();
34 sent = System.nanoTime();
38 if (received != -1 || sent == -1) throw new IllegalStateException();
44 if (received != -1 || sent == -1) throw new IllegalStateException();
45 received = sent - 1;
56 return received - sent;
66 return received - sent;
  /cts/suite/audio_quality/lib/src/
ClientSocket.cpp 141 int sent; local
144 sent = send(mSocket, (void*)data, (size_t)toSend, 0);
145 if (sent > 0) {
146 toSend -= sent;
147 data += sent;
148 } else if (sent == 0) { // no more buffer?
151 LOGE("send returned %d, error %d", sent, errno);
  /external/smack/src/org/jivesoftware/smackx/carbons/
Carbon.java 36 * <b>smack.properties</b> file for the elements <b>sent</b> and
53 * get the direction (sent or received) of the carbon.
97 sent enum constant in enum:Carbon.Direction
116 throw new Exception("sent/received must contain exactly one <forwarded> tag");
  /external/webkit/Source/WebCore/websockets/
ThreadableWebSocketChannelClientWrapper.h 66 bool sent() const function in class:WebCore::ThreadableWebSocketChannelClientWrapper
70 void setSent(bool sent)
72 m_sent = sent;
  /hardware/qcom/audio/legacy/alsa_sound/
AudioStreamOutALSA.cpp 118 size_t sent = 0; local
244 (char *)buffer + sent,
248 (char *)buffer + sent,
276 sent += static_cast<ssize_t>((period_size));
280 } while ((mHandle->handle||(mHandle->rxHandle && mParent->mVoipStreamCount)) && sent < bytes);
282 return sent;
  /packages/apps/Email/tests/src/com/android/email/
FolderPropertiesTests.java 129 Drawable sent = fp.getIcon(Mailbox.TYPE_SENT, -1, 0); local
139 set.add(sent);
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket.cc 233 int sent = HANDLE_EINTR(send(socket_, send_buf, len_left, 0)); local
234 if (sent == len_left) { // A shortcut to avoid extraneous checks.
237 if (sent == kSocketError) {
250 // sent != len_left according to the shortcut above.
252 send_buf += sent;
253 len_left -= sent;
  /external/chromium/net/base/
listen_socket.cc 147 int sent = HANDLE_EINTR(send(socket_, send_buf, len_left, 0)); local
148 if (sent == len_left) { // A shortcut to avoid extraneous checks.
151 if (sent == kSocketError) {
164 // sent != len_left according to the shortcut above.
166 send_buf += sent;
167 len_left -= sent;
  /external/smack/src/com/kenai/jbosh/
ApacheHTTPResponse.java 78 * The HTTP POST request is sent to the server.
85 private boolean sent; field in class:ApacheHTTPResponse
126 this.sent = false;
186 if (!sent) {
208 if (!sent) {
243 sent = true;
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3debughandlers.c 167 int sent; local
170 sent = 0;
172 while (sent < len)
176 thisSend = send(sock, ptr, len - sent, 0);
188 sent += thisSend;
  /external/bluetooth/bluedroid/stack/gatt/
gatt_cl.c 1041 BOOLEAN sent = FALSE; local
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
smp_utils.c 113 BOOLEAN sent = FALSE; local
124 sent = TRUE;
132 if (!sent)
136 return sent;
  /external/chromium/net/websockets/
websocket.cc 220 // Already sent 0xFF and 0x00 bytes.
243 bool sent = socket_stream_->SendData( local
247 DCHECK(sent);
websocket_job_unittest.cc 248 bool sent = websocket_->SendData(kHandshakeRequestMessage, local
250 EXPECT_TRUE(sent);
293 bool sent = websocket_->SendData(kHandshakeRequestMessage, local
295 EXPECT_TRUE(sent);
296 // We assume request is sent in one data chunk (from WebKit)
375 bool sent = websocket_->SendData(kHandshakeRequestMessage, local
377 EXPECT_TRUE(sent);
462 bool sent = websocket_->SendData(kHandshakeRequestMessage, local
464 EXPECT_TRUE(sent);
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.cc 496 int sent = channel_->SendPacket(buffer, len); local
497 if (sent > 0) {
498 //LOG_F(LS_VERBOSE) << "(" << sent << ") Sent";
  /external/qemu/android/
adb-server.c 71 /* Contains data that are pending to be sent to the host. */
73 /* Number of bytes that are pending to be sent to the host. */
270 const int sent = socket_send(adb_host->host_so, local
273 if (sent < 0) {
286 } else if (sent == 0) {
294 } else if (sent == adb_host->pending_send_data_size) {
300 adb_host->pending_send_data_size -= sent;
302 adb_host->pending_send_buffer + sent,
523 /* There are no data that are pending to be sent to the host. Do the
525 const int sent = socket_send(adb_host->host_so, msg, msglen) local
    [all...]
  /external/smack/src/org/xbill/DNS/
ExtendedResolver.java 21 int [] sent; field in class:ExtendedResolver.Resolution
54 sent = new int[resolvers.length];
63 sent[n]++;
92 sent[0]++;
99 * This will either cause more queries to be sent
184 if (sent[n] == 1 && n < resolvers.length - 1)
188 if (sent[n] < retries)
349 * and queries are sent multiple times until either a successful response
413 /** Sets the number of retries sent to each server per query */
  /frameworks/base/services/java/com/android/server/wifi/
WifiTrafficPoller.java 149 long sent, received; local
157 sent = mTxPkts - preTxPkts;
159 if (sent > 0) {
  /sdk/emulator/opengl/tests/event_injector/
emulator-console.c 46 int sent; // already sent (so sent..size remain in buffer). member in struct:Msg
58 msg->sent = 0;
114 msg->data + msg->sent,
115 msg->size - msg->sent);
117 DD("Console sent: '%.*s'", ret, msg->data + msg->sent);
119 msg->sent += ret;
120 if (msg->sent == msg->size)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
schanneladapter.cc 452 int sent = AsyncSocketAdapter::Send(&outbuf[pos], outbuf.size() - pos); local
453 if (sent > 0) {
454 pos += sent;

Completed in 660 milliseconds

1 2 3