| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | lldb_module_utils.py | 65 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 D | lldbtk.py | 116 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 D | symbolication.py | 248 obj = cls(module.file.fullpath, module.uuid) 249 obj.resolved_path = module.platform_file.fullpath
|
| H A D | crashlog.py | 852 out_file.write('Path: %s\n' % (target.executable.fullpath)) 915 module.file.fullpath))
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBModule.i | 518 if comp_unit.file.fullpath == key: 527 fullpath = comp_unit.file.fullpath 528 if fullpath: 529 re_match = key.search(fullpath)
|
| H A D | SBFileSpec.i | 98 …fullpath = property(__get_fullpath__, None, doc='''A read only property that returns the fullpath …
|
| H A D | SBTarget.i | 1015 if module.file.fullpath == key: 1036 re_match = key.search(module.path.fullpath)
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | formatting.rst | 71 | ``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 D | troubleshooting.rst | 88 ... cu = m.GetCompileUnitAtIndex(i).file.fullpath
|
| /llvm-project-15.0.7/lldb/test/API/commands/target/auto-install-main-executable/ |
| H A D | TestAutoInstallMainExecutable.py | 69 (dest.fullpath,
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/foundation/ |
| H A D | TestFoundationDisassembly.py | 37 foundation_framework = module.file.fullpath
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/target-new-solib-notifications/ |
| H A D | TestModuleLoadedNotifys.py | 86 if module.file.fullpath not in ['/usr/lib/dyld', exe]:
|
| /llvm-project-15.0.7/clang/utils/ |
| H A D | FindSpecRefs | 823 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 D | TestTraceLoad.py | 169 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 D | TestMiniDump.py | 77 self.assertEqual(module.file.fullpath, expected['filename'])
|
| /llvm-project-15.0.7/llvm/lib/Support/Unix/ |
| H A D | Path.inc | 137 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 D | heap.py | 1290 section_modules[idx].file.fullpath, section.name, expr_str)
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | Options.td | 911 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 D | CommandObjectTarget.cpp | 1334 std::string fullpath = file_spec_ptr->GetPath(); in DumpFullpath() local 1335 strm.Printf("%-*s", width, fullpath.c_str()); in DumpFullpath()
|