OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SpdyFramer
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/spdy/
spdy_framer.cc
47
const char
SpdyFramer
::kDictionary[] =
61
const int
SpdyFramer
::kDictionarySize = arraysize(kDictionary);
64
bool
SpdyFramer
::compression_default_ = true;
65
int
SpdyFramer
::spdy_version_ = kSpdyProtocolVersion;
70
size_t
SpdyFramer
::kControlFrameBufferInitialSize = 8 * 1024;
74
size_t
SpdyFramer
::kControlFrameBufferMaxSize = 16 * 1024;
76
const SpdyStreamId
SpdyFramer
::kInvalidStream = -1;
77
const size_t
SpdyFramer
::kHeaderDataChunkMaxSize = 1024;
99
(const Bytef*)
SpdyFramer
::kDictionary,
100
SpdyFramer
::kDictionarySize)
[
all
...]
spdy_framer.h
35
class
SpdyFramer
;
40
void FramerSetEnableCompressionHelper(
SpdyFramer
* framer, bool compress);
51
// SpdyFramerVisitorInterface is a set of callbacks for the
SpdyFramer
.
59
virtual void OnError(
SpdyFramer
* framer) = 0;
94
class
SpdyFramer
{
135
SpdyFramer
();
136
virtual ~
SpdyFramer
();
267
// Compression state is maintained as part of the
SpdyFramer
.
274
// Compression state is maintained as part of the
SpdyFramer
.
332
friend void test::FramerSetEnableCompressionHelper(
SpdyFramer
* framer
[
all
...]
/external/chromium_org/net/spdy/
spdy_framer.h
39
class
SpdyFramer
;
112
// SpdyFramerVisitorInterface is a set of callbacks for the
SpdyFramer
.
139
virtual void OnError(
SpdyFramer
* framer) = 0;
236
// SpdyFramerDebugVisitorInterface may be used in conjunction with
SpdyFramer
in
237
// order to extract debug/internal information about the
SpdyFramer
as it
262
class NET_EXPORT_PRIVATE
SpdyFramer
{
316
explicit
SpdyFramer
(SpdyMajorVersion version);
317
virtual ~
SpdyFramer
();
461
// TODO(hkhalil): Implement CREDENTIAL frame parsing in
SpdyFramer
482
// Compression state is maintained as part of the
SpdyFramer
[
all
...]
spdy_framer.cc
54
const SpdyStreamId
SpdyFramer
::kInvalidStream = -1;
55
const size_t
SpdyFramer
::kHeaderDataChunkMaxSize = 1024;
59
const size_t
SpdyFramer
::kControlFrameBufferSize = 18;
117
SpdyFramer
::
SpdyFramer
(SpdyMajorVersion version)
131
SpdyFramer
::~
SpdyFramer
() {
140
void
SpdyFramer
::Reset() {
154
size_t
SpdyFramer
::GetDataFrameMinimumSize() const {
162
size_t
SpdyFramer
::GetControlFrameHeaderSize() const
[
all
...]
Completed in 28 milliseconds