Searched refs:AllocateMemory (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h165 AllocateMemory (size_t byte_size,
H A DProcess.h2962 AllocateMemory (size_t size, uint32_t permissions, Error &error);
3089 /// space that was allocated with AllocateMemory.
3092 /// A return value from AllocateMemory, pointing to the memory you
3112 /// space that was allocated with AllocateMemory.
3115 /// A return value from AllocateMemory, pointing to the memory you
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRMemoryMap.cpp61 ret = process_sp->AllocateMemory(size, lldb::ePermissionsReadable | lldb::ePermissionsWritable, alloc_error);
270 allocation_address = process_sp->AllocateMemory(allocation_size, permissions, error);
292 allocation_address = process_sp->AllocateMemory(allocation_size, permissions, error);
H A DClangFunction.cpp322 args_addr_ref = process->AllocateMemory(m_struct_size, lldb::ePermissionsReadable|lldb::ePermissionsWritable, error);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h197 AllocateMemory (size_t size, uint32_t permissions);
H A DGDBRemoteCommunicationClient.cpp1351 GDBRemoteCommunicationClient::AllocateMemory (size_t size, uint32_t permissions)
H A DProcessGDBRemote.cpp2099 allocated_addr = m_gdb_comm.AllocateMemory (size, permissions);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DMemory.cpp413 AllocatedMemoryCache::AllocateMemory (size_t byte_size, function in class:AllocatedMemoryCache
436 log->Printf ("AllocatedMemoryCache::AllocateMemory (byte_size = 0x%8.8zx, permissions = %s) => 0x%16.16" PRIx64, byte_size, GetPermissionsAsCString(permissions), (uint64_t)addr);
H A DProcess.cpp2714 Process::AllocateMemory(size_t size, uint32_t permissions, Error &error)
2720 return m_allocated_memory_cache.AllocateMemory(size, permissions, error);
2725 log->Printf("Process::AllocateMemory(size=%4zu, permissions=%s) => 0x%16.16" PRIx64 " (m_stop_id = %u m_memory_id = %u)",
2742 uint64_t allocated_memory = AllocateMemory(8,

Completed in 269 milliseconds