HomeSort by relevance Sort by last modified time
    Searched refs:sec_hdr (Results 1 - 2 of 2) sorted by null

  /toolchain/binutils/binutils-2.25/include/elf/
internal.h 294 #define ELF_TBSS_SPECIAL(sec_hdr, segment) \
295 (((sec_hdr)->sh_flags & SHF_TLS) != 0 \
296 && (sec_hdr)->sh_type == SHT_NOBITS \
299 #define ELF_SECTION_SIZE(sec_hdr, segment) \
300 (ELF_TBSS_SPECIAL(sec_hdr, segment) ? 0 : (sec_hdr)->sh_size)
302 /* Decide if the section SEC_HDR is in SEGMENT. If CHECK_VMA, then
308 #define ELF_SECTION_IN_SEGMENT_1(sec_hdr, segment, check_vma, strict) \
311 ((((sec_hdr)->sh_flags & SHF_TLS) != 0) \
317 || (((sec_hdr)->sh_flags & SHF_TLS) == 0
    [all...]
  /external/iproute2/tc/
tc_bpf.c 712 GElf_Shdr sec_hdr; member in struct:bpf_elf_sec_data
1157 GElf_Shdr sec_hdr; local
1166 if (gelf_getshdr(sec_fd, &sec_hdr) != &sec_hdr)
1170 sec_hdr.sh_name);
1171 if (!sec_name || !sec_hdr.sh_size)
1178 memcpy(&data->sec_hdr, &sec_hdr, sizeof(sec_hdr));
1219 ctx->sym_num = data->sec_hdr.sh_size / data->sec_hdr.sh_entsize
    [all...]

Completed in 1255 milliseconds