Home | History | Annotate | Download | only in definition-tool

Lines Matching refs:DT_RUNPATH

463     DT_RUNPATH = 29
518 __slots__ = ('ei_class', 'ei_data', 'e_machine', 'dt_rpath', 'dt_runpath',
525 dt_rpath=None, dt_runpath=None, dt_needed=None,
533 self.dt_runpath = dt_runpath if dt_runpath is not None else []
604 for dt_runpath in self.dt_runpath:
605 print('DT_RUNPATH\t' + dt_runpath, file=file)
788 elif ent.d_tag == ELF.DT_RUNPATH:
789 self.dt_runpath.extend(
861 elif key == 'DT_RUNPATH':
862 self.dt_runpath.append(intern(value))
1922 def get_candidates(self, requester, name, dt_rpath=None, dt_runpath=None):
1931 if dt_runpath:
1932 for d in dt_runpath:
1938 def resolve(self, requester, name, dt_rpath=None, dt_runpath=None):
1939 for path in self.get_candidates(requester, name, dt_rpath, dt_runpath):
2357 lib.elf.dt_runpath)
2360 lib.path, dt_needed, lib.elf.dt_rpath, lib.elf.dt_runpath))