Home
last modified time | relevance | path

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

/art/runtime/
Dthread.cc443 class FrameIdToShadowFrame { class
445 static FrameIdToShadowFrame* Create(size_t frame_id, in Create()
447 FrameIdToShadowFrame* next, in Create()
450 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; in Create()
451 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
454 static void Delete(FrameIdToShadowFrame* f) { in Delete()
461 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext()
462 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext()
468 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() function in art::FrameIdToShadowFrame
470 FrameIdToShadowFrame* next) in FrameIdToShadowFrame()
[all …]
Dthread.h91 class FrameIdToShadowFrame; variable
1793 FrameIdToShadowFrame* frame_id_to_shadow_frame; in PACKED()