Searched refs:FileSpec (Results 1 - 25 of 164) sorted by relevance

1234567

/external/lldb/include/lldb/Host/
H A DFileSpec.h1 //===-- FileSpec.h ----------------------------------------------*- C++ -*-===//
22 /// @class FileSpec FileSpec.h "lldb/Host/FileSpec.h"
39 class FileSpec class in namespace:lldb_private
54 FileSpec();
61 /// FileSpec::SetFile (const char *path, bool resolve).
70 /// @see FileSpec::SetFile (const char *path, bool resolve)
72 explicit FileSpec (const char *path, bool resolve_path);
81 /// A const FileSpec objec
[all...]
H A DSymbols.h20 #include "lldb/Host/FileSpec.h"
33 static FileSpec
42 static FileSpec
45 static FileSpec
46 FindSymbolFileInBundle (const FileSpec& dsym_bundle_fspec,
H A DDynamicLibrary.h13 #include "lldb/Host/FileSpec.h"
21 DynamicLibrary (const FileSpec& spec, uint32_t options = Host::eDynamicLibraryOpenOptionLazy |
43 lldb_private::FileSpec m_filespec;
H A DHost.h328 /// Gets the FileSpec of the current process (the process that
334 static FileSpec
352 static FileSpec
376 GetBundleDirectory (const FileSpec &file, FileSpec &bundle_directory);
394 ResolveExecutableInBundle (FileSpec &file);
416 FileSpec &file_spec);
449 LaunchApplication (const FileSpec &app_file_spec);
470 OpenFileInExternalEditor (const FileSpec &file_spec,
486 DynamicLibraryOpen (const FileSpec
[all...]
/external/lldb/source/Host/common/
H A DSymbols.cpp27 FileSpec
31 return FileSpec();
34 FileSpec
39 return FileSpec();
45 debug_file_search_paths.AppendIfUnique (FileSpec(file_dir.AsCString("."), true));
48 debug_file_search_paths.AppendIfUnique (FileSpec(".", true));
51 debug_file_search_paths.AppendIfUnique (FileSpec("/usr/lib/debug", true));
71 FileSpec dirspec = debug_file_search_paths.GetFileSpecAtIndex (idx);
88 FileSpec file_spec (filename.c_str(), true);
111 return FileSpec();
[all...]
H A DFileSpec.cpp1 //===-- FileSpec.cpp --------------------------------------------*- C++ -*-===//
29 #include "lldb/Host/FileSpec.h"
41 GetFileStats (const FileSpec *file_spec, struct stat *stats_ptr)
76 FileSpec::ResolveUsername (const char *src_path, char *dst_path, size_t dst_len)
150 FileSpec::ResolvePartialUsername (const char *partial_name, StringList &matches)
185 FileSpec::Resolve (const char *src_path, char *dst_path, size_t dst_len)
222 FileSpec::FileSpec() : function in class:FileSpec
232 FileSpec::FileSpec(cons function in class:FileSpec
244 FileSpec::FileSpec(const FileSpec& rhs) : function in class:FileSpec
254 FileSpec::FileSpec(const FileSpec* rhs) : function in class:FileSpec
[all...]
H A DDynamicLibrary.cpp15 DynamicLibrary::DynamicLibrary (const FileSpec& spec, uint32_t options) : m_filespec(spec)
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinKernel.h21 #include "lldb/Host/FileSpec.h"
99 // Map from kext bundle ID ("com.apple.filesystems.exfat") to FileSpec for the kext bundle on
101 typedef std::multimap<lldb_private::ConstString, lldb_private::FileSpec> BundleIDToKextMap;
106 typedef std::vector<lldb_private::FileSpec> DirectoriesSearchedCollection;
110 static lldb_private::FileSpec::EnumerateDirectoryResult
112 lldb_private::FileSpec::FileType file_type,
113 const lldb_private::FileSpec &file_spec);
115 static lldb_private::FileSpec::EnumerateDirectoryResult
117 lldb_private::FileSpec::FileType file_type,
118 const lldb_private::FileSpec
[all...]
H A DPlatformDarwinKernel.cpp27 #include "lldb/Host/FileSpec.h"
287 const FileSpec &kext_dir = m_directories_searched[i];
302 std::vector<FileSpec> sdk_dirs;
312 std::vector<FileSpec> kext_dirs;
331 PlatformDarwinKernel::GetiOSSDKDirectoriesToSearch (std::vector<lldb_private::FileSpec> &directories)
340 FileSpec ios_sdk(pathbuf, true);
348 PlatformDarwinKernel::GetMacSDKDirectoriesToSearch (std::vector<lldb_private::FileSpec> &directories)
357 FileSpec mac_sdk(pathbuf, true);
365 PlatformDarwinKernel::GetGenericSDKDirectoriesToSearch (std::vector<lldb_private::FileSpec> &directories)
367 FileSpec generic_sd
[all...]
H A DPlatformRemoteiOS.h16 #include "lldb/Host/FileSpec.h"
70 ResolveExecutable (const lldb_private::FileSpec &exe_file,
85 GetSymbolFile (const lldb_private::FileSpec &platform_file,
87 lldb_private::FileSpec &local_file);
111 SDKDirectoryInfo (const lldb_private::FileSpec &sdk_dir_spec);
112 lldb_private::FileSpec directory;
141 static lldb_private::FileSpec::EnumerateDirectoryResult
143 lldb_private::FileSpec::FileType file_type,
144 const lldb_private::FileSpec &file_spec);
153 lldb_private::FileSpec
[all...]
H A DPlatformiOSSimulator.cpp24 #include "lldb/Host/FileSpec.h"
174 PlatformiOSSimulator::ResolveExecutable (const FileSpec &exe_file,
182 FileSpec resolved_exe_file (exe_file);
253 static FileSpec::EnumerateDirectoryResult
254 EnumerateDirectoryCallback (void *baton, FileSpec::FileType file_type, const FileSpec &file_spec)
256 if (file_type == FileSpec::eFileTypeDirectory)
262 return FileSpec::eEnumerateDirectoryResultQuit;
265 return FileSpec::eEnumerateDirectoryResultNext;
285 FileSpec simulator_sdk_spe
[all...]
/external/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpec.h17 #include "lldb/Host/FileSpec.h"
27 OptionValueFileSpec (const FileSpec &value);
29 OptionValueFileSpec (const FileSpec &current_value,
30 const FileSpec &default_value);
78 FileSpec &
84 const FileSpec &
90 const FileSpec &
97 SetCurrentValue (const FileSpec &value, bool set_value_was_set)
106 SetDefaultValue (const FileSpec &value)
121 FileSpec m_current_valu
[all...]
/external/lldb/include/lldb/Core/
H A DFileSpecList.h15 #include "lldb/Host/FileSpec.h"
24 /// A class that contains a mutable list of FileSpec objects.
67 /// Append a FileSpec object to the list.
75 Append (const FileSpec &file);
78 /// Append a FileSpec object if unique.
90 AppendIfUnique (const FileSpec &file);
120 /// Should FileSpec::Equal be called with "full" true or false.
127 FindFileIndex (size_t idx, const FileSpec &file, bool full) const;
133 /// an empty FileSpec object will be returned. The file objects
135 /// FileSpec
[all...]
H A DSourceManager.h21 #include "lldb/Host/FileSpec.h"
35 File (const FileSpec &file_spec, Target *target);
59 FileSpecMatches (const FileSpec &file_spec);
61 const FileSpec &
78 FileSpec m_file_spec_orig; // The original file spec that was used (can be different from m_file_spec)
79 FileSpec m_file_spec; // The actualy file spec being used (if the target has source mappings, this might be different from m_file_spec_orig)
102 FileSP FindSourceFile (const FileSpec &file_spec) const;
105 typedef std::map <FileSpec, FileSP> FileCache;
129 DisplaySourceLinesWithLineNumbers (const FileSpec &file,
153 SetDefaultFileAndLine (const FileSpec
[all...]
H A DFileLineResolver.h37 FileLineResolver (const FileSpec &resolver,
66 Reset (const FileSpec &file_spec,
70 FileSpec m_file_spec; // This is the file spec we are looking for.
H A DAddressResolverFileLine.h29 AddressResolverFileLine (const FileSpec &resolver,
49 FileSpec m_file_spec; // This is the file spec we are looking for.
H A DModuleSpec.h16 #include "lldb/Host/FileSpec.h"
37 ModuleSpec (const FileSpec &file_spec) :
50 ModuleSpec (const FileSpec &file_spec, const ArchSpec &arch) :
94 FileSpec *
102 const FileSpec *
110 FileSpec &
115 const FileSpec &
121 FileSpec *
129 const FileSpec *
137 FileSpec
[all...]
H A DSearchFilter.h123 ModulePasses (const FileSpec &spec);
150 /// Call this method with a FileSpec to see if \a file spec passes the filter
160 CompUnitPasses (FileSpec &fileSpec);
267 ModulePasses (const FileSpec &module_spec);
294 const FileSpec &module);
308 ModulePasses (const FileSpec &spec);
314 CompUnitPasses (FileSpec &fileSpec);
332 FileSpec m_module_spec;
365 ModulePasses (const FileSpec &spec);
371 CompUnitPasses (FileSpec
[all...]
H A DModule.h15 #include "lldb/Host/FileSpec.h"
88 Module (const FileSpec& file_spec,
275 FindCompileUnits (const FileSpec &path,
511 const FileSpec &
532 const FileSpec &
541 SetPlatformFileSpec (const FileSpec &file)
546 const FileSpec &
553 SetSymbolFileFileSpec (const FileSpec &file);
818 ResolveSymbolContextsForFileSpec (const FileSpec &file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list);
822 SetFileSpecAndObjectName (const FileSpec
[all...]
/external/lldb/source/Core/
H A DFileSpecList.cpp54 FileSpecList::Append(const FileSpec &file_spec)
67 FileSpecList::AppendIfUnique(const FileSpec &file_spec)
110 FileSpecList::FindFileIndex (size_t start_idx, const FileSpec &file_spec, bool full) const
127 if (FileSpec::Equal (m_files[idx], file_spec, full))
137 // Returns the FileSpec object at index "idx". If "idx" is out of
138 // range, then an empty FileSpec object will be returned.
140 const FileSpec &
146 static FileSpec g_empty_file_spec;
150 const FileSpec *
161 // any FileSpec object
[all...]
/external/lldb/include/lldb/API/
H A DSBFileSpec.h73 SBFileSpec (const lldb_private::FileSpec& fspec);
76 SetFileSpec (const lldb_private::FileSpec& fspec);
78 const lldb_private::FileSpec *
81 const lldb_private::FileSpec *
84 const lldb_private::FileSpec &
87 const lldb_private::FileSpec &
90 std::unique_ptr<lldb_private::FileSpec> m_opaque_ap;
/external/lldb/source/API/
H A DSBFileSpec.cpp14 #include "lldb/Host/FileSpec.h"
24 m_opaque_ap(new lldb_private::FileSpec())
29 m_opaque_ap(new lldb_private::FileSpec(*rhs.m_opaque_ap))
33 SBFileSpec::SBFileSpec (const lldb_private::FileSpec& fspec) :
34 m_opaque_ap(new lldb_private::FileSpec(fspec))
40 m_opaque_ap(new FileSpec (path, true))
45 m_opaque_ap(new FileSpec (path, resolve))
89 return lldb_private::FileSpec::Resolve (src_path, dst_path, dst_len);
141 const lldb_private::FileSpec *
147 const lldb_private::FileSpec *
[all...]
/external/lldb/include/lldb/Symbol/
H A DDeclaration.h14 #include "lldb/Host/FileSpec.h"
59 Declaration (const FileSpec& file_spec, uint32_t line = 0, uint32_t column = 0) :
169 FileSpec&
181 const FileSpec&
242 SetFile (const FileSpec& file_spec)
263 FileSpec m_file; ///< The file specification that points to the
H A DLineEntry.h15 #include "lldb/Host/FileSpec.h"
37 const FileSpec &file,
148 FileSpec file;
/external/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverFileLine.h32 const FileSpec &resolver,
63 FileSpec m_file_spec; // This is the file spec we are looking for.

Completed in 302 milliseconds

1234567