Home
last modified time | relevance | path

Searched refs:entry_type (Results 1 – 25 of 50) sorted by relevance

12

/external/cronet/net/third_party/quiche/src/quiche/http2/hpack/decoder/
Dhpack_entry_type_decoder_test.cc43 decoder_.entry_type()); in TEST_F()
63 for (const HpackEntryType entry_type : entry_types) { in TEST_F() local
64 const uint32_t first = entry_type == HpackEntryType::kIndexedHeader ? 1 : 0; in TEST_F()
67 bb.AppendEntryTypeAndVarint(entry_type, index); in TEST_F()
69 auto validator = [entry_type, index, this]() -> AssertionResult { in TEST_F()
70 HTTP2_VERIFY_EQ(entry_type, decoder_.entry_type()); in TEST_F()
76 << "\nentry_type=" << entry_type << ", index=" << index; in TEST_F()
Dhpack_whole_entry_listener.h36 HpackEntryType entry_type, size_t name_index,
44 HpackEntryType entry_type, HpackDecoderStringBuffer* name_buffer,
65 HpackEntryType entry_type, size_t name_index,
67 void OnLiteralNameAndValue(HpackEntryType entry_type,
Dhpack_decoder_state.cc99 HpackEntryType entry_type, size_t name_index, in OnNameIndexAndLiteralValue() argument
102 << entry_type << ", " << name_index << ", " in OnNameIndexAndLiteralValue()
116 if (entry_type == HpackEntryType::kIndexedLiteralHeader) { in OnNameIndexAndLiteralValue()
125 HpackEntryType entry_type, HpackDecoderStringBuffer* name_buffer, in OnLiteralNameAndValue() argument
127 QUICHE_DVLOG(2) << "HpackDecoderState::OnLiteralNameAndValue " << entry_type in OnLiteralNameAndValue()
140 if (entry_type == HpackEntryType::kIndexedLiteralHeader) { in OnLiteralNameAndValue()
Dhpack_entry_decoder.cc67 if (entry_type_decoder_.entry_type() == HpackEntryType::kIndexedHeader) { in Start()
221 const HpackEntryType entry_type = entry_type_decoder_.entry_type(); in DispatchOnType() local
223 switch (entry_type) { in DispatchOnType()
236 listener->OnStartLiteralHeader(entry_type, varint); in DispatchOnType()
254 QUICHE_BUG(http2_bug_63_2) << "Unreachable, entry_type=" << entry_type; in DispatchOnType()
Dhpack_entry_decoder_listener.cc19 HpackEntryType entry_type, size_t maybe_name_index) { in OnStartLiteralHeader() argument
20 QUICHE_VLOG(1) << "OnStartLiteralHeader: entry_type=" << entry_type in OnStartLiteralHeader()
23 wrapped_->OnStartLiteralHeader(entry_type, maybe_name_index); in OnStartLiteralHeader()
Dhpack_whole_entry_buffer.cc41 void HpackWholeEntryBuffer::OnStartLiteralHeader(HpackEntryType entry_type, in OnStartLiteralHeader() argument
44 << entry_type << ", maybe_name_index=" << maybe_name_index; in OnStartLiteralHeader()
45 entry_type_ = entry_type; in OnStartLiteralHeader()
Dhpack_decoder_state.h73 HpackEntryType entry_type, size_t name_index,
75 void OnLiteralNameAndValue(HpackEntryType entry_type,
Dhpack_entry_decoder_listener.h35 virtual void OnStartLiteralHeader(HpackEntryType entry_type,
76 void OnStartLiteralHeader(HpackEntryType entry_type,
Dhpack_decoder_state_test.cc116 void SendValueAndVerifyCallback(size_t name_index, HpackEntryType entry_type, in SendValueAndVerifyCallback() argument
121 decoder_state_.OnNameIndexAndLiteralValue(entry_type, name_index, in SendValueAndVerifyCallback()
126 void SendNameAndValueAndVerifyCallback(HpackEntryType entry_type, in SendNameAndValueAndVerifyCallback() argument
134 decoder_state_.OnLiteralNameAndValue(entry_type, &name_buffer_, in SendNameAndValueAndVerifyCallback()
Dhpack_whole_entry_buffer_test.cc30 (HpackEntryType entry_type, size_t name_index,
34 (HpackEntryType entry_type, HpackDecoderStringBuffer* name_buffer,
/external/cronet/base/trace_event/
Dmemory_allocator_dump.cc74 switch (entry.entry_type) { in AsValueInto()
107 DCHECK_EQ(entry.entry_type, Entry::EntryType::kUint64); in AsProtoInto()
118 switch (entry.entry_type) { in AsProtoInto()
146 if (entry.entry_type == Entry::kUint64 && entry.units == kUnitsBytes && in GetSizeInternal()
155 MemoryAllocatorDump::Entry::Entry() : entry_type(kString), value_uint64() {} in Entry()
163 : name(name), units(units), entry_type(kUint64), value_uint64(value) {} in Entry()
167 : name(name), units(units), entry_type(kString), value_string(value) {} in Entry()
170 if (!(name == rhs.name && units == rhs.units && entry_type == rhs.entry_type)) in operator ==()
172 switch (entry_type) { in operator ==()
183 switch (entry.entry_type) { in PrintTo()
/external/libchrome/base/trace_event/
Dmemory_allocator_dump.cc71 switch (entry.entry_type) { in AsValueInto()
97 if (entry.entry_type == Entry::kUint64 && entry.units == kUnitsBytes && in GetSizeInternal()
106 MemoryAllocatorDump::Entry::Entry() : entry_type(kString), value_uint64() {} in Entry()
114 : name(name), units(units), entry_type(kUint64), value_uint64(value) {} in Entry()
118 : name(name), units(units), entry_type(kString), value_string(value) {} in Entry()
121 if (!(name == rhs.name && units == rhs.units && entry_type == rhs.entry_type)) in operator ==()
123 switch (entry_type) { in operator ==()
134 switch (entry.entry_type) { in PrintTo()
/external/cronet/net/third_party/quiche/src/quiche/http2/test_tools/
Dhpack_block_builder.h53 void AppendNameIndexAndLiteralValue(HpackEntryType entry_type, in AppendNameIndexAndLiteralValue() argument
60 AppendEntryTypeAndVarint(entry_type, name_index); in AppendNameIndexAndLiteralValue()
64 void AppendLiteralNameAndValue(HpackEntryType entry_type, in AppendLiteralNameAndValue() argument
69 AppendEntryTypeAndVarint(entry_type, 0); in AppendLiteralNameAndValue()
84 void AppendEntryTypeAndVarint(HpackEntryType entry_type, uint64_t varint);
Dhpack_block_builder.cc23 void HpackBlockBuilder::AppendEntryTypeAndVarint(HpackEntryType entry_type, in AppendEntryTypeAndVarint() argument
27 switch (entry_type) { in AppendEntryTypeAndVarint()
49 QUICHE_BUG(http2_bug_110_1) << "Unreached, entry_type=" << entry_type; in AppendEntryTypeAndVarint()
/external/perfetto/src/trace_processor/importers/memory_tracker/
Draw_memory_graph_node.cc32 : name(n), units(u), entry_type(kUint64), value_uint64(v) {} in MemoryNodeEntry()
37 : name(n), units(u), entry_type(kString), value_string(v) {} in MemoryNodeEntry()
41 if (!(name == rhs.name && units == rhs.units && entry_type == rhs.entry_type)) in operator ==()
43 switch (entry_type) { in operator ==()
/external/perfetto/include/perfetto/ext/traced/
Ddata_source_types.h40 InodeMapValue(InodeFileMap_Entry_Type entry_type, std::set<std::string> paths) in InodeMapValue() argument
41 : entry_type_(entry_type), paths_(std::move(paths)) {} in InodeMapValue()
47 void SetType(InodeFileMap_Entry_Type entry_type) { entry_type_ = entry_type; } in SetType() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DMinidumpYAML.h62 using entry_type = EntryT; member
64 std::vector<entry_type> Entries;
66 explicit ListStream(std::vector<entry_type> Entries = {})
267 llvm::MinidumpYAML::MemoryListStream::entry_type)
269 llvm::MinidumpYAML::ModuleListStream::entry_type)
271 llvm::MinidumpYAML::ThreadListStream::entry_type)
274 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MinidumpYAML::MemoryListStream::entry_type)
275 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MinidumpYAML::ModuleListStream::entry_type)
276 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MinidumpYAML::ThreadListStream::entry_type)
/external/libevent/
Devent_rpcgen.py1479 entry_type = ""
1487 if not entry_type:
1496 if not entry_type:
1497 entry_type = token
1531 if entry_type == "bytes":
1533 newentry = factory.EntryBytes(entry_type, name, tag, fixed_length)
1535 newentry = factory.EntryVarBytes(entry_type, name, tag)
1536 elif entry_type == "int" and not fixed_length:
1537 newentry = factory.EntryInt(entry_type, name, tag)
1538 elif entry_type == "int64" and not fixed_length:
[all …]
/external/brotli/research/
Dfind_opt_references.cc39 typedef std::pair<int, std::vector<int> > entry_type; typedef
92 int left_lcp, entry_type* entry) { in GoLeft()
104 int right_ix, int right_lcp, entry_type* entry) { in GoRight()
117 int right_lcp, entry_type* entries) { in StoreReference()
164 void ProcessEntries(entry_type* entries, size_t size, FILE* fout) { in ProcessEntries()
169 entry_type& entry = entries[idx]; in ProcessEntries()
237 entry_type* entries; in main()
239 entries = new entry_type[input_size]; in main()
/external/jsoncpp/devtools/
Dantglob.py102 entry_type = FILE, argument
109 entry_type_filter = entry_type
146 entry_type = is_file and FILE_LINK or DIR_LINK
148 entry_type = is_file and FILE or DIR
150 if (entry_type & entry_type_filter) != 0:
/external/cronet/third_party/libevent/
Devent_rpcgen.py1064 entry_type = ''
1076 if not entry_type:
1085 if not entry_type:
1086 entry_type = token
1125 if entry_type == 'bytes':
1127 newentry = EntryBytes(entry_type, name, tag, fixed_length)
1129 newentry = EntryVarBytes(entry_type, name, tag)
1130 elif entry_type == 'int' and not fixed_length:
1131 newentry = EntryInt(entry_type, name, tag)
1132 elif entry_type == 'string' and not fixed_length:
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DMinidumpYAML.cpp276 void yaml::MappingTraits<ModuleListStream::entry_type>::mapping( in mapping()
277 IO &IO, ModuleListStream::entry_type &M) { in mapping()
301 void yaml::MappingTraits<MemoryListStream::entry_type>::mapping( in mapping()
302 IO &IO, MemoryListStream::entry_type &Range) { in mapping()
359 void yaml::MappingTraits<ThreadListStream::entry_type>::mapping( in mapping()
360 IO &IO, ThreadListStream::entry_type &T) { in mapping()
488 std::vector<MemoryListStream::entry_type> Ranges; in create()
501 std::vector<ModuleListStream::entry_type> Modules; in create()
537 std::vector<ThreadListStream::entry_type> Threads; in create()
DMinidumpEmitter.cpp138 static void layout(BlobAllocator &File, MemoryListStream::entry_type &Range) { in layout()
142 static void layout(BlobAllocator &File, ModuleListStream::entry_type &M) { in layout()
149 static void layout(BlobAllocator &File, ThreadListStream::entry_type &T) { in layout()
/external/ltp/testcases/kernel/syscalls/getdents/
Dgetdents01.c31 enum entry_type { enum
39 enum entry_type type;
/external/pdfium/third_party/libtiff/
Dtif_dirwrite.c3165 uint16_t entry_type = 0; in _TIFFRewriteField() local
3270 memcpy(&entry_type, direntry_raw + 2, sizeof(uint16_t)); in _TIFFRewriteField()
3272 TIFFSwabShort(&entry_type); in _TIFFRewriteField()
3302 if (entry_offset == 0 && entry_count == 0 && entry_type == 0) in _TIFFRewriteField()
3306 entry_type = in _TIFFRewriteField()
3322 entry_type = TIFF_LONG8; in _TIFFRewriteField()
3337 entry_type = TIFF_LONG; in _TIFFRewriteField()
3341 entry_type = TIFF_SHORT; in _TIFFRewriteField()
3353 datatype = entry_type == TIFF_SHORT ? TIFF_SHORT : TIFF_LONG; in _TIFFRewriteField()
3364 (entry_type == TIFF_SHORT || entry_type == TIFF_LONG || in _TIFFRewriteField()
[all …]

12