Home
last modified time | relevance | path

Searched refs:wasm_scripts_with_breakpoints_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/debug/
Ddebug.cc797 if (wasm_scripts_with_breakpoints_.is_null()) { in RecordWasmScriptWithBreakpoints()
799 wasm_scripts_with_breakpoints_ = in RecordWasmScriptWithBreakpoints()
804 for (int idx = wasm_scripts_with_breakpoints_->length() - 1; idx >= 0; in RecordWasmScriptWithBreakpoints()
807 if (wasm_scripts_with_breakpoints_->Get(idx).GetHeapObject( in RecordWasmScriptWithBreakpoints()
815 isolate_, wasm_scripts_with_breakpoints_, MaybeObjectHandle{script}); in RecordWasmScriptWithBreakpoints()
816 if (*new_list != *wasm_scripts_with_breakpoints_) { in RecordWasmScriptWithBreakpoints()
818 wasm_scripts_with_breakpoints_.location()); in RecordWasmScriptWithBreakpoints()
819 wasm_scripts_with_breakpoints_ = in RecordWasmScriptWithBreakpoints()
831 if (!wasm_scripts_with_breakpoints_.is_null()) { in ClearAllBreakPoints()
833 for (int idx = wasm_scripts_with_breakpoints_->length() - 1; idx >= 0; in ClearAllBreakPoints()
[all …]
Ddebug.h553 Handle<WeakArrayList> wasm_scripts_with_breakpoints_; variable