Home
last modified time | relevance | path

Searched refs:byte_count (Results 1 – 5 of 5) sorted by relevance

/packages/modules/adb/daemon/
Dservices.cpp192 explicit SinkSocket(size_t byte_count) { in SinkSocket()
193 LOG(INFO) << "Creating new SinkSocket with capacity " << byte_count; in SinkSocket()
194 bytes_left_ = byte_count; in SinkSocket()
214 explicit SourceSocket(size_t byte_count) { in SourceSocket()
215 LOG(INFO) << "Creating new SourceSocket with capacity " << byte_count; in SourceSocket()
216 bytes_left_ = byte_count; in SourceSocket()
247 uint64_t byte_count = 0; in daemon_service_to_socket() local
248 if (!ParseUint(&byte_count, name)) { in daemon_service_to_socket()
251 return new SinkSocket(byte_count); in daemon_service_to_socket()
253 uint64_t byte_count = 0; in daemon_service_to_socket() local
[all …]
/packages/modules/adb/
Dadb_utils.cpp161 std::string dump_hex(const void* data, size_t byte_count) { in dump_hex() argument
164 if (byte_count > truncate_len) { in dump_hex()
165 byte_count = truncate_len; in dump_hex()
172 for (size_t i = 0; i < byte_count; ++i) { in dump_hex()
177 for (size_t i = 0; i < byte_count; ++i) { in dump_hex()
Dadb_utils.h47 std::string dump_hex(const void* ptr, size_t byte_count);
/packages/apps/Nfc/nci/jni/
DNativeLlcpConnectionlessSocket.cpp74 size_t byte_count = bytes.size(); in nativeLlcpConnectionlessSocket_doSendTo() local
77 << StringPrintf("NFA_P2pSendUI: len = %zu", byte_count); in nativeLlcpConnectionlessSocket_doSendTo()
81 NFA_P2pSendUI((tNFA_HANDLE)handle, nsap, byte_count, raw_ptr); in nativeLlcpConnectionlessSocket_doSendTo()
/packages/modules/adb/client/
Dfastdeploy.cpp106 static void push_to_device(const void* data, size_t byte_count, const char* dst, bool sync) { in push_to_device() argument
109 android::base::WriteFully(tf.fd, data, byte_count); in push_to_device()