Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/execution/
Disolate.cc2529 void Isolate::SetCodePages(std::vector<MemoryRange>* new_code_pages) { in ThrowInternal() argument
2530 code_pages_.store(new_code_pages, std::memory_order_release); in ThrowInternal()
5476 std::vector<MemoryRange>* new_code_pages; in ThrowInternal() local
5478 new_code_pages = &code_pages_buffer2_; in ThrowInternal()
5480 new_code_pages = &code_pages_buffer1_; in ThrowInternal()
5485 new_code_pages->clear(); in ThrowInternal()
5486 new_code_pages->reserve(old_code_pages->size() + 1); in ThrowInternal()
5488 std::back_inserter(*new_code_pages), in ThrowInternal()
5494 SetCodePages(new_code_pages); in ThrowInternal()
5593 std::vector<MemoryRange>* new_code_pages; in ThrowInternal()
[all …]
Disolate.h850 void SetCodePages(std::vector<MemoryRange>* new_code_pages);