Lines Matching refs:byte_count
192 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
254 if (!ParseUint(&byte_count, name)) { in daemon_service_to_socket()
257 return new SourceSocket(byte_count); in daemon_service_to_socket()