OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FtpCtrlResponse
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/ftp/
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_ctrl_response_buffer.h
18
struct
FtpCtrlResponse
{
21
FtpCtrlResponse
();
22
~
FtpCtrlResponse
();
42
FtpCtrlResponse
PopResponse();
88
FtpCtrlResponse
response_buf_;
91
std::queue<
FtpCtrlResponse
> responses_;
Completed in 44 milliseconds