Home
last modified time | relevance | path

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

/art/runtime/
Dthread.cc455 class FrameIdToShadowFrame { class
457 static FrameIdToShadowFrame* Create(size_t frame_id, in Create()
459 FrameIdToShadowFrame* next, in Create()
462 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; in Create()
463 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
466 static void Delete(FrameIdToShadowFrame* f) { in Delete()
473 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext()
474 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext()
480 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() function in art::FrameIdToShadowFrame
482 FrameIdToShadowFrame* next) in FrameIdToShadowFrame()
[all …]
Dthread.h96 class FrameIdToShadowFrame; variable
2239 FrameIdToShadowFrame* frame_id_to_shadow_frame;