Home
last modified time | relevance | path

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

/system/core/adb/
Dtypes.h32 struct Block { struct
35 Block() = default; argument
37 explicit Block(size_t size) { allocate(size); } in Block() function
40 Block(Iterator begin, Iterator end) : Block(end - begin) { in Block() function
45 Block(Block&& move) noexcept in Block() argument
50 Block& operator=(const Block& copy) = delete; argument
61 void resize(size_t new_size) { in resize()
71 void assign(InputIt begin, InputIt end) { in assign()
99 bool operator==(const Block& rhs) const { argument
104 void allocate(size_t size) { in allocate()
[all …]
/system/tools/hidl/host_utils/include/hidl-util/
DFormatter.h37 struct Block { struct
43 bool populated = false;
44 bool printUnlessWrapped = false;
47 std::string content;
48 std::vector<Block> blocks;
50 Block* const parent;
/system/tools/hidl/host_utils/
DFormatter.cpp257 WrappedOutput::Block::Block(const std::string& content, Block* const parent) in Block() function in android::WrappedOutput::Block