Home
last modified time | relevance | path

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

/art/runtime/
Dthread.cc297 class FrameIdToShadowFrame { class
299 static FrameIdToShadowFrame* Create(size_t frame_id, in Create()
301 FrameIdToShadowFrame* next, in Create()
304 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; in Create()
305 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
308 static void Delete(FrameIdToShadowFrame* f) { in Delete()
315 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext()
316 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext()
322 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() function in art::FrameIdToShadowFrame
324 FrameIdToShadowFrame* next) in FrameIdToShadowFrame()
[all …]
Dthread.h87 class FrameIdToShadowFrame; variable
1668 FrameIdToShadowFrame* frame_id_to_shadow_frame; in PACKED()