Home | History | Annotate | Download | only in wtf

Lines Matching refs:decommit

93     // NOOP for code chunks (JIT) because we released them in decommit()
105 void OSAllocator::decommit(void* address, size_t bytes)
108 dataAllocatorInstance()->decommit(address, bytes);
110 deallocateCodeChunk(address); // for code chunk, decommit AND release
121 // The PageAllocatorSymbian class helps map OSAllocator calls for reserve/commit/decommit
132 // - OSAllocator::decommit() calls RChunk.decommit()
134 // call to decommit() would have returned the memory to the OS
191 bool PageAllocatorSymbian::decommit(void* address, size_t bytes)
193 TInt error = m_chunk->Decommit(static_cast<char*>(address) - m_chunk->m_base, bytes);