Home
last modified time | relevance | path

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

/external/v8/src/debug/
Ddebug.h175 class DebugInfoListNode {
177 explicit DebugInfoListNode(DebugInfo* debug_info);
178 ~DebugInfoListNode();
180 DebugInfoListNode* next() { return next_; } in next()
181 void set_next(DebugInfoListNode* next) { next_ = next; } in set_next()
189 DebugInfoListNode* next_;
590 DebugInfoListNode* debug_info_list_; // List of active debug info objects.
Ddebug.cc359 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { in DebugInfoListNode() function in v8::internal::DebugInfoListNode
367 DebugInfoListNode::~DebugInfoListNode() { in ~DebugInfoListNode()
661 DebugInfoListNode* node = debug_info_list_; in ClearBreakPoint()
695 for (DebugInfoListNode* node = debug_info_list_; node != NULL; in ClearAllBreakPoints()
962 for (DebugInfoListNode* node = debug_info_list_; node != NULL; in ClearOneShot()
1343 DebugInfoListNode* node = new DebugInfoListNode(*debug_info); in CreateDebugInfo()
1355 DebugInfoListNode* prev = NULL; in RemoveDebugInfoAndClearFromShared()
1356 DebugInfoListNode* current = debug_info_list_; in RemoveDebugInfoAndClearFromShared()
/external/v8/test/cctest/
Dtest-debug.cc360 v8::internal::DebugInfoListNode* node = debug->debug_info_list_; in GetDebuggedFunctions()