OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_plinker
(Results
1 - 4
of
4
) sorted by null
/frameworks/compile/mclinker/include/mcld/Object/
ObjectLinker.h
131
const FragmentLinker* getLinker() const { return
m_pLinker
; }
132
FragmentLinker* getLinker() { return
m_pLinker
; }
136
{ return (NULL !=
m_pLinker
); }
159
FragmentLinker*
m_pLinker
;
/frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp
43
m_pLinker
(NULL),
57
delete
m_pLinker
;
81
if (NULL ==
m_pLinker
) {
82
m_pLinker
= new FragmentLinker(m_Config,
485
bool finalized =
m_pLinker
->finalizeSymbols() && m_LDBackend.finalizeSymbols();
514
return
m_pLinker
->applyRelocations();
527
m_pLinker
->syncRelocationResult(pOutput);
/frameworks/compile/mclinker/include/mcld/CodeGen/
MCLinker.h
76
Linker*
m_pLinker
;
/frameworks/compile/mclinker/lib/CodeGen/
MCLinker.cpp
199
m_pLinker
(NULL) {
204
delete
m_pLinker
;
211
m_pLinker
= new Linker();
213
if (!
m_pLinker
->emulate(m_Module.getScript(), m_Config))
225
if (!
m_pLinker
->link(m_Module, *m_pBuilder))
228
if (!
m_pLinker
->emit(m_Output))
Completed in 49 milliseconds