Searched refs:sent (Results 1 - 25 of 80) sorted by relevance

1234

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DPing.java26 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;
/external/libese/libese-hw/
H A Dese_hw_fake.c123 uint32_t sent = local
125 if (sent != tx_buf->len - offset) {
126 offset = tx_buf->len - sent;
127 processed += sent;
130 if (sent == 0) {
139 processed += sent;
/external/curl/docs/cmdline-opts/
H A Dmail-from.d8 Specify a single address that the given mail should get sent from.
H A Dproxy-header.d10 separate header sent to the proxy to what is sent to the actual remote host.
12 curl will make sure that each header you add/replace is sent with the proper
18 knows will not be sent to a proxy.
H A Dftp-account.d8 been provided, this data is sent off using the ACCT command.
H A Duse-ascii.d7 ends with ";type=A". This option causes data sent to stdout to be in text mode
H A Ddigest.d8 prevents the password from being sent over the wire in clear text. Use this in
H A Dcookie.d25 format and don't specify a domain, then the cookie is sent for any domain
28 name then both will be sent on a future transfer to that server, likely not
H A Danyauth.d13 require data to be sent twice and then the client must be able to rewind. If
/external/autotest/client/common_lib/cros/network/
H A Dping_runner.py104 sent = _regex_int_from_string('([0-9]+) packets transmitted', loss_line)
109 if None in (sent, received, loss):
115 return PingResult(sent, received, loss,
123 return PingResult(sent, received, loss)
199 sent = _regex_int_from_string('([0-9]+) packets transmitted', loss_line)
202 if None in (sent, received, loss):
208 return PingResult(sent, received, loss,
216 return PingResult(sent, received, loss)
246 def __init__(self, sent, received, loss,
251 @param sent
[all...]
/external/libchrome/dbus/
H A Ddbus_statistics.cc194 int sent = 0, received = 0, sent_blocking = 0; local
200 sent += stat->sent_method_calls;
211 if (!sent && !received && !sent_blocking)
235 if (sent) {
238 line += base::StringPrintf(" %d", sent);
240 line += base::StringPrintf(" %d/min", sent / dminutes);
242 line += base::StringPrintf(" %d (%d/min)", sent, sent / dminutes);
255 sent = 0;
267 int* sent,
264 GetCalls(const std::string& service, const std::string& interface, const std::string& method, int* sent, int* received, int* blocking) argument
[all...]
H A Ddbus_statistics.h39 // Add sent/received calls to the statistics gathering class. These methods
65 // Sets |sent| to the number of sent calls, |received| to the number of
66 // received calls, and |blocking| to the number of sent blocking calls for
71 int* sent,
/external/webrtc/webrtc/p2p/base/
H A Dpseudotcp_unittest.cc262 // Shut down when we've sent everything.
288 int sent; local
294 sent = local_.Send(block, tosend);
296 if (sent != -1) {
297 send_stream_.SetPosition(position + sent);
298 LOG(LS_VERBOSE) << "Sent: " << position + sent; local
304 sent = static_cast<int>(tosend = 0);
306 } while (sent > 0);
387 // Shut down when we've sent everything.
407 int sent; local
418 LOG(LS_VERBOSE) << "Sent: " << position + sent; local
535 int sent; local
545 LOG(LS_VERBOSE) << "Sent: " << position + sent; local
[all...]
H A Dtcpport.cc29 * Data could only be sent in state 3. Sening data during state 2 & 6 will get
220 int sent = socket->Send(data, size, options); local
221 if (sent < 0) {
229 return sent;
355 int sent = socket_->Send(data, size, options); local
356 if (sent < 0) {
360 send_rate_tracker_.AddSamples(sent);
362 return sent;
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultHttpRequestRetryHandler.java61 /** Whether or not methods that have successfully sent their request will be retried */
115 boolean sent = (b != null && b.booleanValue());
116 if (!sent || this.requestSentRetryEnabled) {
117 // Retry if the request has not been sent fully or
118 // if it's OK to retry methods that have been sent
127 * successfully sent their request, <code>false</code> otherwise
/external/devlib/src/netstats/src/com/arm/devlib/trafficcatcher/
H A DTrafficMetricsService.java74 long sent = TrafficStats.getUidTxBytes(uid);
78 this.previousValues.get(name).put("sent", sent);
81 name, sent, received));
83 long previosSent = this.previousValues.get(name).put("sent", sent);
87 sent - previosSent,
/external/libvncserver/webclients/novnc/include/chrome-app/
H A Dtcp-client.js42 sent: null // Called when client sends data to server.
74 * @param {Function} callback The function to call when the message has sent
92 // Register sent callback.
93 this.callbacks.sent = callback;
101 * @param {Function} callback The function to call when the message has sent
113 // Register sent callback.
114 this.callbacks.sent = callback;
267 // Call sent callback.
268 if (this.callbacks.sent) {
269 this.callbacks.sent(writeInf
[all...]
/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
H A Dtcp-server.js47 sent: null // Called when client sends data to server.
200 sent: null // Called when client sends data to server.
253 * @param {Function} callback The function to call when the message has sent
260 // Register sent callback.
261 this.callbacks.sent = callback;
282 * callback sent in its parameter.
331 // Call sent callback.
332 if (this.callbacks.sent) {
333 this.callbacks.sent(writeInfo);
/external/webrtc/webrtc/base/
H A Dmacasyncsocket.cc157 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;
/external/boringssl/src/ssl/
H A Dcustom_extensions.cc114 assert((hs->custom_extensions.sent & (1u << i)) == 0);
115 hs->custom_extensions.sent |= (1u << i);
147 !(hs->custom_extensions.sent & (1u << index))) {
196 * to track when an extension has been sent. */
198 (sizeof(((SSL_HANDSHAKE *)NULL)->custom_extensions.sent) * 8)
/external/curl/lib/
H A Dformdata.h45 size_t sent; /* number of bytes of the current line that has member in struct:Form
46 already been sent in a previous invoke */
/external/libmtp/examples/
H A Dpathutils.c116 int progress (const uint64_t sent, const uint64_t total, void const * const data) argument
118 int percent = (sent*100)/total;
120 printf("Progress: %I64u of %I64u (%d%%)\r", sent, total, percent);
122 printf("Progress: %llu of %llu (%d%%)\r", sent, total, percent);
/external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
H A DBufferPerformanceBench.java262 final Buffer sent = new Buffer(); field in class:BufferPerformanceBench.BufferState
268 sent.clear();
284 * Expects process and sent buffers to be empty. Leaves the process buffer empty and
285 * sent buffer full.
288 writeChunked(process, bytes, maxChunkSize).readAll(sent);
289 return sent;
/external/webrtc/webrtc/examples/peerconnection/client/
H A Dpeer_connection_client.cc239 size_t sent = socket->Send(onconnect_data_.c_str(), onconnect_data_.length()); local
240 ASSERT(sent == onconnect_data_.length());
241 RTC_UNUSED(sent);
250 int sent = socket->Send(buffer, len); local
251 ASSERT(sent == len);
252 RTC_UNUSED2(sent, len);
/external/libchrome/sandbox/linux/syscall_broker/
H A Dbroker_host.cc146 ssize_t sent = base::UnixDomainSocket::SendMsg( local
157 if (sent <= 0) {
207 // We reply on the file descriptor sent to us via the IPC channel.

Completed in 811 milliseconds

1234