Home | History | Annotate | Download | only in platform

Lines Matching defs:VirtualMemory

295 // Control of the reserved memory can be assigned to another VirtualMemory
298 class V8_BASE_EXPORT VirtualMemory {
300 // Empty VirtualMemory object, controlling no reserved memory.
301 VirtualMemory();
304 explicit VirtualMemory(size_t size);
309 VirtualMemory(size_t size, size_t alignment);
313 VirtualMemory(void* address, size_t size) : address_(address), size_(size) {}
315 // Releases the reserved memory, if any, controlled by this VirtualMemory
317 ~VirtualMemory();
322 // Initialize or resets an embedded VirtualMemory object.
352 // Notice: Order is important here. The VirtualMemory object might live
368 // Notice: Order is important here. The VirtualMemory object might live
379 // Assign control of the reserved region to a different VirtualMemory object.
381 void TakeControl(VirtualMemory* from) {