Method name change to avoid further conflicts when merging from ToT to branches/lldb-platform-work.

llvm-svn: 155260
This commit is contained in:
Johnny Chen 2012-04-20 23:59:21 +00:00
parent c931d451cd
commit 34d3a38a9c
2 changed files with 7 additions and 7 deletions

View File

@ -580,7 +580,7 @@ PlatformRemoteiOS::GetFileInSDKRoot (const char *platform_file_path,
Error
PlatformRemoteiOS::GetFile (const FileSpec &platform_file,
PlatformRemoteiOS::GetSymbolFile (const FileSpec &platform_file,
const UUID *uuid_ptr,
FileSpec &local_file)
{
@ -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);

View File

@ -91,7 +91,7 @@ public:
GetStatus (lldb_private::Stream &strm);
virtual lldb_private::Error
GetFile (const lldb_private::FileSpec &platform_file,
GetSymbolFile (const lldb_private::FileSpec &platform_file,
const lldb_private::UUID *uuid_ptr,
lldb_private::FileSpec &local_file);