HomeSort by relevance Sort by last modified time
    Searched refs:FrameIdToShadowFrame (Results 1 - 2 of 2) sorted by null

  /art/runtime/
thread.cc 297 class FrameIdToShadowFrame {
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,
324 FrameIdToShadowFrame* next
    [all...]
thread.h 87 class FrameIdToShadowFrame;
    [all...]

Completed in 52 milliseconds