@@ -127,8 +127,7 @@ class Platform : public PluginInterface {
127127 // / Returns \b true if this Platform plug-in was able to find
128128 // / a suitable executable, \b false otherwise.
129129 virtual Status ResolveExecutable (const ModuleSpec &module_spec,
130- lldb::ModuleSP &exe_module_sp,
131- const FileSpecList *module_search_paths_ptr);
130+ lldb::ModuleSP &exe_module_sp);
132131
133132 // / Find a symbol file given a symbol file module specification.
134133 // /
@@ -304,10 +303,11 @@ class Platform : public PluginInterface {
304303 // / \return
305304 // / The Status object for any errors found while searching for
306305 // / the binary.
307- virtual Status GetSharedModule (
308- const ModuleSpec &module_spec, Process *process,
309- lldb::ModuleSP &module_sp, const FileSpecList *module_search_paths_ptr,
310- llvm::SmallVectorImpl<lldb::ModuleSP> *old_modules, bool *did_create_ptr);
306+ virtual Status
307+ GetSharedModule (const ModuleSpec &module_spec, Process *process,
308+ lldb::ModuleSP &module_sp,
309+ llvm::SmallVectorImpl<lldb::ModuleSP> *old_modules,
310+ bool *did_create_ptr);
311311
312312 void CallLocateModuleCallbackIfSet (const ModuleSpec &module_spec,
313313 lldb::ModuleSP &module_sp,
@@ -1039,8 +1039,8 @@ class Platform : public PluginInterface {
10391039 // / predefined trap handlers, this method may be a no-op.
10401040 virtual void CalculateTrapHandlerSymbolNames () = 0;
10411041
1042- Status GetCachedExecutable (ModuleSpec &module_spec, lldb::ModuleSP &module_sp,
1043- const FileSpecList *module_search_paths_ptr );
1042+ Status GetCachedExecutable (ModuleSpec &module_spec,
1043+ lldb::ModuleSP &module_sp );
10441044
10451045 virtual Status DownloadModuleSlice (const FileSpec &src_file_spec,
10461046 const uint64_t src_offset,
0 commit comments