Searched refs:p_flags (Results 26 - 47 of 47) sorted by relevance

12

/external/qemu/include/hw/
H A Delf_ops.h26 bswap32s(&phdr->p_flags); /* Segment flags */
/external/elfutils/0.153/src/
H A Delflint.c1252 newp->read_only = (phdr->p_flags & PF_W) == 0;
3753 if ((phdr->p_flags & PF_X) == 0)
3763 && (phdr->p_flags & PF_W) == 0)
3871 if ((phdr->p_flags & PF_X) != 0
3877 if ((phdr->p_flags & PF_W) != 0
4182 if ((phdr2->p_flags & PF_W) == 0)
4185 if ((phdr2->p_flags & ~PF_W) != (phdr->p_flags & ~PF_W))
4270 if ((phdr->p_flags & PF_R) == 0)
4277 if ((phdr->p_flags
[all...]
H A Dfindtextrel.c348 if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0)
H A Dldgeneric.c6458 phdr->p_flags = segment->mode;
6482 phdr->p_flags = PF_R;
6499 phdr->p_flags = (PF_R | PF_W
6622 phdr->p_flags = 0; /* No need to set PF_R or so. */
6636 phdr->p_flags = 0; /* No need to set PF_R or so. */
6657 phdr->p_flags = 0; /* No need to set PF_R or so. */
H A Dreadelf.c1010 phdr->p_flags & PF_R ? 'R' : ' ',
1011 phdr->p_flags & PF_W ? 'W' : ' ',
1012 phdr->p_flags & PF_X ? 'E' : ' ',
1102 else if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0)
1129 if ((phdr2->p_flags & PF_W) == 0 && !in_ro)
1134 else if ((phdr2->p_flags & PF_W) != 0 && in_ro)
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble_gap.c1070 p_cb_data->p_flags = btm_ble_build_adv_data(&mask, &p, p_data);
1462 if (p_adv_data->p_flags != NULL)
1463 flag = old_flag = *(p_adv_data->p_flags);
1862 if (p_adv_data->p_flags != NULL)
1864 BTM_TRACE_DEBUG ("btm_ble_update_adv_flag old=0x%x", *p_adv_data->p_flags);
1865 *p_adv_data->p_flags = flag;
1880 p_adv_data->p_flags = p;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cc510 bool executable = phdr->p_flags & PF_X;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsymbol-elf.c986 if (!(phdr.p_flags & PF_X))
989 if (!(phdr.p_flags & PF_R))
/external/qemu/include/
H A Delf.h1080 /* Legal values for p_flags field of Elf32_Phdr/Elf64_Phdr. */
1103 /* Processor specific flags for the Phdr p_flags field. */
1284 header, p_flags. */
1296 Elf32_Word p_flags; member in struct:elf32_phdr
1302 Elf64_Word p_flags; member in struct:elf64_phdr
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadelf.c1619 a_phdr.p_flags & PF_R ? 'r' : '-',
1620 a_phdr.p_flags & PF_W ? 'w' : '-',
1621 a_phdr.p_flags & PF_X ? 'x' : '-');
1643 && (a_phdr.p_flags & (PF_R | PF_W))
1651 && (a_phdr.p_flags & (PF_R | PF_X))
/external/chromium_org/third_party/freetype/include/freetype/
H A Dfreetype.h3302 * p_flags ::
3319 * interpreted depending on the flags returned in `*p_flags'. See the
3327 FT_UInt *p_flags,
/external/freetype/include/
H A Dfreetype.h3370 * p_flags ::
3387 * interpreted depending on the flags returned in `*p_flags'. See the
3395 FT_UInt *p_flags,
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfreetype.h3315 * p_flags ::
3332 * interpreted depending on the flags returned in `*p_flags'. See the
3340 FT_UInt *p_flags,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfreetype.h3315 * p_flags ::
3332 * interpreted depending on the flags returned in `*p_flags'. See the
3340 FT_UInt *p_flags,
/external/llvm/include/llvm/Support/
H A DELF.h1571 Elf32_Word p_flags; // Segment flags member in struct:llvm::ELF::Elf32_Phdr
1578 Elf64_Word p_flags; // Segment flags member in struct:llvm::ELF::Elf64_Phdr
/external/elfutils/0.153/libelf/
H A Delf.h550 Elf32_Word p_flags; /* Segment flags */ member in struct:__anon21230
557 Elf64_Word p_flags; /* Segment flags */ member in struct:__anon21231
595 /* Legal values for p_flags (segment flags). */
1916 /* Legal values for p_flags field of Elf32_Phdr/Elf64_Phdr. */
2384 /* Processor specific flags for the Phdr p_flags field. */
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp992 W.printFlags ("Flags", PI->p_flags, makeArrayRef(ElfSegmentFlags));
/external/chromium_org/third_party/freetype/src/base/
H A Dftobjs.c4839 FT_UInt *p_flags,
4856 *p_flags = subg->flags;
/external/freetype/src/base/
H A Dftobjs.c4863 FT_UInt *p_flags,
4880 *p_flags = subg->flags;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftobjs.c4840 FT_UInt *p_flags,
4857 *p_flags = subg->flags;
/external/qemu/tcg/
H A Dtcg.c2789 .p_flags = PF_X,
/external/valgrind/main/perf/
H A Dtinycc.c544 Elf32_Word p_flags; /* Segment flags */ member in struct:__anon33291
551 Elf64_Word p_flags; /* Segment flags */ member in struct:__anon33292
575 /* Legal values for p_flags (segment flags). */
19501 ph->p_flags = PF_R | PF_X;
19503 ph->p_flags = PF_R | PF_W;
19594 ph->p_flags = PF_R;
19610 ph->p_flags = PF_R | PF_W;

Completed in 3782 milliseconds

12