Home
last modified time | relevance | path

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

/external/perfetto/include/perfetto/protozero/
Dcopyable_ptr.h41 CopyablePtr() : ptr_(new T()) {} in CopyablePtr() function
45 CopyablePtr(const CopyablePtr& other) : ptr_(new T(*other.ptr_)) {} in CopyablePtr() function
52 CopyablePtr(CopyablePtr&& other) noexcept : ptr_(std::move(other.ptr_)) { in CopyablePtr() function