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

1 2 3 4

  /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_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/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/google_apis/gcm/base/
mcs_util.cc 242 uint64 sent = local
243 reinterpret_cast<const mcs_proto::DataMessageStanza*>(&protobuf)->sent();
244 DCHECK(sent);
248 (sent + ttl) * base::Time::kMicrosecondsPerSecond);
  /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;
  /external/chromium_org/net/socket/
stream_listen_socket.cc 133 int sent = HANDLE_EINTR(send(socket_, send_buf, len_left, 0)); local
134 if (sent == len_left) { // A shortcut to avoid extraneous checks.
137 if (sent == kSocketError) {
150 // sent != len_left according to the shortcut above.
152 send_buf += sent;
153 len_left -= sent;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
tcpport.cc 154 int sent = socket->Send(data, size, options); local
155 if (sent < 0) {
160 return sent;
281 int sent = socket_->Send(data, size, options); local
282 if (sent < 0) {
285 send_rate_tracker_.Update(sent);
287 return sent;
stunport.cc 44 // Handles a binding request sent to the STUN server.
223 int sent = socket_->SendTo(data, size, addr, options); local
224 if (sent < 0) {
229 return sent;
  /external/chromium_org/third_party/webrtc/video_engine/include/
vie_rtp_rtcp.h 169 // sent the specified channel.
195 // FEC packets are sent together with the usual media packets, hence
205 // FEC packets are sent together with the usual media packets, hence will
268 // will be sent over a longer period of time instead of sending them
349 // The function gets statistics from the sent and received RTP streams.
351 StreamDataCounters& sent,
361 StreamDataCounters sent; local
363 int ret_code = GetRtpStatistics(video_channel, sent, received);
364 bytes_sent = sent.bytes;
365 packets_sent = sent.packets
    [all...]
  /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 1102 BOOLEAN sent = FALSE; local
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
smp_utils.c 114 BOOLEAN sent = FALSE; local
125 sent = TRUE;
133 if (!sent)
137 return sent;
  /external/chromium_org/ipc/
ipc_message_utils.h 75 int64 sent; // Time that the message was sent (i.e. at Send()). member in struct:IPC::LogData
843 // with the outgoing reply message when it's sent.
  /external/chromium_org/sandbox/linux/services/
broker_process.cc 58 // Some flags are local to the current process and cannot be sent over a Unix
66 // descriptor was originally opened with O_CLOEXEC as a flag. And it is sent
239 // cannot be sent over a Unix socket in a special way.
354 // We reply on the file descriptor sent to us via the IPC channel.
400 ssize_t sent = UnixDomainSocket::SendMsg(reply_ipc, write_pickle.data(), local
410 if (sent <= 0) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
macasyncsocket.cc 151 int sent = ::send(native_socket_, buffer, length, 0); local
153 if (sent == SOCKET_ERROR) {
162 return sent;
174 int sent = ::sendto(native_socket_, buffer, length, 0, local
177 if (sent == SOCKET_ERROR) {
181 return sent;
nat_unittest.cc 56 // NAT type specified by nat_type, all external addrs receive the sent packet
200 int sent = client->SendTo(buf, len, server->GetLocalAddress()); local
206 return received == sent && ::memcmp(buf, recvbuf, len) == 0;
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
peer_connection_client.cc 256 size_t sent = socket->Send(onconnect_data_.c_str(), onconnect_data_.length()); local
257 ASSERT(sent == onconnect_data_.length());
258 UNUSED(sent);
267 int sent = socket->Send(buffer, len); local
268 ASSERT(sent == len);
269 UNUSED2(sent, len);
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.cc 508 int sent = channel_->SendPacket(buffer, len, packet_options); local
509 if (sent > 0) {
510 //LOG_F(LS_VERBOSE) << "(" << sent << ") Sent";
  /external/chromium_org/third_party/webrtc/base/
macasyncsocket.cc 157 int sent = ::send(native_socket_, buffer, length, 0); local
159 if (sent == SOCKET_ERROR) {
168 return sent;
180 int sent = ::sendto(native_socket_, buffer, length, 0, local
183 if (sent == SOCKET_ERROR) {
187 return sent;
nat_unittest.cc 39 // NAT type specified by nat_type, all external addrs receive the sent packet
183 int sent = client->SendTo(buf, len, server->GetLocalAddress()); local
189 return received == sent && ::memcmp(buf, recvbuf, len) == 0;
  /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...]

Completed in 1500 milliseconds

1 2 3 4