Home
last modified time | relevance | path

Searched refs:fullpath (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/lldb/examples/python/
H A Dlldb_module_utils.py65 print('Module: "%s"' % (module.file.fullpath), end=' ', file=result)
72 print(' Compile Unit: %s' % (cu.file.fullpath), file=result)
167 print('Module: "%s"' % (module.file.fullpath), end=' ', file=result)
174 print(' Compile Unit: %s' % (cu.file.fullpath), file=result)
178 path = cu.GetSupportFileAtIndex(j).fullpath
H A Dlldbtk.py116 summary = self.process.target.executable.fullpath
138 summary = self.target.executable.fullpath
159 summary = self.target.executable.fullpath
359 summary = self.line_entry.GetFileSpec().fullpath + ':' + \
H A Dsymbolication.py248 obj = cls(module.file.fullpath, module.uuid)
249 obj.resolved_path = module.platform_file.fullpath
H A Dcrashlog.py852 out_file.write('Path: %s\n' % (target.executable.fullpath))
915 module.file.fullpath))
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBModule.i518 if comp_unit.file.fullpath == key:
527 fullpath = comp_unit.file.fullpath
528 if fullpath:
529 re_match = key.search(fullpath)
H A DSBFileSpec.i98fullpath = property(__get_fullpath__, None, doc='''A read only property that returns the fullpath …
H A DSBTarget.i1015 if module.file.fullpath == key:
1036 re_match = key.search(module.path.fullpath)
/llvm-project-15.0.7/lldb/docs/use/
H A Dformatting.rst71 | ``file.fullpath`` | The current compile unit file fullpath for th…
109 | ``line.file.fullpath`` | The line table entry fullpath to the file for…
119 | ``module.file.fullpath`` | The basename of the current module (shared li…
123 | ``process.file.fullpath`` | The fullname of the file for the process …
H A Dtroubleshooting.rst88 ... cu = m.GetCompileUnitAtIndex(i).file.fullpath
/llvm-project-15.0.7/lldb/test/API/commands/target/auto-install-main-executable/
H A DTestAutoInstallMainExecutable.py69 (dest.fullpath,
/llvm-project-15.0.7/lldb/test/API/lang/objc/foundation/
H A DTestFoundationDisassembly.py37 foundation_framework = module.file.fullpath
/llvm-project-15.0.7/lldb/test/API/functionalities/target-new-solib-notifications/
H A DTestModuleLoadedNotifys.py86 if module.file.fullpath not in ['/usr/lib/dyld', exe]:
/llvm-project-15.0.7/clang/utils/
H A DFindSpecRefs823 fullpath = os.path.join(dirpath, filename)
824 references.extend(list(scanFile(fullpath, filename)))
/llvm-project-15.0.7/lldb/test/API/commands/trace/
H A DTestTraceLoad.py169 self.assertEqual(path.fullpath, os.path.join(src_dir, "intelpt-trace", "a.out"))
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/
H A DTestMiniDump.py77 self.assertEqual(module.file.fullpath, expected['filename'])
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DPath.inc137 char fullpath[PATH_MAX];
139 int chars = snprintf(fullpath, PATH_MAX, "%s/%s", dir, bin);
144 if (!realpath(fullpath, ret))
146 if (stat(fullpath, &sb) != 0)
/llvm-project-15.0.7/lldb/examples/darwin/heap_find/
H A Dheap.py1290 section_modules[idx].file.fullpath, section.name, expr_str)
/llvm-project-15.0.7/lldb/source/Commands/
H A DOptions.td911 def target_modules_list_fullpath : Option<"fullpath", "f">, Group<1>,
913 Desc<"Display the fullpath to the image object file.">;
921 OptionalArg<"Width">, Desc<"Display the fullpath to the image symbol file "
963 Arg<"Filename">, Required, Desc<"Lookup a file by fullpath or basename in "
H A DCommandObjectTarget.cpp1334 std::string fullpath = file_spec_ptr->GetPath(); in DumpFullpath() local
1335 strm.Printf("%-*s", width, fullpath.c_str()); in DumpFullpath()