Home
last modified time | relevance | path

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

/external/v8/src/
Ddebug.h191 class DebugInfoListNode {
193 explicit DebugInfoListNode(DebugInfo* debug_info);
194 virtual ~DebugInfoListNode();
196 DebugInfoListNode* next() { return next_; } in next()
197 void set_next(DebugInfoListNode* next) { next_ = next; } in set_next()
205 DebugInfoListNode* next_;
409 static DebugInfoListNode* debug_info_list_;
Ddebug.cc497 DebugInfoListNode* Debug::debug_info_list_ = NULL;
644 DebugInfoListNode* node = reinterpret_cast<DebugInfoListNode*>(data); in HandleWeakDebugInfo()
649 ASSERT(node != reinterpret_cast<DebugInfoListNode*>(data)); in HandleWeakDebugInfo()
656 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { in DebugInfoListNode() function in v8::internal::DebugInfoListNode
664 DebugInfoListNode::~DebugInfoListNode() { in ~DebugInfoListNode()
1003 DebugInfoListNode* node = debug_info_list_; in ClearBreakPoint()
1036 DebugInfoListNode* node = debug_info_list_; in ClearAllBreakPoints()
1482 DebugInfoListNode* node = debug_info_list_; in ClearOneShot()
1535 DebugInfoListNode* node = new DebugInfoListNode(*debug_info); in EnsureDebugInfo()
1549 DebugInfoListNode* prev = NULL; in RemoveDebugInfo()
[all …]
/external/v8/test/cctest/
Dtest-debug.cc373 v8::internal::DebugInfoListNode* node = Debug::debug_info_list_; in GetDebuggedFunctions()