Home
last modified time | relevance | path

Searched refs:DebugInfoListNode (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/debug/
Ddebug.h216 class DebugInfoListNode {
218 explicit DebugInfoListNode(DebugInfo* debug_info);
219 ~DebugInfoListNode();
221 DebugInfoListNode* next() { return next_; } in next()
222 void set_next(DebugInfoListNode* next) { next_ = next; } in set_next()
230 DebugInfoListNode* next_;
535 DebugInfoListNode* debug_info_list_;
Ddebug.cc409 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { in DebugInfoListNode() function in v8::internal::DebugInfoListNode
417 DebugInfoListNode::~DebugInfoListNode() { in ~DebugInfoListNode()
771 for (DebugInfoListNode* node = debug_info_list_; node != NULL; in ClearBreakPoint()
793 for (DebugInfoListNode* node = debug_info_list_; node != NULL; in ClearAllBreakPoints()
1126 for (DebugInfoListNode* node = debug_info_list_; node != NULL; in ClearOneShot()
1524 DebugInfoListNode* node = new DebugInfoListNode(*debug_info); in CreateDebugInfo()
1536 DebugInfoListNode* prev = NULL; in RemoveDebugInfoAndClearFromShared()
1537 DebugInfoListNode* current = debug_info_list_; in RemoveDebugInfoAndClearFromShared()