OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:static_entries_
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/spdy/
hpack_static_table.h
14
// HpackStaticTable provides |
static_entries_
| and |static_index_| for HPACK
23
// Prepares HpackStaticTable by filling up
static_entries_
and static_index_
33
return
static_entries_
;
40
HpackHeaderTable::EntryTable
static_entries_
;
member in class:net::HpackStaticTable
hpack_static_table.cc
24
static_entries_
.push_back(HpackEntry(StringPiece(it->name, it->name_len),
28
CHECK(static_index_.insert(&
static_entries_
.back()).second);
35
return !
static_entries_
.empty();
hpack_header_table.cc
36
:
static_entries_
(ObtainHpackStaticTable().GetStaticEntries()),
41
total_insertions_(
static_entries_
.size()) {}
50
if (index <
static_entries_
.size()) {
51
return &
static_entries_
[index];
53
index -=
static_entries_
.size();
105
return total_insertions_ - entry->InsertionIndex() +
static_entries_
.size();
hpack_header_table.h
108
// |
static_entries_
| and |static_index_| are owned by HpackStaticTable
110
const EntryTable&
static_entries_
;
member in class:net::HpackHeaderTable
hpack_header_table_test.cc
35
return table_->
static_entries_
;
Completed in 309 milliseconds