Home
last modified time | relevance | path

Searched refs:DT_NEEDED (Results 1 – 7 of 7) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A Dendian-ness_handling.patch163 /* Now read the DT_NEEDED and DT_SONAME entries. */
168 - if (dyn_entry->d_tag == DT_NEEDED || dyn_entry->d_tag == DT_SONAME)
169 + if (read32(dyn_entry->d_tag, be) == DT_NEEDED || read32(dyn_entry->d_tag, be) == DT_SONAME)
175 - if (dyn_entry->d_tag == DT_NEEDED)
176 + if (read32(dyn_entry->d_tag, be) == DT_NEEDED)
308 /* Now read the DT_NEEDED and DT_SONAME entries. */
313 - if (dyn_entry->d_tag == DT_NEEDED || dyn_entry->d_tag == DT_SONAME)
314 + if (read64(dyn_entry->d_tag, be) == DT_NEEDED || read64(dyn_entry->d_tag, be) == DT_SONAME)
320 - if (dyn_entry->d_tag == DT_NEEDED)
321 + if (read64(dyn_entry->d_tag, be) == DT_NEEDED)
H A D32and64bit.patch174 + /* Now read the DT_NEEDED and DT_SONAME entries. */
178 + if (dyn_entry->d_tag == DT_NEEDED || dyn_entry->d_tag == DT_SONAME)
183 + if (dyn_entry->d_tag == DT_NEEDED)
/openbmc/linux/include/uapi/linux/
H A Delf.h80 #define DT_NEEDED 1 macro
/openbmc/u-boot/include/
H A Delf.h499 #define DT_NEEDED 1 /* string table offset of needed lib */ macro
/openbmc/qemu/linux-user/
H A Dgen-vdso-elfn.c.inc266 case DT_NEEDED:
/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-notes-4.0.17.rst61 - ldconfig-native: Fix to point correctly on the DT_NEEDED entries in an ELF file
/openbmc/qemu/include/
H A Delf.h215 #define DT_NEEDED 1 macro