Method name change to avoid further conflicts when merging from ToT to branches/lldb-platform-work.
llvm-svn: 155260
This commit is contained in:
parent
c931d451cd
commit
34d3a38a9c
|
|
@ -580,9 +580,9 @@ PlatformRemoteiOS::GetFileInSDKRoot (const char *platform_file_path,
|
|||
|
||||
|
||||
Error
|
||||
PlatformRemoteiOS::GetFile (const FileSpec &platform_file,
|
||||
const UUID *uuid_ptr,
|
||||
FileSpec &local_file)
|
||||
PlatformRemoteiOS::GetSymbolFile (const FileSpec &platform_file,
|
||||
const UUID *uuid_ptr,
|
||||
FileSpec &local_file)
|
||||
{
|
||||
Error error;
|
||||
char platform_file_path[PATH_MAX];
|
||||
|
|
@ -653,7 +653,7 @@ PlatformRemoteiOS::GetSharedModule (const ModuleSpec &module_spec,
|
|||
|
||||
FileSpec local_file;
|
||||
const UUID *module_uuid_ptr = module_spec.GetUUIDPtr();
|
||||
Error error (GetFile (platform_file, module_uuid_ptr, local_file));
|
||||
Error error (GetSymbolFile (platform_file, module_uuid_ptr, local_file));
|
||||
if (error.Success())
|
||||
{
|
||||
error = ResolveExecutable (local_file, module_spec.GetArchitecture(), module_sp, NULL);
|
||||
|
|
|
|||
|
|
@ -91,9 +91,9 @@ public:
|
|||
GetStatus (lldb_private::Stream &strm);
|
||||
|
||||
virtual lldb_private::Error
|
||||
GetFile (const lldb_private::FileSpec &platform_file,
|
||||
const lldb_private::UUID *uuid_ptr,
|
||||
lldb_private::FileSpec &local_file);
|
||||
GetSymbolFile (const lldb_private::FileSpec &platform_file,
|
||||
const lldb_private::UUID *uuid_ptr,
|
||||
lldb_private::FileSpec &local_file);
|
||||
|
||||
virtual lldb_private::Error
|
||||
GetSharedModule (const lldb_private::ModuleSpec &module_spec,
|
||||
|
|
|
|||
Loading…
Reference in New Issue