• Home
  • Raw
  • Download

Lines Matching refs:FrameIdToShadowFrame

297 class FrameIdToShadowFrame {  class
299 static FrameIdToShadowFrame* Create(size_t frame_id, in Create()
301 FrameIdToShadowFrame* next, in Create()
304 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; in Create()
305 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
308 static void Delete(FrameIdToShadowFrame* f) { in Delete()
315 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext()
316 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext()
322 FrameIdToShadowFrame(size_t frame_id, in FrameIdToShadowFrame() function in art::FrameIdToShadowFrame
324 FrameIdToShadowFrame* next) in FrameIdToShadowFrame()
331 FrameIdToShadowFrame* next_;
334 DISALLOW_COPY_AND_ASSIGN(FrameIdToShadowFrame);
337 static FrameIdToShadowFrame* FindFrameIdToShadowFrame(FrameIdToShadowFrame* head, in FindFrameIdToShadowFrame()
339 FrameIdToShadowFrame* found = nullptr; in FindFrameIdToShadowFrame()
340 for (FrameIdToShadowFrame* record = head; record != nullptr; record = record->GetNext()) { in FindFrameIdToShadowFrame()
355 FrameIdToShadowFrame* record = FindFrameIdToShadowFrame( in FindDebuggerShadowFrame()
365 FrameIdToShadowFrame* record = FindFrameIdToShadowFrame( in GetUpdatedVRegFlags()
381 FrameIdToShadowFrame* record = FrameIdToShadowFrame::Create(frame_id, in FindOrCreateDebuggerShadowFrame()
396 FrameIdToShadowFrame* head = tlsPtr_.frame_id_to_shadow_frame; in RemoveDebuggerShadowFrameMapping()
399 FrameIdToShadowFrame::Delete(head); in RemoveDebuggerShadowFrameMapping()
402 FrameIdToShadowFrame* prev = head; in RemoveDebuggerShadowFrameMapping()
403 for (FrameIdToShadowFrame* record = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
408 FrameIdToShadowFrame::Delete(record); in RemoveDebuggerShadowFrameMapping()
3791 for (FrameIdToShadowFrame* record = tlsPtr_.frame_id_to_shadow_frame; in VisitRoots()