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

1 2 3 4

  /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_org/dbus/
dbus_statistics_unittest.cc 64 int sent = 0, received = 0, block = 0; local
66 // Add a sent call
69 "service1", "service1.interface1", "method1", &sent, &received, &block));
70 EXPECT_EQ(1, sent);
77 "service1", "service1.interface1", "method1", &sent, &received, &block));
78 EXPECT_EQ(1, sent);
86 "service1", "service1.interface1", "method1", &sent, &received, &block));
87 EXPECT_EQ(1, sent);
93 int sent = 0, received = 0, block = 0; local
101 "service1", "service1.interface1", "method1", &sent, &received, &block))
    [all...]
dbus_statistics.cc 193 int sent = 0, received = 0, sent_blocking = 0; local
199 sent += stat->sent_method_calls;
210 if (!sent && !received && !sent_blocking)
225 line += base::StringPrintf(" Sent (BLOCKING):");
234 if (sent) {
235 line += base::StringPrintf(" Sent:");
237 line += base::StringPrintf(" %d", sent);
239 line += base::StringPrintf(" %d/min", sent / dminutes);
241 line += base::StringPrintf(" %d (%d/min)", sent, sent / dminutes)
    [all...]
  /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/chromium_org/net/third_party/nss/ssl/
ssldef.c 82 int sent = 0; local
94 int rv = lower->methods->send(lower, (const void *)(buf + sent),
95 len - sent, flags, ss->wTimeout);
100 return sent ? sent : SECFailure;
107 sent += rv;
109 if (IS_DTLS(ss) && (len > sent)) {
111 return sent;
113 } while (len > sent);
115 return sent;
134 int sent = 0; local
    [all...]
  /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/chromium_org/chrome/browser/rlz/
rlz_extension_api.cc 173 // not sent false is returned, but this is not an error, so we should not
177 bool sent = rlz_lib::SendFinancialPing(product_, access_points_.get(), local
182 SetResult(Value::CreateBooleanValue(sent));
  /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");
  /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/chromium_org/net/socket/
stream_listen_socket.cc 117 int sent = HANDLE_EINTR(send(socket_, send_buf, len_left, 0)); local
118 if (sent == len_left) { // A shortcut to avoid extraneous checks.
121 if (sent == kSocketError) {
134 // sent != len_left according to the shortcut above.
136 send_buf += sent;
137 len_left -= sent;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
tcpport.cc 146 int sent = socket->Send(data, size); local
147 if (sent < 0) {
152 return sent;
271 int sent = socket_->Send(data, size); local
272 if (sent < 0) {
275 send_rate_tracker_.Update(sent);
277 return 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 1081 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);
  /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/chromium_org/ipc/
ipc_message_utils.h 73 int64 sent; // Time that the message was sent (i.e. at Send()). member in struct:IPC::LogData
768 // with the outgoing reply message when it's sent.
  /external/chromium_org/sandbox/linux/services/
broker_process.cc 34 // Some flags are local to the current process and cannot be sent over a Unix
42 // descriptor was originally opened with O_CLOEXEC as a flag. And it is sent
213 // cannot be sent over a Unix socket in a special way.
327 // We reply on the file descriptor sent to us via the IPC channel.
375 ssize_t sent = UnixDomainSocket::SendMsg(reply_ipc, write_pickle.data(), local
385 if (sent <= 0) {

Completed in 640 milliseconds

1 2 3 4