Home
last modified time | relevance | path

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

/art/runtime/
Dthread.cc281 class FrameIdToShadowFrame { class
283 static FrameIdToShadowFrame* Create(size_t frame_id, in Create()
285 FrameIdToShadowFrame* next, in Create()
288 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; in Create()
289 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
292 static void Delete(FrameIdToShadowFrame* f) { in Delete()
299 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext()
300 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext()
306 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() function in art::FrameIdToShadowFrame
308 FrameIdToShadowFrame* next) in FrameIdToShadowFrame()
[all …]
Dthread.h85 class FrameIdToShadowFrame; variable
1602 FrameIdToShadowFrame* frame_id_to_shadow_frame; in PACKED()