Home | History | Annotate | Download | only in payload_generator

Lines Matching defs:Block

54   // Represents a disk block on the install partition.
55 struct Block {
56 // During install, each block on the install partition will be written
60 // A Block object tells which vertex will read or write this block
62 // Generally, there will be a vector of Block objects whose length
64 Block() : reader(Vertex::kInvalidIndex), writer(Vertex::kInvalidIndex) {}
97 // Creates all the edges for the graph. Writers of a block point to
98 // readers of the same block. This is because for an edge A->B, B
101 const std::vector<Block>& blocks);
176 // The |blocks| vector contains a reader and writer for each block on the
179 // For each block in |operation| that is read or written, find that block
186 std::vector<Block>* blocks);
195 std::vector<Block>* blocks,