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

  /external/chromium/net/flip/
flip_framer_test.cc 18 void FramerSetEnableCompressionHelper(FlipFramer* framer, bool compress) {
19 framer->set_enable_compression(compress);
78 // Convenience function which runs a framer simulation with particular input.
87 // into the framer. This simulates getting strange-sized reads from
138 FlipFramer framer; local
142 framer.CreateSynStream(1, 1, CONTROL_FLAG_NONE, true, &headers));
146 framer.ParseHeaderBlock(frame.get(), &new_headers);
173 FlipFramer framer; local
174 FramerSetEnableCompressionHelper(&framer, false);
175 EXPECT_TRUE(framer.ParseHeaderBlock(control_frame.get(), &new_headers))
198 FlipFramer framer; local
223 FlipFramer framer; local
239 FlipFramer framer; local
270 FlipFramer framer; local
    [all...]
flip_framer.h 36 void FramerSetEnableCompressionHelper(FlipFramer* framer, bool compress);
45 // decoded from the framer.
51 virtual void OnError(FlipFramer* framer) = 0;
95 // Create a new Framer.
99 // Set callbacks to be called from the framer. A visitor must be set, or
100 // else the framer will likely crash. It is acceptable for the visitor
107 // Pass data into the framer for parsing.
112 // Resets the framer state after a frame has been successfully decoded.
116 // Check the state of the framer.
207 friend void test::FramerSetEnableCompressionHelper(FlipFramer* framer,
    [all...]
flip_protocol_test.cc 69 FlipFramer framer; local
73 framer.CreateSynStream(123, 2, CONTROL_FLAG_FIN, false, &headers));
83 framer.CreateSynReply(123, CONTROL_FLAG_NONE, false, &headers));
92 framer.CreateFinStream(123, 444));
flip_session.h 91 // Provide access to the framer for testing.
flip_session.cc 834 void FlipSession::OnError(flip::FlipFramer* framer) {
835 LOG(ERROR) << "FlipSession error: " << framer->error_code();
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_frame.h 26 // BalsaFrame is a 'Model' of a framer (haha).
27 // It exists as a proof of concept headers framer.
71 // Reset reinitializes all the member variables of the framer and clears the
78 // to the framer. This is a required step before the framer will process any
80 // To detach the header object from the framer, use set_balsa_headers(NULL).
249 virtual void HandleHeaderError(BalsaFrame* framer) {}
250 virtual void HandleHeaderWarning(BalsaFrame* framer) {}
251 virtual void HandleChunkingError(BalsaFrame* framer) {}
252 virtual void HandleBodyError(BalsaFrame* framer) {}
    [all...]
balsa_visitor_interface.h 152 // framer - the framer in which an error occured.
153 virtual void HandleHeaderError(BalsaFrame* framer) = 0;
159 // framer - the framer in which an error occured.
160 virtual void HandleHeaderWarning(BalsaFrame* framer) = 0;
165 // framer - the framer in which an error occured.
166 virtual void HandleChunkingError(BalsaFrame* framer) = 0;
174 // framer - the framer in which an error occured
    [all...]
flip_in_mem_edsm_server.cc 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; local
441 framer.set_balsa_visitor(&visitor);
442 framer.set_balsa_headers(&(visitor.headers));
454 pos += framer.ProcessInput(filename_contents.data() + pos,
456 if (framer.Error() || pos == old_pos) {
459 if (framer.Error())
    [all...]
balsa_frame.cc 523 // block from the framer (we do this because the framer requires that the
804 // that the message is framed, and so the framer is required to search
    [all...]
  /cts/apps/CtsVerifier/jni/audioquality/
GlitchTest.cpp 89 if (frame > (onset + 2)) { // let the framer get completely
  /external/tremolo/Tremolo/
vorbisfile.c 90 /* read a little more data from the file/pipe into the ogg_sync framer */
    [all...]

Completed in 102 milliseconds