Home
last modified time | relevance | path

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

12345

/system/core/fastboot/
Dsocket.cpp186 ssize_t sent = in Send() local
189 if (sent == -1) { in Send()
192 length -= sent; in Send()
200 ssize_t sent = TEMP_FAILURE_RETRY( in Send() local
203 if (sent == -1) { in Send()
209 while (sent > 0) { in Send()
210 if (iter->length > static_cast<size_t>(sent)) { in Send()
212 iter->length -= sent; in Send()
213 iter->data = reinterpret_cast<const char*>(iter->data) + sent; in Send()
218 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
239 The protocol version to use must be the minimum of the versions sent by each
243 Once the handshake is complete, fastboot data will be sent as follows:
325 the minimum of the sent values must be used.
338 to return a packet ID other than the one sent by the host.
348 Query and Initialization packets, which are sent before size negotiation is
374 which only Fastboot packets are sent. Fastboot packets may contain data from
/system/netd/server/
DTcpSocketMonitor.cpp124 stats.second.sent, in dump()
245 sentPackets.push_back(stats.second.sent); in poll()
285 .sent = TCPINFO_GET(tcpinfo, tcpi_segs_out, tcpinfoLen, 0), in updateSocketStats()
298 .sent = diff.sent, in updateSocketStats()
305 diff.sent -= previous.sent; in updateSocketStats()
312 stats.sent += diff.sent; in updateSocketStats()
DTcpSocketMonitor.h51 uint32_t sent; member
66 uint32_t sent; member
DNetlinkListener.cpp87 ASSIGN_OR_RETURN(auto sent, sys.sendto(mSock, msg, 0, kKernelAddr)); in send()
88 if (sent != msg.size()) { in send()
/system/tools/aidl/tests/
Daidl_test_client_primitives.cpp100 for (auto sent : consts) { in TEST_F() local
101 DoTest(&ITestService::RepeatByte, sent); in TEST_F()
111 for (auto sent : consts) { in TEST_F() local
112 DoTest(&ITestService::RepeatInt, sent); in TEST_F()
118 for (auto sent : consts) { in TEST_F() local
119 DoTest(&ITestService::RepeatLong, sent); in TEST_F()
131 for (auto sent : strings) { in TEST_F() local
132 DoTest(&ITestService::RepeatString, sent); in TEST_F()
/system/bt/audio_hearing_aid_hw/src/
Daudio_hearing_aid_hw.cc303 ssize_t sent; in skt_write() local
310 OSI_NO_INTR(sent = send(fd, p, len, MSG_NOSIGNAL)); in skt_write()
311 if (sent == -1) ERROR("write failed with error(%s)", strerror(errno)); in skt_write()
313 return (int)sent; in skt_write()
320 OSI_NO_INTR(sent = send(fd, p, len - count, MSG_NOSIGNAL | MSG_DONTWAIT)); in skt_write()
321 if (sent == -1) { in skt_write()
334 count += sent; in skt_write()
335 p = (const uint8_t*)p + sent; in skt_write()
392 ssize_t sent; in ha_ctrl_send() local
399 OSI_NO_INTR(sent = send(common->ctrl_fd, buffer, remaining, MSG_NOSIGNAL)); in ha_ctrl_send()
[all …]
/system/core/trusty/apploader/fuzz/
DAndroid.bp19 // Fuzz Trusty IPC messages sent to apploader.
31 // Fuzz app package sent to apploader.
/system/bt/audio_a2dp_hw/src/
Daudio_a2dp_hw.cc297 ssize_t sent; in skt_write() local
304 OSI_NO_INTR(sent = send(fd, p, len, MSG_NOSIGNAL)); in skt_write()
305 if (sent == -1) ERROR("write failed with error(%s)", strerror(errno)); in skt_write()
307 return (int)sent; in skt_write()
314 OSI_NO_INTR(sent = send(fd, p, len - count, MSG_NOSIGNAL | MSG_DONTWAIT)); in skt_write()
315 if (sent == -1) { in skt_write()
328 count += sent; in skt_write()
329 p = (const uint8_t*)p + sent; in skt_write()
386 ssize_t sent; in a2dp_ctrl_send() local
393 OSI_NO_INTR(sent = send(common->ctrl_fd, buffer, remaining, MSG_NOSIGNAL)); in a2dp_ctrl_send()
[all …]
/system/chre/apps/test/common/proto/
Dchre_cross_validation_wifi.proto23 // There may be multiple messages with this type sent.
40 // scan results threshold message is sent.
63 // The total number of results that will be sent from AP.
/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
64 /// Maximum size message that can be sent to a nanoapp
107 /// meaning that load requests will be processed in the order they are sent
118 /// be defined. Once the first fragment is sent to CHRE, all subsequent
163 /// for the last fragment will be sent after the fragment was confirmed
164 /// to be placed in memory and no additional response will be sent after
216 /// Represents a message sent to CHRE to indicate AP timestamp for time sync
238 /// The number of DebugDumpData messages sent in this session
359 /// responses only to the client that sent the request. Although initially
/system/chre/host/common/
Dsocket_server.cc129 bool sent = false; in sendToClientById() local
134 sent = sendToClientSocket(data, length, clientSocket, thisClientId); in sendToClientById()
139 return sent; in sendToClientById()
/system/extras/multinetwork/
Dhttpurl.cpp200 const ssize_t sent = write(fd, request.c_str(), request.size()); in doHttpQuery() local
201 if (sent != static_cast<ssize_t>(request.size())) { in doHttpQuery()
202 std::cerr << "Sent only " << sent << "/" << request.size() << " bytes" in doHttpQuery()
/system/logging/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/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/bt/btif/src/
Dbtif_sock_l2cap.cc811 ssize_t sent; in flush_incoming_que_on_wr_signal_l() local
812 OSI_NO_INTR(sent = send(sock->our_fd, buf, len, MSG_DONTWAIT)); in flush_incoming_que_on_wr_signal_l()
815 if (sent == (signed)len) in flush_incoming_que_on_wr_signal_l()
817 else if (sent >= 0) { in flush_incoming_que_on_wr_signal_l()
818 packet_put_head_l(sock, buf + sent, len - sent); in flush_incoming_que_on_wr_signal_l()
820 if (!sent) /* special case if other end not keeping up */ in flush_incoming_que_on_wr_signal_l()
Dbtif_sock_rfc.cc782 ssize_t sent; in send_data_to_app() local
784 sent = send(fd, p_buf->data + p_buf->offset, p_buf->len, MSG_DONTWAIT)); in send_data_to_app()
786 if (sent == -1) { in send_data_to_app()
793 if (sent == 0) return SENT_FAILED; in send_data_to_app()
795 if (sent == p_buf->len) return SENT_ALL; in send_data_to_app()
797 p_buf->offset += sent; in send_data_to_app()
798 p_buf->len -= sent; in send_data_to_app()
/system/chre/apps/test/pts/proto/
Dpts_chre.proto24 // A message sent by the nanoapp to indicate the result of a test, optionally
/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/core/init/
DREADME.ueventd.md87 When a uevent that matches the pattern `/sys/devices/system/cpu/cpu*` is sent, the matching sysfs
144 Ueventd will additionally log all messages sent to stderr from the external program to the serial
149 Ueventd must create devices in `/dev` for all devices that have already sent their uevents before
/system/libsysprop/srcs/android/sysprop/
DHdmiProperties.sysprop82 # <li><b>wake_up_and_send_active_source</b> Same as above and additionally <Active Source> is sent.
/system/bt/stack/smp/
Dsmp_utils.cc377 bool sent = false; in smp_send_cmd() local
388 sent = true; in smp_send_cmd()
394 if (!sent) { in smp_send_cmd()
403 return sent; in smp_send_cmd()

12345