Home
last modified time | relevance | path

Searched defs:Block (Results 1 – 4 of 4) sorted by relevance

/system/core/adb/
Dtypes.h31 struct Block { struct
34 Block() {} in Block() function
36 explicit Block(size_t size) { allocate(size); } in Block() argument
39 Block(Iterator begin, Iterator end) : Block(end - begin) { in Block() function
44 Block(Block&& move) noexcept { in Block() argument
50 Block& operator=(const Block& copy) = delete; argument
61 ~Block() { clear(); } in ~Block() argument
63 void resize(size_t new_size) { in resize()
73 void assign(InputIt begin, InputIt end) { in assign()
101 bool operator==(const Block& rhs) const { argument
[all …]
/system/update_engine/payload_generator/
Dinplace_generator.h55 struct Block { struct
64 Block() : reader(Vertex::kInvalidIndex), writer(Vertex::kInvalidIndex) {} in Block() function
77 // Blocks will be substituted in the order listed in the vectors. argument
Dinplace_generator_unittest.cc50 using Block = InplaceGenerator::Block; typedef
Dinplace_generator.cc48 using Block = InplaceGenerator::Block; typedef