Searched refs:alloc_error (Results 1 - 4 of 4) sorted by relevance

/external/lldb/source/Expression/
H A DClangUserExpression.cpp667 Error alloc_error; local
675 alloc_error);
677 if (!alloc_error.Success())
679 error_stream.Printf("Couldn't allocate space for materialized struct: %s\n", alloc_error.AsCString());
688 Error alloc_error; local
696 alloc_error);
700 if (!alloc_error.Success())
702 error_stream.Printf("Couldn't allocate space for the stack frame: %s\n", alloc_error.AsCString());
H A DMaterializer.cpp509 Error alloc_error; local
511 m_temporary_allocation = map.Malloc(data.GetByteSize(), byte_align, lldb::ePermissionsReadable | lldb::ePermissionsWritable, IRMemoryMap::eAllocationPolicyMirror, alloc_error);
514 if (!alloc_error.Success())
516 err.SetErrorStringWithFormat("couldn't allocate a temporary region for %s: %s", m_variable_sp->GetName().AsCString(), alloc_error.AsCString());
745 Error alloc_error; local
747 m_temporary_allocation = map.Malloc(byte_size, byte_align, lldb::ePermissionsReadable | lldb::ePermissionsWritable, IRMemoryMap::eAllocationPolicyMirror, alloc_error);
750 if (!alloc_error.Success())
752 err.SetErrorStringWithFormat("couldn't allocate a temporary region for the result: %s", alloc_error.AsCString());
H A DIRMemoryMap.cpp59 Error alloc_error; local
61 ret = process_sp->AllocateMemory(size, lldb::ePermissionsReadable | lldb::ePermissionsWritable, alloc_error);
63 if (!alloc_error.Success())
H A DIRInterpreter.cpp356 lldb_private::Error alloc_error; local

Completed in 793 milliseconds