Home
last modified time | relevance | path

Searched refs:TiMemory (Results 1 – 1 of 1) sorted by relevance

/art/tools/jvmti-agents/titrace/
Dtitrace.cc45 struct TiMemory { struct
46 explicit TiMemory(jvmtiEnv* env, T* mem, size_t size) : env_(env), mem_(mem), size_(size) { in TiMemory() function
49 ~TiMemory() { in ~TiMemory() argument
56 TiMemory(const TiMemory& other) = delete;
57 TiMemory(TiMemory&& other) noexcept { in TiMemory() function
69 TiMemory& operator=(TiMemory&& other) noexcept { in operator =() argument
71 TiMemory::~TiMemory(); in operator =()
73 new (this) TiMemory(std::move(other)); in operator =()
96 TiMemory<uint8_t> bytecode_;