Home
last modified time | relevance | path

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

/external/v8/src/debug/
Ddebug.h227 class DebugInfoListNode {
229 explicit DebugInfoListNode(DebugInfo* debug_info);
230 ~DebugInfoListNode();
232 DebugInfoListNode* next() { return next_; } in next()
233 void set_next(DebugInfoListNode* next) { next_ = next; } in set_next()
241 DebugInfoListNode* next_;
659 DebugInfoListNode* debug_info_list_; // List of active debug info objects.
Ddebug.cc507 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { in DebugInfoListNode() function in v8::internal::DebugInfoListNode
515 DebugInfoListNode::~DebugInfoListNode() { in ~DebugInfoListNode()
844 DebugInfoListNode* node = debug_info_list_; in ClearBreakPoint()
875 for (DebugInfoListNode* node = debug_info_list_; node != NULL; in ClearAllBreakPoints()
1151 for (DebugInfoListNode* node = debug_info_list_; node != NULL; in ClearOneShot()
1562 DebugInfoListNode* node = new DebugInfoListNode(*debug_info); in CreateDebugInfo()
1574 DebugInfoListNode* prev = NULL; in RemoveDebugInfoAndClearFromShared()
1575 DebugInfoListNode* current = debug_info_list_; in RemoveDebugInfoAndClearFromShared()
/external/v8/test/cctest/
Dtest-debug.cc348 v8::internal::DebugInfoListNode* node = debug->debug_info_list_; in GetDebuggedFunctions()