Home
last modified time | relevance | path

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

/art/runtime/
Dthread.cc438 class FrameIdToShadowFrame { class
440 static FrameIdToShadowFrame* Create(size_t frame_id, in Create()
442 FrameIdToShadowFrame* next, in Create()
445 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; in Create()
446 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
449 static void Delete(FrameIdToShadowFrame* f) { in Delete()
456 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext()
457 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext()
463 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() function in art::FrameIdToShadowFrame
465 FrameIdToShadowFrame* next) in FrameIdToShadowFrame()
[all …]
Dthread.h90 class FrameIdToShadowFrame; variable
1696 FrameIdToShadowFrame* frame_id_to_shadow_frame; in PACKED()