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()
123 int res = elf_compress_gnu (scn, 1, 0); in main()
127 res = elf_compress_gnu (scn, 1, ELF_CHF_FORCE); in main()
139 int res = elf_compress (scn, ELFCOMPRESS_ZLIB, 0); in main()
143 res = elf_compress (scn, ELFCOMPRESS_ZLIB, ELF_CHF_FORCE); in main()
154 GElf_Shdr *newshdr = gelf_getshdr (scn, &newmem); in main()
156 d = elf_getdata (scn, NULL); in main()
190 if (elf_compress_gnu (scn, 0, 0) < 0) in main()
199 if (elf_compress (scn, 0, 0) < 0) in main()
207 GElf_Shdr *newershdr = gelf_getshdr (scn, &newermem); in main()
209 d = elf_getdata (scn, NULL); in main()
228 && elf_compress (scn, ELFCOMPRESS_ZLIB, 0) < 0) in main()