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

1234567

/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSymbols.h19 #include "lldb/Host/FileSpec.h"
32 static FileSpec
41 static FileSpec
44 static FileSpec
45 FindSymbolFileInBundle (const FileSpec& dsym_bundle_fspec,
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 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.h360 /// Gets the FileSpec of the current process (the process that
366 static FileSpec
384 static FileSpec
408 GetBundleDirectory (const FileSpec &file, FileSpec &bundle_directory);
426 ResolveExecutableInBundle (FileSpec &file);
448 FileSpec &file_spec);
489 LaunchApplication (const FileSpec &app_file_spec);
510 OpenFileInExternalEditor (const FileSpec &file_spec,
526 DynamicLibraryOpen (const FileSpec
[all...]
/freebsd-10.1-release/contrib/llvm/tools/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++ -*-===//
36 #include "lldb/Host/FileSpec.h"
49 GetFileStats (const FileSpec *file_spec, struct stat *stats_ptr)
84 FileSpec::ResolveUsername (const char *src_path, char *dst_path, size_t dst_len)
158 FileSpec::ResolvePartialUsername (const char *partial_name, StringList &matches)
193 FileSpec::Resolve (const char *src_path, char *dst_path, size_t dst_len)
230 FileSpec::FileSpec() : function in class:FileSpec
240 FileSpec::FileSpec(cons function in class:FileSpec
252 FileSpec::FileSpec(const FileSpec& rhs) : function in class:FileSpec
262 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)
/freebsd-10.1-release/contrib/llvm/tools/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...]
/freebsd-10.1-release/contrib/llvm/tools/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 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 DSourceManager.h21 #include "lldb/Host/FileSpec.h"
35 File (const FileSpec &file_spec, Target *target);
59 FileSpecMatches (const FileSpec &file_spec);
61 const FileSpec &
87 FileSpec m_file_spec_orig; // The original file spec that was used (can be different from m_file_spec)
88 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)
111 FileSP FindSourceFile (const FileSpec &file_spec) const;
114 typedef std::map <FileSpec, FileSP> FileCache;
138 DisplaySourceLinesWithLineNumbers (const FileSpec &file,
162 SetDefaultFileAndLine (const FileSpec
[all...]
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,
284 FindCompileUnits (const FileSpec &path,
380 const FileSpec &file, uint32_t line,
546 const FileSpec &
567 const FileSpec &
576 SetPlatformFileSpec (const FileSpec &file)
581 const FileSpec &
588 SetRemoteInstallFileSpec (const FileSpec &file)
593 const FileSpec
[all...]
/freebsd-10.1-release/contrib/llvm/tools/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...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBFileSpec.h80 SBFileSpec (const lldb_private::FileSpec& fspec);
83 SetFileSpec (const lldb_private::FileSpec& fspec);
85 const lldb_private::FileSpec *
88 const lldb_private::FileSpec *
91 const lldb_private::FileSpec &
94 const lldb_private::FileSpec &
97 std::unique_ptr<lldb_private::FileSpec> m_opaque_ap;
/freebsd-10.1-release/contrib/llvm/tools/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;
H A DObjectContainer.h20 #include "lldb/Host/FileSpec.h"
51 const FileSpec *file,
195 GetObjectFile (const FileSpec *file) = 0;
225 FileSpec m_file; ///< The file that represents this container objects (which can be different from the module's file).
/freebsd-10.1-release/contrib/llvm/tools/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);
159 const lldb_private::FileSpec *
165 const lldb_private::FileSpec *
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h38 PutFile (const lldb_private::FileSpec& source,
39 const lldb_private::FileSpec& destination,
44 OpenFile (const lldb_private::FileSpec& file_spec,
68 GetFileSize (const lldb_private::FileSpec& file_spec);
74 GetFile (const lldb_private::FileSpec& source,
75 const lldb_private::FileSpec& destination);
101 GetFileExists (const lldb_private::FileSpec& file_spec);
110 CalculateMD5 (const lldb_private::FileSpec& file_spec,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp21 #include "lldb/Host/FileSpec.h"
84 Platform::GetFileWithUUID (const FileSpec &platform_file,
86 FileSpec &local_file)
436 const FileSpec& dst;
442 static FileSpec::EnumerateDirectoryResult
444 FileSpec::FileType file_type,
445 const FileSpec &src)
450 case FileSpec::eFileTypePipe:
451 case FileSpec::eFileTypeSocket:
453 return FileSpec
[all...]
/freebsd-10.1-release/contrib/llvm/tools/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.
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h67 ResolveExecutable (const lldb_private::FileSpec &exe_file,
76 GetFileWithUUID (const lldb_private::FileSpec &platform_file,
78 lldb_private::FileSpec &local_file);
163 OpenFile (const lldb_private::FileSpec& file_spec,
187 GetFileSize (const lldb_private::FileSpec& file_spec);
190 PutFile (const lldb_private::FileSpec& source,
191 const lldb_private::FileSpec& destination,
199 GetFileExists (const lldb_private::FileSpec& file_spec);

Completed in 201 milliseconds

1234567