Lines Matching refs:thread_local_

325   thread_local_.break_count_ = 0;  in ThreadInit()
326 thread_local_.break_id_ = 0; in ThreadInit()
327 thread_local_.break_frame_id_ = StackFrame::NO_ID; in ThreadInit()
328 thread_local_.last_step_action_ = StepNone; in ThreadInit()
329 thread_local_.last_statement_position_ = RelocInfo::kNoPosition; in ThreadInit()
330 thread_local_.last_fp_ = 0; in ThreadInit()
331 thread_local_.target_fp_ = 0; in ThreadInit()
332 thread_local_.step_in_enabled_ = false; in ThreadInit()
334 base::NoBarrier_Store(&thread_local_.current_debug_scope_, in ThreadInit()
341 MemCopy(to, reinterpret_cast<char*>(&thread_local_), sizeof(ThreadLocal)); in ArchiveDebug()
349 MemCopy(reinterpret_cast<char*>(&thread_local_), from, sizeof(ThreadLocal)); in RestoreDebug()
468 Address target_fp = thread_local_.target_fp_; in Break()
469 Address last_fp = thread_local_.last_fp_; in Break()
485 (thread_local_.last_statement_position_ != in Break()
765 if (thread_local_.step_in_enabled_) { in PrepareStepIn()
818 thread_local_.last_step_action_ = step_action; in PrepareStep()
820 thread_local_.step_in_enabled_ = (step_action >= StepIn); in PrepareStep()
856 thread_local_.last_statement_position_ = in PrepareStep()
858 thread_local_.last_fp_ = frame->UnpaddedFP(); in PrepareStep()
878 thread_local_.step_in_enabled_ = false; in PrepareStep()
883 thread_local_.target_fp_ = frames_it.frame()->UnpaddedFP(); in PrepareStep()
886 thread_local_.last_statement_position_ = RelocInfo::kNoPosition; in PrepareStep()
887 thread_local_.last_fp_ = 0; in PrepareStep()
890 thread_local_.target_fp_ = frame->UnpaddedFP(); in PrepareStep()
947 thread_local_.last_step_action_ = StepNone; in ClearStepping()
948 thread_local_.step_in_enabled_ = false; in ClearStepping()
949 thread_local_.last_statement_position_ = RelocInfo::kNoPosition; in ClearStepping()
950 thread_local_.last_fp_ = 0; in ClearStepping()
951 thread_local_.target_fp_ = 0; in ClearStepping()
974 thread_local_.step_in_enabled_ = (last_step_action() >= StepIn); in EnableStepIn()
1418 thread_local_.frame_drop_mode_ = mode; in FramesHaveBeenDropped()
1420 thread_local_.break_frame_id_ = new_break_frame_id; in FramesHaveBeenDropped()
2113 base::NoBarrier_Store(&debug_->thread_local_.current_debug_scope_, in DebugScope()
2124 debug_->thread_local_.break_frame_id_ = has_js_frames ? it.frame()->id() in DebugScope()
2150 base::NoBarrier_Store(&debug_->thread_local_.current_debug_scope_, in ~DebugScope()
2154 debug_->thread_local_.break_frame_id_ = break_frame_id_; in ~DebugScope()
2155 debug_->thread_local_.break_id_ = break_id_; in ~DebugScope()