Home
last modified time | relevance | path

Searched refs:code_position (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Ddebug.cc275 DebugInfo::SetBreakPoint(debug_info_, code_position(), in SetBreakPoint()
283 DebugInfo::ClearBreakPoint(debug_info_, code_position(), break_point_object); in ClearBreakPoint()
422 return debug_info_->HasBreakPoint(code_position()); in HasBreakPoint()
520 return debug_info_->GetBreakPointObjects(code_position()); in BreakPointObjects()
1165 break_point_info->code_position()->value()); in ClearBreakPoint()
Ddebug.h94 inline int code_position() { in code_position() function
Dobjects-printer.cc1063 os << "\n - code_position: " << code_position()->value(); in BreakPointInfoPrint()
Dobjects.h10585 bool HasBreakPoint(int code_position);
10587 Object* GetBreakPointInfo(int code_position);
10590 int code_position,
10593 static void SetBreakPoint(Handle<DebugInfo> debug_info, int code_position,
10597 Object* GetBreakPointObjects(int code_position);
10625 int GetBreakPointInfoIndex(int code_position);
10637 DECL_ACCESSORS(code_position, Smi)
Dobjects-debug.cc1037 code_position()->SmiVerify(); in BreakPointInfoVerify()
Dobjects.cc15841 bool DebugInfo::HasBreakPoint(int code_position) { in HasBreakPoint() argument
15843 Object* break_point_info = GetBreakPointInfo(code_position); in HasBreakPoint()
15853 Object* DebugInfo::GetBreakPointInfo(int code_position) { in GetBreakPointInfo() argument
15855 int index = GetBreakPointInfoIndex(code_position); in GetBreakPointInfo()
15865 int code_position, in ClearBreakPoint() argument
15867 Handle<Object> break_point_info(debug_info->GetBreakPointInfo(code_position), in ClearBreakPoint()
15877 int code_position, in SetBreakPoint() argument
15882 Handle<Object> break_point_info(debug_info->GetBreakPointInfo(code_position), in SetBreakPoint()
15920 new_break_point_info->set_code_position(Smi::FromInt(code_position)); in SetBreakPoint()
15932 Object* DebugInfo::GetBreakPointObjects(int code_position) { in GetBreakPointObjects() argument
[all …]
Dobjects-inl.h5398 ACCESSORS_TO_SMI(BreakPointInfo, code_position, kCodePositionIndex) in ACCESSORS()