Home | History | Annotate | Download | only in wtf

Lines Matching refs:Commit

96 // Commit what was previously reserved via reserveUncommitted()
97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable)
99 // For code chunks, we commit (early) in reserveUncommitted(), so NOOP
102 dataAllocatorInstance()->commit(address, bytes);
116 commit(base, bytes, writable, executable);
121 // The PageAllocatorSymbian class helps map OSAllocator calls for reserve/commit/decommit
130 // - OSAllocator::commit() actually calls RChunk.commit() and commits *all or part* of the region
177 // Actually commit memory from the OS, after a previous call to reserve()
178 bool PageAllocatorSymbian::commit(void* address, size_t bytes)
186 TInt error = m_chunk->Commit(static_cast<char*>(address) - m_chunk->m_base, bytes);
190 // Inverse operation of commit(), a release() should follow later