OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:write_command_buf_
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/ftp/
ftp_network_transaction.cc
178
DCHECK(!
write_command_buf_
);
190
write_command_buf_
= new IOBufferWithSize(command.length() + 2);
191
write_buf_ = new DrainableIOBuffer(
write_command_buf_
,
192
write_command_buf_
->size());
193
memcpy(
write_command_buf_
->data(), command.data(), command.length());
194
memcpy(
write_command_buf_
->data() + command.length(), kCRLF, 2);
577
write_command_buf_
= NULL;
[
all
...]
ftp_network_transaction.h
196
scoped_refptr<IOBufferWithSize>
write_command_buf_
;
member in class:net::FtpNetworkTransaction
199
// to the
write_command_buf_
at correct offset.
Completed in 1713 milliseconds