Lines Matching refs:scn
73 Elf_Scn *scn = NULL; in main() local
74 while ((scn = elf_nextscn (elf, scn)) != NULL) in main()
76 size_t idx = elf_ndxscn (scn); in main()
78 GElf_Shdr *shdr = gelf_getshdr (scn, &mem); in main()
95 Elf_Data *d = elf_getdata (scn, NULL); in main()
120 int res = elf_compress_gnu (scn, 1, 0); in main()
124 res = elf_compress_gnu (scn, 1, ELF_CHF_FORCE); in main()
136 int res = elf_compress (scn, ELFCOMPRESS_ZLIB, 0); in main()
140 res = elf_compress (scn, ELFCOMPRESS_ZLIB, ELF_CHF_FORCE); in main()
151 GElf_Shdr *newshdr = gelf_getshdr (scn, &newmem); in main()
153 d = elf_getdata (scn, NULL); in main()
186 if (elf_compress_gnu (scn, 0, 0) < 0) in main()
195 if (elf_compress (scn, 0, 0) < 0) in main()
203 GElf_Shdr *newershdr = gelf_getshdr (scn, &newermem); in main()
205 d = elf_getdata (scn, NULL); in main()
223 && elf_compress (scn, ELFCOMPRESS_ZLIB, 0) < 0) in main()