/third_party/elfutils/libelf/ |
D | elf_compress.c | 396 int compressed = (sh_flags & SHF_COMPRESSED); in elf_compress() 460 shdr->sh_flags |= SHF_COMPRESSED; in elf_compress() 467 shdr->sh_flags |= SHF_COMPRESSED; in elf_compress() 511 shdr->sh_flags &= ~SHF_COMPRESSED; in elf_compress() 518 shdr->sh_flags &= ~SHF_COMPRESSED; in elf_compress()
|
D | elf_strptr.c | 131 if ((shdr->sh_flags & SHF_COMPRESSED) == 0) in elf_strptr() 157 if ((shdr->sh_flags & SHF_COMPRESSED) == 0) in elf_strptr()
|
D | elf32_getchdr.c | 64 if ((shdr->sh_flags & SHF_COMPRESSED) == 0) in ElfW2()
|
D | libelf.h | 38 #ifndef SHF_COMPRESSED 40 #define SHF_COMPRESSED (1 << 11) /* Section with compressed data. */ macro
|
D | elf32_updatenull.c | 272 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in __elfw2() 402 if ((shdr->sh_flags & SHF_COMPRESSED) == 0) in __elfw2()
|
D | elf_compress_gnu.c | 85 if ((sh_flags & SHF_ALLOC) != 0 || (sh_flags & SHF_COMPRESSED)) in elf_compress_gnu()
|
D | elf_getdata.c | 265 if ((flags & SHF_COMPRESSED) != 0) in __libelf_set_rawdata_wrlock() 364 if ((flags & SHF_COMPRESSED) != 0) in __libelf_set_rawdata_wrlock()
|
D | ChangeLog | 205 of an SHF_COMPRESSED section if necessary. 391 alignment of SHF_COMPRESSED data to the alignment of ELF_T_CHDR. 460 sh_flags has SHF_COMPRESSED set. 664 * libelf.h: Check SHF_COMPRESSED is defined. If not define it and the 672 * elf_strptr.c (elf_strptr): If SHF_COMPRESSED check, uncompress and 691 (convert_data): Handle SHF_COMPRESSED. 693 uncompressed section data size if SHF_COMPRESSED. 719 ELF_T_CHDR for SHF_COMPRESSED sections.
|
/third_party/elfutils/src/ |
D | elfcompress.c | 450 && (shdr->sh_flags & SHF_COMPRESSED) == 0 in process_file() 457 && (shdr->sh_flags & SHF_COMPRESSED) != 0) in process_file() 691 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in process_file() 713 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in process_file() 777 if ((shdr->sh_flags & SHF_COMPRESSED) == 0) in process_file() 909 if ((shdr->sh_flags == SHF_COMPRESSED) != 0) in process_file() 1069 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in process_file() 1210 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in process_file()
|
D | readelf.c | 948 if (shdr != NULL && (shdr->sh_flags & SHF_COMPRESSED) != 0) in elf_contains_chdrs() 1319 if (shdr->sh_flags & SHF_COMPRESSED) in print_shdr() 1345 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in print_shdr() 1674 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in print_scngrp() 2457 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in print_symtab() 3559 && (shdr->sh_flags & SHF_COMPRESSED) != 0) in handle_hash() 12869 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in dump_data_section() 12920 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in print_string_section()
|
D | elflint.c | 3690 | SHF_COMPRESSED) 3932 | SHF_COMPRESSED | SHF_GNU_RETAIN) in check_sections() 3970 if (shdr->sh_flags & SHF_COMPRESSED) in check_sections()
|
/third_party/elfutils/tests/ |
D | elfgetzdata.c | 75 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in main()
|
D | elfgetchdr.c | 79 if ((shdr.sh_flags & SHF_COMPRESSED) != 0) in main()
|
D | zstrptr.c | 40 ((shdr->sh_flags & SHF_COMPRESSED) != 0 in print_strings()
|
D | next_cfi.c | 49 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in handle_section()
|
D | elfputzdata.c | 87 else if ((shdr->sh_flags & SHF_COMPRESSED) != 0 in main()
|
/third_party/elfutils/libdwfl/ |
D | relocate.c | 137 && (shdr->sh_flags & SHF_COMPRESSED) != 0) in relocate_getsym() 245 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in resolve_symbol() 526 if ((tshdr->sh_flags & SHF_COMPRESSED) != 0) in relocate_section() 547 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in relocate_section()
|
D | dwfl_module_getdwarf.c | 1169 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in find_symtab() 1185 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in find_symtab() 1198 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in find_symtab() 1252 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in find_symtab() 1268 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in find_symtab() 1282 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in find_symtab()
|
/third_party/elfio/elfio/ |
D | elfio_section.hpp | 215 ( get_flags() & SHF_COMPRESSED ) ) && in is_compressed() 324 if ( ( ( get_flags() & SHF_COMPRESSED ) || in save_data()
|
D | elfio_dump.hpp | 1327 if ( flags & SHF_COMPRESSED ) { in section_flags()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | Decompressor.cpp | 92 return (Flags & ELF::SHF_COMPRESSED) || isGnuStyle(Name); in isCompressedELFSection()
|
/third_party/elfutils/libdw/ |
D | dwarf_begin_elf.c | 210 if ((shdr->sh_flags & SHF_COMPRESSED) != 0) in check_section() 426 if ((shdr->sh_flags & SHF_COMPRESSED) != 0 in scngrp_read()
|
/third_party/libunwind/src/dwarf/ |
D | Gfind_proc_info-lsb.c | 135 #if defined(SHF_COMPRESSED) in load_debug_frame() 136 if (shdr->sh_flags & SHF_COMPRESSED) in load_debug_frame() 193 #if defined(SHF_COMPRESSED) in load_debug_frame()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | ELF.h | 747 SHF_COMPRESSED = 0x800U, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | ELF.h | 919 SHF_COMPRESSED = 0x800U, enumerator
|