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

  /frameworks/compile/mclinker/lib/LD/
RelocData.cpp 1 //===- RelocData.cpp ------------------------------------------------------===//
9 #include "mcld/LD/RelocData.h"
17 typedef GCFactory<RelocData, MCLD_SECTIONS_PER_INPUT> RelocDataFactory;
22 // RelocData
24 RelocData::RelocData() : m_pSection(NULL) {
27 RelocData::RelocData(LDSection& pSection) : m_pSection(&pSection) {
30 RelocData* RelocData::Create(LDSection& pSection)
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
RelocData.h 1 //===- RelocData.h --------------------------------------------------------===//
29 /** \class RelocData
30 * \brief RelocData stores Relocation.
36 class RelocData {
38 friend class Chunk<RelocData, MCLD_SECTIONS_PER_INPUT>;
40 RelocData();
41 explicit RelocData(LDSection& pSection);
57 static RelocData* Create(LDSection& pSection);
59 static void Destroy(RelocData*& pSection);
73 RelocData& append(Relocation& pRelocation)
    [all...]

Completed in 33 milliseconds