OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SpdyPingControlFrame
(Results
1 - 5
of
5
) sorted by null
/external/chromium/net/spdy/
spdy_protocol.h
668
class
SpdyPingControlFrame
: public SpdyControlFrame {
670
SpdyPingControlFrame
() : SpdyControlFrame(size()) {}
671
SpdyPingControlFrame
(char* data, bool owns_buffer)
spdy_framer.h
214
// Creates an instance of
SpdyPingControlFrame
. The unique_id is used to
216
static
SpdyPingControlFrame
* CreatePingFrame(uint32 unique_id);
spdy_session.h
284
void OnPing(const spdy::
SpdyPingControlFrame
& frame);
spdy_framer.cc
667
SpdyPingControlFrame
* SpdyFramer::CreatePingFrame(uint32 unique_id) {
671
size_t ping_size =
SpdyPingControlFrame
::size() - SpdyFrame::size();
674
return reinterpret_cast<
SpdyPingControlFrame
*>(frame.take());
[
all
...]
spdy_session.cc
[
all
...]
Completed in 249 milliseconds