Home | History | Annotate | Download | only in flip_server

Lines Matching defs:HttpSM

15 HttpSM::HttpSM(SMConnection* connection,
35 HttpSM::~HttpSM() {
40 void HttpSM::ProcessBodyData(const char *input, size_t size) {
42 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Process Body Data: stream "
48 void HttpSM::ProcessHeaders(const BalsaHeaders& headers) {
60 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Received Response from "
67 void HttpSM::MessageDone() {
69 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: MessageDone. Sending EOF: "
73 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: MessageDone.";
77 void HttpSM::HandleHeaderError(BalsaFrame* framer) {
81 void HttpSM::HandleChunkingError(BalsaFrame* framer) {
85 void HttpSM::HandleBodyError(BalsaFrame* framer) {
89 void HttpSM::HandleError() {
93 void HttpSM::AddToOutputOrder(const MemCacheIter& mci) {
97 void HttpSM::SendOKResponse(uint32 stream_id, std::string* output) {
101 void HttpSM::InitSMInterface(SMInterface* sm_spdy_interface,
107 void HttpSM::InitSMConnection(SMConnectionPoolInterface* connection_pool,
115 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Initializing server "
127 size_t HttpSM::ProcessReadInput(const char* data, size_t len) {
128 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Process read input: stream "
133 size_t HttpSM::ProcessWriteInput(const char* data, size_t len) {
134 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Process write input: size "
146 bool HttpSM::MessageFullyRead() const {
150 void HttpSM::SetStreamID(uint32 stream_id) {
154 bool HttpSM::Error() const {
158 const char* HttpSM::ErrorAsString() const {
162 void HttpSM::Reset() {
163 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Reset: stream "
168 void HttpSM::ResetForNewConnection() {
170 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Server connection closing "
189 void HttpSM::Cleanup() {
191 VLOG(2) << "HttpSM Request Fully Read; stream_id: " << stream_id_;
196 int HttpSM::PostAcceptHook() {
200 void HttpSM::NewStream(uint32 stream_id, uint32 priority,
214 void HttpSM::SendEOF(uint32 stream_id) {
221 void HttpSM::SendErrorNotFound(uint32 stream_id) {
225 size_t HttpSM::SendSynStream(uint32 stream_id, const BalsaHeaders& headers) {
229 size_t HttpSM::SendSynReply(uint32 stream_id, const BalsaHeaders& headers) {
233 void HttpSM::SendDataFrame(uint32 stream_id, const char* data, int64 len,
238 void HttpSM::SendEOFImpl(uint32 stream_id) {
249 void HttpSM::SendErrorNotFoundImpl(uint32 stream_id) {
260 void HttpSM::SendOKResponseImpl(uint32 stream_id, std::string* output) {
271 size_t HttpSM::SendSynReplyImpl(uint32 stream_id, const BalsaHeaders& headers) {
287 size_t HttpSM::SendSynStreamImpl(uint32 stream_id,
304 void HttpSM::SendDataFrameImpl(uint32 stream_id, const char* data, int64 len,
320 void HttpSM::EnqueueDataFrame(DataFrame* df) {
321 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: Enqueue data frame: stream "
326 void HttpSM::GetOutput() {
329 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput: nothing to "
337 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput transformed "
356 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "HttpSM: GetOutput SendDataFrame["