Home
last modified time | relevance | path

Searched refs:FtpCtrlResponse (Results 1 – 5 of 5) sorted by relevance

/external/chromium/net/ftp/
Dftp_ctrl_response_buffer.cc15 const int FtpCtrlResponse::kInvalidStatusCode = -1;
17 FtpCtrlResponse::FtpCtrlResponse() : status_code(kInvalidStatusCode) {} in FtpCtrlResponse() function in net::FtpCtrlResponse
19 FtpCtrlResponse::~FtpCtrlResponse() {} in ~FtpCtrlResponse()
49 response_buf_ = FtpCtrlResponse(); in ConsumeData()
66 response_buf_ = FtpCtrlResponse(); in ConsumeData()
75 FtpCtrlResponse FtpCtrlResponseBuffer::PopResponse() { in PopResponse()
76 FtpCtrlResponse result = responses_.front(); in PopResponse()
85 status_code(FtpCtrlResponse::kInvalidStatusCode) { in ParsedLine()
Dftp_network_transaction.h156 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 …]
Dftp_ctrl_response_buffer.h18 struct FtpCtrlResponse { struct
21 FtpCtrlResponse(); argument
22 ~FtpCtrlResponse();
42 FtpCtrlResponse PopResponse(); argument
88 FtpCtrlResponse response_buf_;
91 std::queue<FtpCtrlResponse> responses_;
Dftp_ctrl_response_buffer_unittest.cc29 net::FtpCtrlResponse response = buffer_.PopResponse(); in TEST_F()
48 net::FtpCtrlResponse response = buffer_.PopResponse(); in TEST_F()
65 net::FtpCtrlResponse response = buffer_.PopResponse(); in TEST_F()
90 net::FtpCtrlResponse response = buffer_.PopResponse(); in TEST_F()
110 net::FtpCtrlResponse response = buffer_.PopResponse(); in TEST_F()
130 net::FtpCtrlResponse response = buffer_.PopResponse(); in TEST_F()
152 net::FtpCtrlResponse response = buffer_.PopResponse(); in TEST_F()
Dftp_network_transaction.cc120 bool ExtractPortFromEPSVResponse(const net::FtpCtrlResponse& response, in ExtractPortFromEPSVResponse()
150 bool ExtractPortFromPASVResponse(const net::FtpCtrlResponse& response, in ExtractPortFromPASVResponse()
340 FtpCtrlResponse response = ctrl_response_buffer_->PopResponse(); in ProcessCtrlResponse()
706 const FtpCtrlResponse& response) { in ProcessResponseUSER()
738 const FtpCtrlResponse& response) { in ProcessResponsePASS()
765 const FtpCtrlResponse& response) { in ProcessResponseSYST()
817 int FtpNetworkTransaction::ProcessResponsePWD(const FtpCtrlResponse& response) { in ProcessResponsePWD()
871 const FtpCtrlResponse& response) { in ProcessResponseTYPE()
899 const FtpCtrlResponse& response) { in ProcessResponseEPSV()
933 const FtpCtrlResponse& response) { in ProcessResponsePASV()
[all …]