Home | History | Annotate | Download | only in flip_server

Lines Matching full:uint32

76   virtual void SetStreamID(uint32 stream_id) {}
90 virtual void NewStream(uint32 stream_id,
91 uint32 priority,
94 virtual void SendEOF(uint32 stream_id);
95 virtual void SendErrorNotFound(uint32 stream_id);
96 void SendOKResponse(uint32 stream_id, std::string* output);
97 virtual size_t SendSynStream(uint32 stream_id, const BalsaHeaders& headers);
98 virtual size_t SendSynReply(uint32 stream_id, const BalsaHeaders& headers);
99 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len,
100 uint32 flags, bool compress);
109 void SendEOFImpl(uint32 stream_id);
110 void SendErrorNotFoundImpl(uint32 stream_id);
111 void SendOKResponseImpl(uint32 stream_id, std::string* output);
112 void KillStream(uint32 stream_id);
114 size_t SendSynStreamImpl(uint32 stream_id, const BalsaHeaders& headers);
115 size_t SendSynReplyImpl(uint32 stream_id, const BalsaHeaders& headers);
116 void SendDataFrameImpl(uint32 stream_id, const char* data, int64 len,
130 uint32 next_outgoing_stream_id_;
136 typedef std::map<uint32, SMInterface*> StreamToSmif;