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

  /external/chromium/net/tools/flip_server/
balsa_visitor_interface.h 13 class BalsaFrame;
16 // By default the BalsaFrame instantiates a class derived from this interface
19 // BalsaFrame, then you should subclass it, and set an instantiation of your
20 // subclass as the current visitor for the BalsaFrame class using
21 // BalsaFrame::set_visitor().
27 // This is how the BalsaFrame passes you the raw input which it knows to
48 // BalsaFrame passes the raw header data through this function. This is
56 // BalsaFrame passes the raw trailer data through this function. This is
66 // Since the BalsaFrame already has to parse the headers in order to
132 // BalsaFrame passes the raw chunk extension data through this function
    [all...]
balsa_frame.h 27 // BalsaFrame is a 'Model' of a framer (haha).
29 class BalsaFrame {
50 BalsaFrame();
51 ~BalsaFrame();
231 virtual void HandleHeaderError(BalsaFrame* framer) {}
232 virtual void HandleHeaderWarning(BalsaFrame* framer) {}
233 virtual void HandleChunkingError(BalsaFrame* framer) {}
234 virtual void HandleBodyError(BalsaFrame* framer) {}
http_interface.h 18 class BalsaFrame;
61 virtual void HandleHeaderError(BalsaFrame* framer);
62 virtual void HandleHeaderWarning(BalsaFrame* framer) {}
63 virtual void HandleChunkingError(BalsaFrame* framer);
64 virtual void HandleBodyError(BalsaFrame* framer);
71 BalsaFrame* spdy_framer() { return http_framer_; }
119 BalsaFrame* http_framer_;
streamer_interface.h 16 class BalsaFrame;
109 virtual void HandleHeaderError(BalsaFrame* framer);
110 virtual void HandleHeaderWarning(BalsaFrame* framer) {}
111 virtual void HandleChunkingError(BalsaFrame* framer);
112 virtual void HandleBodyError(BalsaFrame* framer);
120 BalsaFrame* http_framer_;
mem_cache.h 28 // nothing to do here-- we're assuming that the BalsaFrame has
51 virtual void HandleHeaderError(BalsaFrame* framer);
52 virtual void HandleHeaderWarning(BalsaFrame* framer);
53 virtual void HandleChunkingError(BalsaFrame* framer);
54 virtual void HandleBodyError(BalsaFrame* framer);
streamer_interface.cc 27 http_framer_(new BalsaFrame) {
188 void StreamerSM::HandleHeaderError(BalsaFrame* framer) {
192 void StreamerSM::HandleChunkingError(BalsaFrame* framer) {
196 void StreamerSM::HandleBodyError(BalsaFrame* framer) {
balsa_frame.cc 38 BalsaFrame::BalsaFrame()
59 BalsaFrame::~BalsaFrame() {}
61 void BalsaFrame::Reset() {
276 // of the BalsaFrame class so that it may be shared between code in
277 // BalsaFrame and BalsaHeaders (where it would be used in some variant of the
412 void BalsaFrame::ProcessFirstLine(const char* begin, const char* end) {
460 void BalsaFrame::CleanUpKeyValueWhitespace(
494 inline void BalsaFrame::FindColonsAndParseIntoKeyValue()
    [all...]
mem_cache.cc 32 void StoreBodyAndHeadersVisitor::HandleHeaderError(BalsaFrame* framer) {
36 void StoreBodyAndHeadersVisitor::HandleHeaderWarning(BalsaFrame* framer) {
40 void StoreBodyAndHeadersVisitor::HandleChunkingError(BalsaFrame* framer) {
44 void StoreBodyAndHeadersVisitor::HandleBodyError(BalsaFrame* framer) {
142 BalsaFrame framer;
http_interface.cc 21 http_framer_(new BalsaFrame),
77 void HttpSM::HandleHeaderError(BalsaFrame* framer) {
81 void HttpSM::HandleChunkingError(BalsaFrame* framer) {
85 void HttpSM::HandleBodyError(BalsaFrame* framer) {
spdy_interface.h 22 class BalsaFrame;
balsa_headers.h 35 // 2) provide a backing-store for BalsaFrame, which requires contiguous memory
133 // This function's main intended user is the BalsaFrame class, which,
844 // verify that the BalsaFrame had no errors while parsing).
    [all...]

Completed in 569 milliseconds