struct ListStream

Declaration

template <typename EntryT>
struct ListStream : public Stream { /* full declaration omitted */ };

Description

A stream representing a list of abstract entries in a minidump stream. Its instantiations can be used to represent the ModuleList stream and other streams with a similar structure.

Declared at: llvm/include/llvm/ObjectYAML/MinidumpYAML.h:61

Inherits from: Stream

Templates

EntryT

Member Variables

public std::vector<entry_type> Entries

Inherited from Stream:

public Kind
public Type

Method Overview

  • public ListStream<EntryT>(std::vector<entry_type> Entries = {})
  • public static bool classof(const llvm::MinidumpYAML::Stream * S)

Inherited from Stream:

Methods

ListStream<EntryT>(
    std::vector<entry_type> Entries = {})

Declared at: llvm/include/llvm/ObjectYAML/MinidumpYAML.h:66

Parameters

std::vector<entry_type> Entries = {}

static bool classof(
    const llvm::MinidumpYAML::Stream* S)

Declared at: llvm/include/llvm/ObjectYAML/MinidumpYAML.h:69

Parameters

const llvm::MinidumpYAML::Stream* S