OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bytes_to_send
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/quic/congestion_control/
tcp_cubic_sender_test.cc
51
QuicByteCount
bytes_to_send
= sender_->AvailableSendWindow();
local
52
while (
bytes_to_send
> 0) {
53
QuicByteCount bytes_in_packet = std::min(kDefaultTCPMSS,
bytes_to_send
);
56
bytes_to_send
-= bytes_in_packet;
57
if (
bytes_to_send
> 0) {
125
QuicByteCount
bytes_to_send
= sender_->SendWindow();
local
127
bytes_to_send
);
/external/chromium_org/chrome_frame/test/
test_server.cc
353
int
bytes_to_send
= std::min(options_.chunk_size_, size - cur_pos_);
local
355
socket_->Send(chunk_ptr,
bytes_to_send
);
356
VLOG(1) << "Sent(" << cur_pos_ << "," <<
bytes_to_send
<< "): "
357
<< base::StringPiece(chunk_ptr,
bytes_to_send
);
359
cur_pos_ +=
bytes_to_send
;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
standalone.py
707
bytes_to_send
= request_array[0]
709
bytes_to_send
= int(
bytes_to_send
)
711
self._logger.debug('Malformed size parameter: %r',
bytes_to_send
)
713
self._logger.debug('Requested to send %s bytes',
bytes_to_send
)
733
'Content-Length: %d\r\n\r\n' %
bytes_to_send
)
740
while
bytes_to_send
> 0:
741
bytes_to_send_in_this_loop =
bytes_to_send
752
bytes_to_send
-= bytes_to_send_in_this_loop
[
all
...]
/external/bluetooth/bluedroid/hci/src/
hci_h4.c
597
uint16_t
bytes_to_send
, lay_spec;
local
643
bytes_to_send
= acl_pkt_size + 1; /* packet_size + message type */
645
bytes_sent = userial_write(event,(uint8_t *) p,
bytes_to_send
);
697
bytes_to_send
= p_msg->len + 1; /* message_size + message type */
699
bytes_sent = userial_write(event,(uint8_t *) p,
bytes_to_send
);
[
all
...]
/external/chromium/net/spdy/
spdy_framer.cc
486
size_t
bytes_to_send
= std::min(data_len, remaining_control_payload_);
local
487
DCHECK_GT(
bytes_to_send
, 0u);
489
&control_frame, data,
bytes_to_send
);
490
data_len -=
bytes_to_send
;
491
remaining_control_payload_ -=
bytes_to_send
;
[
all
...]
Completed in 4455 milliseconds