Home
last modified time | relevance | path

Searched refs:sent (Results 1 – 25 of 112) sorted by relevance

12345

/system/core/fastboot/
Dsocket.cpp184 ssize_t sent = in Send() local
187 if (sent == -1) { in Send()
190 length -= sent; in Send()
198 ssize_t sent = TEMP_FAILURE_RETRY( in Send() local
201 if (sent == -1) { in Send()
207 while (sent > 0) { in Send()
208 if (iter->length > static_cast<size_t>(sent)) { in Send()
210 iter->length -= sent; in Send()
211 iter->data = reinterpret_cast<const char*>(iter->data) + sent; in Send()
216 sent -= iter->length; in Send()
DREADME.md53 until the client has sent or received the number of bytes indicated
103 * Commands are ascii strings and sent without the quotes (which are
210 The protocol version to use must be the minimum of the versions sent by each
214 Once the handshake is complete, fastboot data will be sent as follows:
296 the minimum of the sent values must be used.
309 to return a packet ID other than the one sent by the host.
319 Query and Initialization packets, which are sent before size negotiation is
345 which only Fastboot packets are sent. Fastboot packets may contain data from
/system/netd/server/
DTcpSocketMonitor.cpp119 stats.second.sent, in dump()
242 sentPackets.push_back(stats.second.sent); in poll()
282 .sent = TCPINFO_GET(tcpinfo, tcpi_segs_out, tcpinfoLen, 0), in updateSocketStats()
295 .sent = diff.sent, in updateSocketStats()
302 diff.sent -= previous.sent; in updateSocketStats()
309 stats.sent += diff.sent; in updateSocketStats()
DTcpSocketMonitor.h52 uint32_t sent; member
67 uint32_t sent; member
DNetlinkListener.cpp80 ASSIGN_OR_RETURN(auto sent, sys.sendto(mSock, msg, 0, kKernelAddr)); in send()
81 if (sent != msg.size()) { in send()
/system/bt/audio_hearing_aid_hw/src/
Daudio_hearing_aid_hw.cc282 ssize_t sent; in skt_write() local
289 OSI_NO_INTR(sent = send(fd, p, len, MSG_NOSIGNAL)); in skt_write()
290 if (sent == -1) ERROR("write failed with error(%s)", strerror(errno)); in skt_write()
292 return (int)sent; in skt_write()
299 OSI_NO_INTR(sent = send(fd, p, len - count, MSG_NOSIGNAL | MSG_DONTWAIT)); in skt_write()
300 if (sent == -1) { in skt_write()
313 count += sent; in skt_write()
314 p = (const uint8_t*)p + sent; in skt_write()
371 ssize_t sent; in ha_ctrl_send() local
378 OSI_NO_INTR(sent = send(common->ctrl_fd, buffer, remaining, MSG_NOSIGNAL)); in ha_ctrl_send()
[all …]
/system/netd/server/dns/
DDnsTlsTransport.cpp60 bool sent = mSocket->query(q.newId, netdutils::drop(q.query, 2)); in sendQuery() local
61 if (sent) { in sendQuery()
64 return sent; in sendQuery()
/system/bt/audio_a2dp_hw/src/
Daudio_a2dp_hw.cc298 ssize_t sent; in skt_write() local
305 OSI_NO_INTR(sent = send(fd, p, len, MSG_NOSIGNAL)); in skt_write()
306 if (sent == -1) ERROR("write failed with error(%s)", strerror(errno)); in skt_write()
308 return (int)sent; in skt_write()
315 OSI_NO_INTR(sent = send(fd, p, len - count, MSG_NOSIGNAL | MSG_DONTWAIT)); in skt_write()
316 if (sent == -1) { in skt_write()
329 count += sent; in skt_write()
330 p = (const uint8_t*)p + sent; in skt_write()
387 ssize_t sent; in a2dp_ctrl_send() local
394 OSI_NO_INTR(sent = send(common->ctrl_fd, buffer, remaining, MSG_NOSIGNAL)); in a2dp_ctrl_send()
[all …]
/system/core/adb/
Dprotocol.txt29 32 bit words which are sent across the wire in little endian format.
48 sent.
66 hard-coded maxdata=4096, so CONNECT and AUTH packets sent to a device must not
67 be larger than that because they're sent before the CONNECT from the device
72 be sent. Any messages received before a CONNECT message MUST be ignored.
114 a READY message sent at the same time.
143 not change on later READY messages sent to the same stream.
157 A WRITE message may not be sent until a READY message is received.
158 Once a WRITE message is sent, an additional WRITE message may not be
159 sent until another READY message has been received. Recipients of
[all …]
DSYNC.TXT14 After the initial "sync:" command is sent the server must respond with either
60 After this the actual file is sent in chunks. Each chunk has the following
66 When the file is transferred a sync request "DONE" is sent, where length is set
DSERVICES.TXT29 connection. Instead, a new device list description is sent
36 This is a special query that is sent to the ADB server when a
48 be sent directly to the adbd daemon running on the device.
/system/extras/multinetwork/
Dhttpurl.cpp189 const ssize_t sent = write(fd, request.c_str(), request.size()); in doHttpQuery() local
190 if (sent != static_cast<ssize_t>(request.size())) { in doHttpQuery()
191 std::cerr << "Sent only " << sent << "/" << request.size() << " bytes" in doHttpQuery()
/system/chre/host/common/
Dsocket_server.cc130 bool sent = false; in sendToClientById() local
135 sent = sendToClientSocket(data, length, clientSocket, thisClientId); in sendToClientById()
140 return sent; in sendToClientById()
/system/chre/platform/shared/idl/
Dhost_messages.fbs17 /// Represents a message sent to/from a nanoapp from/to a client on the host
22 /// Identifies the host-side endpoint on the host that sent or should receive
53 /// Maximum size message that can be sent to a nanoapp
172 /// Represents a message sent to CHRE to indicate AP timestamp for time sync
194 /// The number of DebugDumpData messages sent in this session
254 /// responses only to the client that sent the request. Although initially
/system/core/logd/
DREADME.property5 ro.logd.auditd.dmesg bool true selinux audit messages sent to dmesg.
6 ro.logd.auditd.main bool true selinux audit messages sent to main.
7 ro.logd.auditd.events bool true selinux audit messages sent to events.
/system/bt/btif/src/
Dbtif_sock_rfc.cc753 ssize_t sent; in send_data_to_app() local
755 sent = send(fd, p_buf->data + p_buf->offset, p_buf->len, MSG_DONTWAIT)); in send_data_to_app()
757 if (sent == -1) { in send_data_to_app()
764 if (sent == 0) return SENT_FAILED; in send_data_to_app()
766 if (sent == p_buf->len) return SENT_ALL; in send_data_to_app()
768 p_buf->offset += sent; in send_data_to_app()
769 p_buf->len -= sent; in send_data_to_app()
Dbtif_sock_l2cap.cc901 ssize_t sent; in flush_incoming_que_on_wr_signal_l() local
902 OSI_NO_INTR(sent = send(sock->our_fd, buf, len, MSG_DONTWAIT)); in flush_incoming_que_on_wr_signal_l()
905 if (sent == (signed)len) in flush_incoming_que_on_wr_signal_l()
907 else if (sent >= 0) { in flush_incoming_que_on_wr_signal_l()
908 packet_put_head_l(sock, buf + sent, len - sent); in flush_incoming_que_on_wr_signal_l()
910 if (!sent) /* special case if other end not keeping up */ in flush_incoming_que_on_wr_signal_l()
/system/libhidl/transport/manager/1.0/
DIServiceManager.hal112 * onRegistration must be sent out for all services which support the
116 * is already registered, onRegistration must be sent out with preexisting
121 * sent out for all names.
/system/netd/tests/dns_responder/
Ddns_tls_frontend.cpp328 int sent = send(backend_socket_, query, qlen, 0); in handleOneRequest() local
329 if (sent != qlen) { in handleOneRequest()
/system/libhwbinder/vts/performance/
DLatency.cpp231 int sent = p.send(presults); in clientFx() local
232 ASSERT(sent >= 0); in clientFx()
/system/bt/service/doc/
DIBluetoothGattClient.txt158 * calls to writeCharacteristic are sent to the remote device for verification
172 * sent to execute the queued writes, else a request will be sent to abort the
DIBluetoothGattServerCallback.txt128 * IBluetoothGattServer.sendNotification. If an indication was sent, this will
130 * this will be called as soon as the notification packet is successfully sent
DIBluetoothGattServer.txt66 * should be set to true, if a handle-value indication should be sent, which
/system/tpm/attestation/common/
Dattestation_ca.proto23 // This message holds all information to be sent to the attestation server in
62 // The certificate request to be sent to the attestation server.
104 // The reset request to be sent to the attestation server.
/system/bt/stack/smp/
Dsmp_utils.cc333 bool sent = false; in smp_send_cmd() local
343 sent = true; in smp_send_cmd()
349 if (!sent) { in smp_send_cmd()
358 return sent; in smp_send_cmd()

12345