Lines Matching refs:tmp_linker_so
659 soinfo tmp_linker_so(nullptr, nullptr, nullptr, 0, 0); in __linker_init() local
661 tmp_linker_so.base = linker_addr; in __linker_init()
662 tmp_linker_so.size = phdr_table_get_load_size(phdr, elf_hdr->e_phnum); in __linker_init()
663 tmp_linker_so.load_bias = load_bias; in __linker_init()
664 tmp_linker_so.dynamic = nullptr; in __linker_init()
665 tmp_linker_so.phdr = phdr; in __linker_init()
666 tmp_linker_so.phnum = elf_hdr->e_phnum; in __linker_init()
667 tmp_linker_so.set_linker_flag(); in __linker_init()
670 if (!tmp_linker_so.prelink_image()) __linker_cannot_link(args.argv[0]); in __linker_init()
671 …if (!tmp_linker_so.link_image(SymbolLookupList(&tmp_linker_so), &tmp_linker_so, nullptr, nullptr))… in __linker_init()
673 return __linker_init_post_relocation(args, tmp_linker_so); in __linker_init()
683 __linker_init_post_relocation(KernelArgumentBlock& args, soinfo& tmp_linker_so) { in __linker_init_post_relocation() argument
689 if (!tmp_linker_so.protect_relro()) __linker_cannot_link(args.argv[0]); in __linker_init_post_relocation()
692 set_bss_vma_name(&tmp_linker_so); in __linker_init_post_relocation()
698 tmp_linker_so.call_constructors(); in __linker_init_post_relocation()
740 sonext = solist = solinker = get_libdl_info(tmp_linker_so); in __linker_init_post_relocation()