Home
last modified time | relevance | path

Searched refs:write_command_buf_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium/net/ftp/
Dftp_network_transaction.cc418 DCHECK(!write_command_buf_); in SendFtpCommand()
430 write_command_buf_ = new IOBufferWithSize(command.length() + 2); in SendFtpCommand()
431 write_buf_ = new DrainableIOBuffer(write_command_buf_, in SendFtpCommand()
432 write_command_buf_->size()); in SendFtpCommand()
433 memcpy(write_command_buf_->data(), command.data(), command.length()); in SendFtpCommand()
434 memcpy(write_command_buf_->data() + command.length(), kCRLF, 2); in SendFtpCommand()
683 write_command_buf_ = NULL; in DoCtrlWriteComplete()
Dftp_network_transaction.h211 scoped_refptr<IOBufferWithSize> write_command_buf_; variable