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

  /external/chromium/net/tools/flip_server/
balsa_visitor_interface.h 12 class BalsaFrame;
15 // By default the BalsaFrame instantiates a class derived from this interface
18 // BalsaFrame, then you should subclass it, and set an instantiation of your
19 // subclass as the current visitor for the BalsaFrame class using
20 // BalsaFrame::set_visitor().
26 // This is how the BalsaFrame passes you the raw input which it knows to
47 // BalsaFrame passes the raw header data through this function. This is
55 // BalsaFrame passes the raw trailer data through this function. This is
65 // Since the BalsaFrame already has to parse the headers in order to
131 // BalsaFrame passes the raw chunk extension data through this function
    [all...]
balsa_frame.h 26 // BalsaFrame is a 'Model' of a framer (haha).
28 class BalsaFrame {
49 BalsaFrame() :
69 ~BalsaFrame() {}
249 virtual void HandleHeaderError(BalsaFrame* framer) {}
250 virtual void HandleHeaderWarning(BalsaFrame* framer) {}
251 virtual void HandleChunkingError(BalsaFrame* framer) {}
252 virtual void HandleBodyError(BalsaFrame* framer) {}
balsa_frame.cc 37 void BalsaFrame::Reset() {
252 // of the BalsaFrame class so that it may be shared between code in
253 // BalsaFrame and BalsaHeaders (where it would be used in some variant of the
388 void BalsaFrame::ProcessFirstLine(const char* begin, const char* end) {
436 void BalsaFrame::CleanUpKeyValueWhitespace(
470 inline void BalsaFrame::FindColonsAndParseIntoKeyValue() {
597 void BalsaFrame::ProcessContentLengthLine(
645 void BalsaFrame::ProcessTransferEncodingLine(HeaderLines::size_type line_idx) {
755 void BalsaFrame::ProcessChunkExtensions(const char* input, size_t size,
764 void BalsaFrame::ProcessHeaderLines()
    [all...]
flip_in_mem_edsm_server.cc 64 using net::BalsaFrame;
277 // nothing to do here-- we're assuming that the BalsaFrame has
300 virtual void HandleHeaderError(BalsaFrame* framer) { HandleError(); }
301 virtual void HandleHeaderWarning(BalsaFrame* framer) { HandleError(); }
302 virtual void HandleChunkingError(BalsaFrame* framer) { HandleError(); }
303 virtual void HandleBodyError(BalsaFrame* framer) { HandleError(); }
440 BalsaFrame framer;
    [all...]
balsa_headers.h 34 // 2) provide a backing-store for BalsaFrame, which requires contiguous memory
142 // This function's main intended user is the BalsaFrame class, which,
    [all...]

Completed in 628 milliseconds