HomeSort by relevance Sort by last modified time
    Searched defs:file_spec (Results 1 - 14 of 14) sorted by null

  /external/lldb/source/API/
SBCompileUnit.cpp 56 SBFileSpec file_spec; local
58 file_spec.SetFileSpec(*m_opaque_ptr);
59 return file_spec;
117 FileSpec file_spec; local
119 file_spec = inline_file_spec->ref();
121 file_spec = *m_opaque_ptr;
196 FileSpec file_spec = support_files.GetFileSpecAtIndex(idx); local
197 sb_file_spec.SetFileSpec(file_spec);
SBModule.cpp 107 SBFileSpec file_spec; local
110 file_spec.SetFileSpec(module_sp->GetFileSpec());
115 module_sp.get(), file_spec.get());
118 return file_spec;
126 SBFileSpec file_spec; local
129 file_spec.SetFileSpec(module_sp->GetPlatformFileSpec());
134 module_sp.get(), file_spec.get());
137 return file_spec;
  /external/lldb/source/Plugins/SymbolVendor/MacOSX/
SymbolVendorMacOSX.cpp 161 FileSpec file_spec = obj_file->GetFileSpec(); local
162 if (!file_spec)
163 file_spec = module_sp->GetFileSpec();
165 ModuleSpec module_spec(file_spec, module_sp->GetArchitecture());
  /external/lldb/source/Core/
Section.cpp 251 const FileSpec &file_spec = m_obj_file->GetFileSpec(); local
254 name = file_spec.GetFilename().AsCString();
SourceManager.cpp 69 SourceManager::GetFile (const FileSpec &file_spec)
71 bool same_as_previous = m_last_file_sp && m_last_file_sp->FileSpecMatches (file_spec);
78 file_sp = debugger_sp->GetSourceFileCache().FindSourceFile (file_spec);
90 file_sp.reset (new File (file_spec, target_sp.get()));
169 const FileSpec &file_spec,
178 FileSP file_sp (GetFile (file_spec));
247 SourceManager::SetDefaultFileAndLine (const FileSpec &file_spec, uint32_t line)
250 m_last_file_sp = GetFile (file_spec);
266 SourceManager::GetDefaultFileAndLine (FileSpec &file_spec, uint32_t &line)
270 file_spec = m_last_file_sp->GetFileSpec()
631 FileSpec file_spec; local
    [all...]
ModuleList.cpp 782 FileSpec file_spec(file_path, false);
783 return ResolveSymbolContextsForFileSpec (file_spec, line, check_inlines, resolve_scope, sc_list);
787 ModuleList::ResolveSymbolContextsForFileSpec (const FileSpec &file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list) const
793 (*pos)->ResolveSymbolContextsForFileSpec (file_spec, line, check_inlines, resolve_scope, sc_list);
953 FileSpec file_spec = Symbols::LocateExecutableObjectFile (module_spec); local
957 if (file_spec != module_file_spec)
959 if (!file_spec.Exists())
961 file_spec.GetPath(path, sizeof(path));
964 if (file_spec.Exists())
992 platform_module_spec.GetFileSpec() = file_spec;
    [all...]
Module.cpp 170 Module::Module(const FileSpec& file_spec,
176 m_mod_time (file_spec.GetModificationTime()),
179 m_file (file_spec),
514 FileSpec file_spec(file_path, false);
515 return ResolveSymbolContextsForFileSpec (file_spec, line, check_inlines, resolve_scope, sc_list);
519 Module::ResolveSymbolContextsForFileSpec (const FileSpec &file_spec, uint32_t line, bool check_inlines, uint32_t resolve_scope, SymbolContextList& sc_list)
524 file_spec.GetPath().c_str(),
533 symbols->ResolveSymbolContext (file_spec, line, check_inlines, resolve_scope, sc_list);
1445 const FileSpec &file_spec = module_ref.GetFileSpec(); local
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.h 174 lldb_private::FileSpec file_spec; // Resolved path for this dylib member in struct:DynamicLoaderMacOSXDYLD::DYLDImageInfo
184 file_spec(),
200 file_spec.Clear();
214 && file_spec == rhs.file_spec
  /external/lldb/source/Commands/
CommandObjectSource.cpp 85 file_spec.Clear();
98 FileSpec file_spec; member in class:CommandObjectSourceInfo::CommandOptions
219 file_spec.Clear();
238 FileSpec file_spec; member in class:CommandObjectSourceList::CommandOptions
    [all...]
CommandObjectTarget.cpp 1831 strm << file_spec; local
    [all...]
  /external/lldb/source/Symbol/
Symtab.cpp 87 const FileSpec &file_spec = m_objfile->GetFileSpec(); local
92 if (file_spec)
94 file_spec.GetPath().c_str(),
    [all...]
  /external/chromium_org/third_party/pymock/
mock.py 2316 file_spec = None variable
    [all...]
  /external/lldb/source/Host/common/
Host.cpp 807 file_spec (fs),
813 const FileSpec file_spec; member in struct:DynamicLibraryInfo
819 Host::DynamicLibraryOpen (const FileSpec &file_spec, uint32_t options, Error &error)
822 if (file_spec.GetPath(path, sizeof(path)))
847 return new DynamicLibraryInfo (file_spec, options, opaque);
905 if (match_dylib_spec != dylib_info->file_spec)
908 if (dylib_info->file_spec.GetPath (dylib_path, sizeof(dylib_path)))
928 Host::GetLLDBPath (PathType path_type, FileSpec &file_spec)
946 file_spec.GetDirectory() = g_lldb_so_dir;
947 return file_spec.GetDirectory()
    [all...]
  /external/lldb/source/Interpreter/
ScriptInterpreterPython.cpp 3108 FileSpec file_spec; local
    [all...]

Completed in 1196 milliseconds