Home
last modified time | relevance | path

Searched refs:bytes_copied (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/stack/hid/
Dhidh_conn.cc750 uint16_t bytes_copied; in hidh_conn_snd_data() local
809 bytes_copied = 0; in hidh_conn_snd_data()
817 bytes_copied = p_hcon->rem_mtu_size - 1; in hidh_conn_snd_data()
823 bytes_copied = buf->len; in hidh_conn_snd_data()
832 data_size = bytes_copied = 1; in hidh_conn_snd_data()
836 memcpy(p_out, (((uint8_t*)(buf + 1)) + buf->offset), bytes_copied); in hidh_conn_snd_data()
837 buf->offset += bytes_copied; in hidh_conn_snd_data()
838 buf->len -= bytes_copied; in hidh_conn_snd_data()
840 *(p_out + bytes_copied) = data & 0xff; in hidh_conn_snd_data()
842 *(p_out + bytes_copied) = data & 0xff; in hidh_conn_snd_data()
[all …]
/packages/modules/adb/client/
Dfile_sync_client.cpp649 uint64_t bytes_copied = 0; in SendLargeFile() local
699 bytes_copied += r; in SendLargeFile()
700 ReportProgress(rpath, bytes_copied, total_size); in SendLargeFile()
751 uint64_t bytes_copied = 0; in SendLargeFileLegacy() local
775 bytes_copied += bytes_read; in SendLargeFileLegacy()
776 ReportProgress(rpath, bytes_copied, total_size); in SendLargeFileLegacy()
1113 uint64_t bytes_copied = 0; in sync_recv_v1() local
1147 bytes_copied += msg.data.size; in sync_recv_v1()
1150 sc.ReportProgress(name != nullptr ? name : rpath, bytes_copied, expected_size); in sync_recv_v1()
1170 uint64_t bytes_copied = 0; in sync_recv_v2() local
[all …]
/packages/services/Car/cpp/bugreport/
Dmain.cpp207 int bytes_copied = copyTo(fd, output_socket, buffer, sizeof(buffer)); in copyFile() local
208 if (bytes_copied == 0) { in copyFile()
211 if (bytes_copied == -1) { in copyFile()