HomeSort by relevance Sort by last modified time
    Searched refs:alloc_error (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/Expression/
ClangUserExpression.cpp 667 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());
    [all...]
Materializer.cpp 509 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());
    [all...]
IRMemoryMap.cpp 59 Error alloc_error; local
61 ret = process_sp->AllocateMemory(size, lldb::ePermissionsReadable | lldb::ePermissionsWritable, alloc_error);
63 if (!alloc_error.Success())
IRInterpreter.cpp 356 lldb_private::Error alloc_error; local
    [all...]

Completed in 206 milliseconds