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()
5453 std::vector<MemoryRange>* new_code_pages; in ThrowInternal() local
5455 new_code_pages = &code_pages_buffer2_; in ThrowInternal()
5457 new_code_pages = &code_pages_buffer1_; in ThrowInternal()
5462 new_code_pages->clear(); in ThrowInternal()
5463 new_code_pages->reserve(old_code_pages->size() + 1); in ThrowInternal()
5465 std::back_inserter(*new_code_pages), in ThrowInternal()
5471 SetCodePages(new_code_pages); in ThrowInternal()
5570 std::vector<MemoryRange>* new_code_pages; in ThrowInternal()
[all …]
Disolate.h850 void SetCodePages(std::vector<MemoryRange>* new_code_pages);