Searched refs:DebugInfoListNode (Results 1 – 2 of 2) sorted by relevance
168 class DebugInfoListNode {170 DebugInfoListNode(Isolate* isolate, DebugInfo debug_info);171 ~DebugInfoListNode();173 DebugInfoListNode* next() { return next_; } in next()174 void set_next(DebugInfoListNode* next) { next_ = next; } in set_next()182 DebugInfoListNode* next_;489 void FindDebugInfo(Handle<DebugInfo> debug_info, DebugInfoListNode** prev,490 DebugInfoListNode** curr);491 void FreeDebugInfoListNode(DebugInfoListNode* prev, DebugInfoListNode* node);519 DebugInfoListNode* debug_info_list_;
456 DebugInfoListNode::DebugInfoListNode(Isolate* isolate, DebugInfo debug_info) in DebugInfoListNode() function in v8::internal::DebugInfoListNode463 DebugInfoListNode::~DebugInfoListNode() { in ~DebugInfoListNode()842 for (DebugInfoListNode* node = debug_info_list_; node != nullptr; in ClearBreakPoint()1393 for (DebugInfoListNode* node = debug_info_list_; node != nullptr; in ClearOneShot()1576 for (DebugInfoListNode* current = debug_info_list_; current != nullptr; in InstallDebugBreakTrampoline()1975 DebugInfoListNode* node = new DebugInfoListNode(isolate_, *debug_info); in GetOrCreateDebugInfo()2008 DebugInfoListNode** prev, DebugInfoListNode** curr) { in FindDebugInfo()2024 DebugInfoListNode* prev = nullptr; in ClearAllDebugInfos()2025 DebugInfoListNode* current = debug_info_list_; in ClearAllDebugInfos()2027 DebugInfoListNode* next = current->next(); in ClearAllDebugInfos()[all …]