Searched refs:lsod (Results 1 – 2 of 2) sorted by relevance
311 struct sod lsod; in elf_match_file() local324 _dl_build_sod(name, &lsod); in elf_match_file()327 if (strcmp((char *)lsod.sod_name, (char *)sodp->sod_name) == 0 && in elf_match_file()328 lsod.sod_library == sodp->sod_library && in elf_match_file()329 (sodp->sod_major == -1 || sodp->sod_major == lsod.sod_major) && in elf_match_file()330 (sodp->sod_minor == -1 || lsod.sod_minor >= sodp->sod_minor)) { in elf_match_file()334 sodp->sod_major = lsod.sod_major; in elf_match_file()335 sodp->sod_minor = lsod.sod_minor; in elf_match_file()337 free((char *)lsod.sod_name); in elf_match_file()
68 struct sod lsod; in _dl_match_file() local81 _dl_build_sod(name, &lsod); in _dl_match_file()84 if ((_dl_strcmp((char *)lsod.sod_name, (char *)sodp->sod_name) == 0) && in _dl_match_file()85 (lsod.sod_library == sodp->sod_library) && in _dl_match_file()86 ((sodp->sod_major == -1) || (sodp->sod_major == lsod.sod_major)) && in _dl_match_file()88 (lsod.sod_minor >= sodp->sod_minor))) { in _dl_match_file()92 sodp->sod_major = lsod.sod_major; in _dl_match_file()93 sodp->sod_minor = lsod.sod_minor; in _dl_match_file()95 _dl_free((char *)lsod.sod_name); in _dl_match_file()