Home
last modified time | relevance | path

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

1234

/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()
Dfastboot_protocol.txt55 until the client has sent or received the number of bytes indicated
107 * Commands are ascii strings and sent without the quotes (which are
196 The protocol version to use must be the minimum of the versions sent by each
200 Once the handshake is complete, fastboot data will be sent as follows:
279 the minimum of the sent values must be used.
290 to return a packet ID other than the one sent by the host.
300 Query and Initialization packets, which are sent before size negotiation is
326 which only Fastboot packets are sent. Fastboot packets may contain data from
/system/core/adb/
Dprotocol.txt29 32 bit words which are sent across the wire in little endian format.
48 sent.
64 hard-coded maxdata=4096, so CONNECT and AUTH packets sent to a device must not
65 be larger than that because they're sent before the CONNECT from the device
70 be sent. Any messages received before a CONNECT message MUST be ignored.
108 a READY message sent at the same time.
135 not change on later READY messages sent to the same stream.
148 A WRITE message may not be sent until a READY message is received.
149 Once a WRITE message is sent, an additional WRITE message may not be
150 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/bt/audio_a2dp_hw/
Daudio_a2dp_hw.c275 ssize_t sent; in skt_write() local
282 OSI_NO_INTR(sent = send(fd, p, len, MSG_NOSIGNAL)); in skt_write()
283 if (sent == -1) in skt_write()
286 return (int)sent; in skt_write()
293 OSI_NO_INTR(sent = send(fd, p, len - count, MSG_NOSIGNAL | MSG_DONTWAIT)); in skt_write()
294 if (sent == -1) { in skt_write()
307 count += sent; in skt_write()
308 p = (const uint8_t *)p + sent; in skt_write()
380 ssize_t sent; in a2dp_command() local
381 OSI_NO_INTR(sent = send(common->ctrl_fd, &cmd, 1, MSG_NOSIGNAL)); in a2dp_command()
[all …]
/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/bt/btif/src/
Dbtif_sock_rfc.c740 ssize_t sent; in send_data_to_app() local
741 OSI_NO_INTR(sent = send(fd, p_buf->data + p_buf->offset, p_buf->len, in send_data_to_app()
744 if (sent == -1) { in send_data_to_app()
751 if (sent == 0) in send_data_to_app()
754 if (sent == p_buf->len) in send_data_to_app()
757 p_buf->offset += sent; in send_data_to_app()
758 p_buf->len -= sent; in send_data_to_app()
Dbtif_sock_l2cap.c1001 ssize_t sent; in flush_incoming_que_on_wr_signal_l() local
1002 OSI_NO_INTR(sent = send(sock->our_fd, buf, len, MSG_DONTWAIT)); in flush_incoming_que_on_wr_signal_l()
1005 if (sent == (signed)len) in flush_incoming_que_on_wr_signal_l()
1007 else if (sent >= 0) { in flush_incoming_que_on_wr_signal_l()
1008 packet_put_head_l(sock, buf + sent, len - sent); in flush_incoming_que_on_wr_signal_l()
1010 if (!sent) /* special case if other end not keeping up */ in flush_incoming_que_on_wr_signal_l()
/system/bt/stack/gatt/
Dgatt_cl.c1107 BOOLEAN sent = FALSE; in gatt_cl_send_next_cmd_inq() local
1112 while (!sent && in gatt_cl_send_next_cmd_inq()
1120 sent = TRUE; in gatt_cl_send_next_cmd_inq()
1135 sent = FALSE; in gatt_cl_send_next_cmd_inq()
1152 return sent; in gatt_cl_send_next_cmd_inq()
/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/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
DIBluetoothLowEnergy.txt55 * true when the command was sent, false otherwise.
DIBluetoothGattServer.txt105 * should be set to true, if a handle-value indication should be sent, which
/system/core/metricsd/uploader/proto/
Dhistogram_event.proto51 // records, but was never used. As of M31, it is no longer sent by Chrome
Dsystem_profile.proto387 // The date at which Google Update last successfully sent an update check
671 // After each log is sent, this information is cleared and gathered again.
688 // The total number of commands sent to the external device.
691 // The number of commands sent to the external device as part of a
/system/bt/stack/smp/
Dsmp_utils.c318 BOOLEAN sent = FALSE; in smp_send_cmd() local
329 sent = TRUE; in smp_send_cmd()
336 if (!sent) in smp_send_cmd()
347 return sent; in smp_send_cmd()
/system/core/logd/
DREADME.property6 sent on to dmesg log
/system/core/libmemunreachable/
DREADME.md49 13. Unmarked allocations are sent over the pipe back to the original process.
/system/bt/stack/avdt/
Davdt_scb_act.c1959 BOOLEAN sent = FALSE; in avdt_scb_chk_snd_pkt() local
1987 sent = TRUE; in avdt_scb_chk_snd_pkt()
2015 else if (sent && fixed_queue_is_empty(p_scb->frag_q)) in avdt_scb_chk_snd_pkt()
/system/core/liblog/
DREADME151 will be sent to the log daemon once a new message can get through
/system/connectivity/shill/
DNETLINK_MESSAGES.txt40 set will be sent in the message).
/system/tools/aidl/docs/
Daidl-cpp.md162 of a parameter and rejects null references with a NullPointerException sent
/system/connectivity/shill/doc/
Dservice-api.txt617 i.e. network traffic is being sent through it.
1038 "--verify-x509-name" flag sent to OpenVPN, which
1104 Note that no PropertyChanged signals are sent for
1161 Note that no PropertyChanged signals are sent for
1171 Note that no PropertyChanged signals are sent for
1362 Note that no PropertyChanged signals are sent for

1234