HomeSort by relevance Sort by last modified time
    Searched refs:FtpCtrlResponse (Results 1 - 5 of 5) sorted by null

  /external/chromium/net/ftp/
ftp_ctrl_response_buffer.h 18 struct FtpCtrlResponse {
21 FtpCtrlResponse();
22 ~FtpCtrlResponse();
42 FtpCtrlResponse PopResponse();
88 FtpCtrlResponse response_buf_;
91 std::queue<FtpCtrlResponse> responses_;
ftp_ctrl_response_buffer.cc 15 const int FtpCtrlResponse::kInvalidStatusCode = -1;
17 FtpCtrlResponse::FtpCtrlResponse() : status_code(kInvalidStatusCode) {}
19 FtpCtrlResponse::~FtpCtrlResponse() {}
49 response_buf_ = FtpCtrlResponse();
66 response_buf_ = FtpCtrlResponse();
75 FtpCtrlResponse FtpCtrlResponseBuffer::PopResponse() {
76 FtpCtrlResponse result = responses_.front();
85 status_code(FtpCtrlResponse::kInvalidStatusCode)
    [all...]
ftp_network_transaction.h 156 int ProcessResponseUSER(const FtpCtrlResponse& response);
158 int ProcessResponsePASS(const FtpCtrlResponse& response);
160 int ProcessResponseSYST(const FtpCtrlResponse& response);
162 int ProcessResponsePWD(const FtpCtrlResponse& response);
164 int ProcessResponseTYPE(const FtpCtrlResponse& response);
166 int ProcessResponseEPSV(const FtpCtrlResponse& response);
168 int ProcessResponsePASV(const FtpCtrlResponse& response);
170 int ProcessResponseRETR(const FtpCtrlResponse& response);
172 int ProcessResponseSIZE(const FtpCtrlResponse& response);
174 int ProcessResponseCWD(const FtpCtrlResponse& response)
    [all...]
ftp_ctrl_response_buffer_unittest.cc 29 net::FtpCtrlResponse response = buffer_.PopResponse();
48 net::FtpCtrlResponse response = buffer_.PopResponse();
65 net::FtpCtrlResponse response = buffer_.PopResponse();
90 net::FtpCtrlResponse response = buffer_.PopResponse();
110 net::FtpCtrlResponse response = buffer_.PopResponse();
130 net::FtpCtrlResponse response = buffer_.PopResponse();
152 net::FtpCtrlResponse response = buffer_.PopResponse();
ftp_network_transaction.cc 120 bool ExtractPortFromEPSVResponse(const net::FtpCtrlResponse& response,
150 bool ExtractPortFromPASVResponse(const net::FtpCtrlResponse& response,
340 FtpCtrlResponse response = ctrl_response_buffer_->PopResponse();
706 const FtpCtrlResponse& response) {
738 const FtpCtrlResponse& response) {
765 const FtpCtrlResponse& response) {
817 int FtpNetworkTransaction::ProcessResponsePWD(const FtpCtrlResponse& response) {
871 const FtpCtrlResponse& response) {
899 const FtpCtrlResponse& response) {
933 const FtpCtrlResponse& response)
    [all...]

Completed in 59 milliseconds