Searched defs:FrameIdToShadowFrame (Results 1 - 1 of 1) sorted by relevance

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

Completed in 72 milliseconds