Searched refs:DebugInfoListNode (Results 1 – 2 of 2) sorted by relevance
171 class DebugInfoListNode {173 DebugInfoListNode(Isolate* isolate, DebugInfo* debug_info);174 ~DebugInfoListNode();176 DebugInfoListNode* next() { return next_; } in next()177 void set_next(DebugInfoListNode* next) { next_ = next; } in set_next()185 DebugInfoListNode* next_;452 void FindDebugInfo(Handle<DebugInfo> debug_info, DebugInfoListNode** prev,453 DebugInfoListNode** curr);454 void FreeDebugInfoListNode(DebugInfoListNode* prev, DebugInfoListNode* node);479 DebugInfoListNode* debug_info_list_;
389 DebugInfoListNode::DebugInfoListNode(Isolate* isolate, DebugInfo* debug_info) in DebugInfoListNode() function in v8::internal::DebugInfoListNode397 DebugInfoListNode::~DebugInfoListNode() { in ~DebugInfoListNode()722 for (DebugInfoListNode* node = debug_info_list_; node != nullptr; in ClearBreakPoint()1130 for (DebugInfoListNode* node = debug_info_list_; node != nullptr; in ClearOneShot()1234 for (DebugInfoListNode* current = debug_info_list_; current != nullptr; in InstallDebugBreakTrampoline()1502 DebugInfoListNode* node = new DebugInfoListNode(isolate_, *debug_info); in GetOrCreateDebugInfo()1532 DebugInfoListNode** prev, DebugInfoListNode** curr) { in FindDebugInfo()1546 DebugInfoListNode* prev = nullptr; in ClearAllDebugInfos()1547 DebugInfoListNode* current = debug_info_list_; in ClearAllDebugInfos()1549 DebugInfoListNode* next = current->next(); in ClearAllDebugInfos()[all …]