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

1 2 3 4 5

  /external/oj-libjdwp/src/share/back/
outStream.h 49 jboolean sent; member in struct:PacketOutputStream
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
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;
  /system/netd/server/
TcpSocketMonitor.h 50 // Number of packets sent. Tracks struct tcp_sock data_segs_out.
52 uint32_t sent; member in struct:android::net::TcpSocketMonitor::TcpStats
57 // Milliseconds difference between the last packet sent and last ack received.
65 // Number of packets sent. Tracks struct tcp_sock data_segs_out.
67 uint32_t sent; member in struct:android::net::TcpSocketMonitor::SocketEntry
  /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/libese/libese-hw/
ese_hw_fake.c 123 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/libvncserver/webclients/novnc/include/chrome-app/
tcp-client.js 42 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(writeInfo)
41 recvString: null, \/\/ Called (as string) when client receives data from server. property in class:TcpClient.callbacks
    [all...]
  /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;
  /hardware/qcom/gps/msm8998/android/
AGnssRil.cpp 106 ssize_t sent = 0; local
109 (sent = ::send(socketFd, data.c_str() + (data.length() - remain),
111 remain -= sent;
114 if (sent < 0) {
  /system/chre/host/common/
socket_server.cc 130 bool sent = false; local
135 sent = sendToClientSocket(data, length, clientSocket, thisClientId);
140 return sent;
  /system/extras/multinetwork/
httpurl.cpp 189 const ssize_t sent = write(fd, request.c_str(), request.size()); local
190 if (sent != static_cast<ssize_t>(request.size())) {
191 std::cerr << "Sent only " << sent << "/" << request.size() << " bytes"
  /system/netd/server/dns/
DnsTlsTransport.cpp 60 bool sent = mSocket->query(q.newId, netdutils::drop(q.query, 2)); local
61 if (sent) {
64 return sent;
  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 262 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;
  /cts/tests/tests/net/jni/
NativeMultinetworkJni.c 194 ssize_t sent, rcvd; local
199 sent = send(fd, quic_packet, sizeof(quic_packet), 0);
200 if (sent < (ssize_t)sizeof(quic_packet)) {
202 ALOGD("send(QUIC packet) returned sent=%zd, errno=%d", sent, errnum);
216 if (rcvd < sent) {
217 ALOGD("QUIC UDP %s: sent=%zd but rcvd=%zd, errno=%d", kPort, sent, rcvd, errnum);
227 ALOGD("sent and received connection IDs do not match");
  /device/google/cuttlefish_common/guest/commands/usbforward/
usb_server.cpp 259 int32_t sent = 0; local
260 while (sent < actual_length) {
261 int packet_size = fd_->Write(&buffer[sent], actual_length - sent);
262 sent += packet_size;
263 ALOGV("Sending response, %d / %d bytes sent", sent, actual_length);
  /device/google/cuttlefish_common/guest/hals/hwcomposer/
hwcomposer.cpp 94 int sent = 0; local
131 ++sent;
137 ALOGI("Sent %d syncs in %ds", sent - last_sent, log_interval);
139 last_sent = sent;
  /external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
tcp-server.js 47 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);
46 recv: null, \/\/ Called when client receives data from server. property in class:TcpServer.callbacks
199 recv: null, \/\/ Called when client receives data from server. property in class:TcpConnection.callbacks
  /external/curl/tests/libtest/
stub_gssapi.c 57 enum { NONE, KRB5, NTLM1, NTLM3 } sent; member in struct:gss_ctx_id_t_desc_struct
119 switch(ctx->sent) {
140 switch(ctx->sent) {
142 /* We sent KRB5 and it failed, let's try NTLM */
144 ctx->sent = NTLM1;
152 ctx->sent = NTLM3;
178 ctx->sent = KRB5;
180 ctx->sent = NTLM1;
200 (char *) target_name, ctx->sent);
  /external/mesa3d/src/glx/
indirect_glx.c 136 Bool sent; local
145 sent = SendMakeCurrentRequest(dpy, opcode, gc->xid, tag, draw, read,
152 return !sent;
  /external/scapy/scapy/
sendrecv.py 41 sent=[] variable in class:debug
169 be sent through pks
173 timeout: how much time to wait after the last packet has been sent
181 debug.sent = plist.PacketList([],"Sent")
225 debug.sent=plist.PacketList(remain[:], "Sent")
357 timeout: how much time to wait after the last packet has been sent
375 timeout: how much time to wait after the last packet has been sent
396 timeout: how much time to wait after the last packet has been sent
    [all...]
  /external/toybox/toys/pending/
ping.c 94 int family = 0, sent = 0, len; local
186 if (tW) if (0>=(waitms = tW-tnow) || !sent) break;
203 sent++;
213 // This is down here so it's against new period if we just sent a packet
226 sent--;
  /hardware/qcom/gps/msm8909w_3100/gnss/
XtraSystemStatusObserver.cpp 96 ssize_t sent = 0; local
98 (sent = ::send(socketFd, data.c_str() + (data.length() - remain),
100 remain -= sent;
103 if (sent < 0) {
  /system/core/fastboot/
socket.cpp 184 ssize_t sent = local
187 if (sent == -1) {
190 length -= sent;
198 ssize_t sent = TEMP_FAILURE_RETRY( local
201 if (sent == -1) {
205 // Adjust the buffers to skip past the bytes we've just sent.
207 while (sent > 0) {
208 if (iter->length > static_cast<size_t>(sent)) {
210 iter->length -= sent;
211 iter->data = reinterpret_cast<const char*>(iter->data) + sent;
    [all...]
  /bionic/tests/
signal_test.cpp 729 siginfo sent; local
730 memset(&sent, 0, sizeof(sent));
732 sent.si_code = SI_TKILL;
733 ASSERT_EQ(0, syscall(SYS_rt_tgsigqueueinfo, getpid(), gettid(), SIGUSR1, &sent))
735 ASSERT_EQ(sent.si_code, received.si_code) << "rt_tgsigqueueinfo modified si_code, expected "
736 << sent.si_code << ", received " << received.si_code
739 sent.si_code = SI_USER;
740 ASSERT_EQ(0, syscall(SYS_rt_tgsigqueueinfo, getpid(), gettid(), SIGUSR1, &sent))
742 ASSERT_EQ(sent.si_code, received.si_code) << "rt_tgsigqueueinfo modified si_code, expected
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MidiSoloTest.java 177 int sent = 0; local
178 while (sent < LOCAL_STORAGE_SIZE) {
180 sent += count;
188 // Does the data we sent match the data received by the MidiReceiver?
  /device/generic/goldfish/hwcomposer/
hwcomposer.cpp 242 int sent = 0; local
274 ALOGD("hw_composer sent %d syncs in %ds", sent - last_sent, rt.tv_sec - last_logged);
276 last_sent = sent;
278 ++sent;

Completed in 1405 milliseconds

1 2 3 4 5