OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bytes_to_send
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/device/serial/
data_sender.cc
258
uint32_t
bytes_to_send
= static_cast<uint32_t>(data_.size()) - bytes_sent_;
local
261
&
bytes_to_send
,
266
bytes_sent_ +=
bytes_to_send
;
/external/chromium_org/net/quic/congestion_control/
tcp_cubic_sender_test.cc
174
QuicByteCount
bytes_to_send
= sender_->SendWindow();
local
178
bytes_to_send
);
197
QuicByteCount
bytes_to_send
= sender_->SendWindow();
local
199
bytes_to_send
);
/external/bluetooth/bluedroid/hci/src/
hci_h4.c
586
uint16_t
bytes_to_send
, lay_spec;
local
632
bytes_to_send
= acl_pkt_size + 1; /* packet_size + message type */
634
bytes_sent = userial_write(event,(uint8_t *) p,
bytes_to_send
);
686
bytes_to_send
= p_msg->len + 1; /* message_size + message type */
688
bytes_sent = userial_write(event,(uint8_t *) p,
bytes_to_send
);
[
all
...]
/external/chromium_org/net/websockets/
websocket_channel.cc
430
const size_t
bytes_to_send
=
local
432
const bool final = front.final() && data_size ==
bytes_to_send
;
435
DCHECK(!
bytes_to_send
|| data) << "Non empty data should not be null.";
436
const std::vector<char> data_vector(data, data +
bytes_to_send
);
439
<< "
bytes_to_send
=" <<
bytes_to_send
;
local
443
if (
bytes_to_send
< data_size) {
444
front.DidConsume(
bytes_to_send
);
448
const int64 signed_bytes_to_send = base::checked_cast<int64>(
bytes_to_send
);
[
all
...]
/external/chromium_org/media/cast/test/utility/
udp_proxy.cc
82
int64
bytes_to_send
= static_cast<int64>(
local
85
if (
bytes_to_send
< static_cast<int64>(buffer_.front()->size())) {
86
bytes_to_send
= buffer_.front()->size();
89
static_cast<int64>(buffer_.front()->size()) <=
bytes_to_send
) {
92
bytes_to_send
-= packet->size();
Completed in 185 milliseconds