HomeSort by relevance Sort by last modified time
    Searched refs:pParent (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.h 25 X86_32GOTEntry(uint64_t pContent, SectionData* pParent)
26 : GOT::Entry<4>(pContent, pParent)
50 X86_64GOTEntry(uint64_t pContent, SectionData* pParent)
51 : GOT::Entry<8>(pContent, pParent)
X86ELFDynamic.cpp 15 X86ELFDynamic::X86ELFDynamic(const GNULDBackend& pParent,
17 : ELFDynamic(pParent, pConfig)
X86PLT.h 66 X86_32DynPLT0(SectionData& pParent);
72 X86_32DynPLT1(SectionData& pParent);
78 X86_32ExecPLT0(SectionData& pParent);
84 X86_32ExecPLT1(SectionData& pParent);
93 X86_64PLT0(SectionData& pParent);
99 X86_64PLT1(SectionData& pParent);
X86ELFDynamic.h 19 X86ELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
X86Relocator.cpp 36 X86_32Relocator& pParent)
38 X86_32GNULDBackend& ld_backend = pParent.getTarget();
68 X86_32Relocator& pParent)
72 X86_32GNULDBackend& ld_backend = pParent.getTarget();
73 assert(NULL == pParent.getSymGOTMap().lookUp(*rsym));
76 pParent.getSymGOTMap().record(*rsym, *got_entry);
84 if (helper_use_relative_reloc(*rsym, pParent)) {
86 pParent);
91 pParent);
99 Relocator::Address helper_GOT_ORG(X86_32Relocator& pParent)
    [all...]
X86PLT.cpp 24 X86_32DynPLT0::X86_32DynPLT0(SectionData& pParent)
25 : PLT::Entry<sizeof(x86_32_dyn_plt0)>(pParent)
29 X86_32DynPLT1::X86_32DynPLT1(SectionData& pParent)
30 : PLT::Entry<sizeof(x86_32_dyn_plt1)>(pParent)
34 X86_32ExecPLT0::X86_32ExecPLT0(SectionData& pParent)
35 : PLT::Entry<sizeof(x86_32_exec_plt0)>(pParent)
39 X86_32ExecPLT1::X86_32ExecPLT1(SectionData& pParent)
40 : PLT::Entry<sizeof(x86_32_exec_plt1)>(pParent)
44 X86_64PLT0::X86_64PLT0(SectionData& pParent)
45 : PLT::Entry<sizeof(x86_64_plt0)>(pParent)
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.h 25 HexagonGOTEntry(uint64_t pContent, SectionData* pParent)
26 : GOT::Entry<4>(pContent, pParent)
HexagonELFDynamic.cpp 15 HexagonELFDynamic::HexagonELFDynamic(const GNULDBackend& pParent,
17 : ELFDynamic(pParent, pConfig) {
HexagonELFDynamic.h 19 HexagonELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64RelocationHelpers.h 97 helper_get_PLT_address(ResolveInfo& pSym, AArch64Relocator& pParent)
99 PLTEntryBase* plt_entry = pParent.getSymPLTMap().lookUp(pSym);
101 return pParent.getTarget().getPLT().addr() + plt_entry->getOffset();
105 helper_PLT_init(Relocation& pReloc, AArch64Relocator& pParent)
109 AArch64GNULDBackend& ld_backend = pParent.getTarget();
110 assert(NULL == pParent.getSymPLTMap().lookUp(*rsym));
113 pParent.getSymPLTMap().record(*rsym, *plt_entry);
116 assert(NULL == pParent.getSymGOTPLTMap().lookUp(*rsym) &&
119 pParent.getSymGOTPLTMap().record(*rsym, *gotplt_entry);
135 AArch64Relocator& pParent)
    [all...]
AArch64ELFDynamic.h 18 AArch64ELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
AArch64ELFDynamic.cpp 16 AArch64ELFDynamic::AArch64ELFDynamic(const GNULDBackend& pParent,
18 : ELFDynamic(pParent, pConfig)
AArch64GOT.h 29 AArch64GOTEntry(uint64_t pContent, SectionData* pParent)
30 : GOT::Entry<8>(pContent, pParent)
AArch64Relocator.cpp 35 AArch64Relocator& pParent);
63 AArch64Relocator::AArch64Relocator(AArch64GNULDBackend& pParent,
66 m_Target(pParent) {
413 Relocator::Result none(Relocation& pReloc, AArch64Relocator& pParent)
418 Relocator::Result unsupport(Relocation& pReloc, AArch64Relocator& pParent)
426 Relocator::Result abs(Relocation& pReloc, AArch64Relocator& pParent)
431 Relocation* dyn_rel = pParent.getRelRelMap().lookUp(pReloc);
449 S = helper_get_PLT_address(*rsym, pParent);
474 Relocator::Result rel(Relocation& pReloc, AArch64Relocator& pParent)
482 A += pReloc.target() & get_mask(pParent.getSize(pReloc.type()))
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMELFDynamic.cpp 15 ARMELFDynamic::ARMELFDynamic(const GNULDBackend& pParent,
17 : ELFDynamic(pParent, pConfig)
ARMELFDynamic.h 18 ARMELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
ARMGOT.h 27 ARMGOTEntry(uint64_t pContent, SectionData* pParent)
28 : GOT::Entry<4>(pContent, pParent)
ARMPLT.h 41 ARMPLT0(SectionData& pParent);
47 ARMPLT1(SectionData& pParent);
  /frameworks/compile/mclinker/lib/Fragment/
Fragment.cpp 25 Fragment::Fragment(Type pKind, SectionData *pParent)
26 : m_Kind(pKind), m_pParent(pParent), m_Offset(~uint64_t(0)) {
  /external/chromium_org/third_party/sqlite/src/src/
test_onefile.c 180 sqlite3_vfs *pParent;
205 0 /* pParent */
617 sqlite3_vfs *pParent = pFsVfs->pParent;
620 pReal = (fs_real_file *)sqlite3_malloc(sizeof(*pReal)+pParent->szOsFile);
625 memset(pReal, 0, sizeof(*pReal)+pParent->szOsFile);
629 rc = pParent->xOpen(pParent, zName, pReal->pFile, real_flags, pOutFlags);
723 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent;
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
PLT.h 27 PLTEntryBase(SectionData& pParent)
28 : TargetFragment(Fragment::Target, &pParent), m_pValue(NULL)
66 Entry(SectionData& pParent)
67 : EntryBase(pParent)
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsRelocator.cpp 43 static bool HasSubType(const Relocation& pParent, Relocation::Type pType)
48 for (Relocation::Type type = pParent.type();
57 MipsRelocationInfo(Relocation& pParent, bool pIsRel)
58 : m_Parent(&pParent),
59 m_Type(pParent.type()),
61 m_Symbol(pParent.symValue()),
62 m_Result(pParent.target())
66 m_Addend = pParent.target();
68 m_Addend = pParent.addend();
133 MipsRelocationInfo(Relocation& pParent, Relocation::Type pType
    [all...]
MipsELFDynamic.h 21 MipsELFDynamic(const MipsGNULDBackend& pParent, const LinkerConfig& pConfig);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdutil.h 20 void *pParent,
25 void *pParent,
69 WSDXML_ELEMENT *pParent,
  /frameworks/compile/mclinker/lib/MC/
Attribute.cpp 51 AttributeProxy::AttributeProxy(AttributeSet& pParent,
54 : m_AttrPool(pParent), m_pBase(&pBase), m_Constraint(pConstraint) {
101 static inline void ReplaceOrRecord(AttributeSet& pParent,
105 Attribute *result = pParent.exists(*pCopy);
107 pParent.record(*pCopy);

Completed in 211 milliseconds

1 2 3 4 5