Home | History | Annotate | Download | only in Core

Lines Matching refs:dst_len

136 Communication::Read (void *dst, size_t dst_len, uint32_t timeout_usec, ConnectionStatus &status, Error *error_ptr)
139 "%p Communication::Read (dst = %p, dst_len = %" PRIu64 ", timeout = %u usec) connection = %p",
142 (uint64_t)dst_len,
149 size_t cached_bytes = GetCachedBytes (dst, dst_len);
179 return GetCachedBytes (dst, dst_len);
196 return connection_sp->Read (dst, dst_len, timeout_usec, status, error_ptr);
274 Communication::GetCachedBytes (void *dst, size_t dst_len)
284 const size_t len = std::min<size_t>(dst_len, m_bytes.size());
319 size_t dst_len,
326 return connection_sp->Read (dst, dst_len, timeout_usec, status, error_ptr);