Home
last modified time | relevance | path

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

/external/v8/src/
Disolate.cc230 if (preallocated_memory_thread_ != NULL) return; in PreallocatedMemoryThreadStart()
231 preallocated_memory_thread_ = new PreallocatedMemoryThread(); in PreallocatedMemoryThreadStart()
232 preallocated_memory_thread_->Start(); in PreallocatedMemoryThreadStart()
237 if (preallocated_memory_thread_ == NULL) return; in PreallocatedMemoryThreadStop()
238 preallocated_memory_thread_->StopThread(); in PreallocatedMemoryThreadStop()
240 delete preallocated_memory_thread_; in PreallocatedMemoryThreadStop()
241 preallocated_memory_thread_ = NULL; in PreallocatedMemoryThreadStop()
1436 preallocated_memory_thread_(NULL), in Isolate()
1816 preallocated_memory_thread_->data(), in Init()
1817 preallocated_memory_thread_->length()); in Init()
[all …]
Disolate.h1152 PreallocatedMemoryThread* preallocated_memory_thread_; variable