Searched refs:ResolveInfo (Results 1 - 25 of 238) sorted by relevance

12345678910

/frameworks/compile/mclinker/include/mcld/LD/
H A DStaticResolver.h11 #include "mcld/LD/ResolveInfo.h"
64 U = ResolveInfo::global_flag | ResolveInfo::regular_flag | ResolveInfo::undefine_flag, // NOLINT
65 w_U = ResolveInfo::weak_flag | ResolveInfo::regular_flag | ResolveInfo::undefine_flag, // NOLINT
66 d_U = ResolveInfo::global_flag | ResolveInfo::dynamic_flag | ResolveInfo
[all...]
H A DNamePool.h15 #include "mcld/LD/ResolveInfo.h"
33 typedef HashTable<ResolveInfo, hash::StringHash<hash::DJB> > Table;
37 typedef GCFactory<ResolveInfo*, 128> FreeInfoSet;
51 ResolveInfo* createSymbol(
54 ResolveInfo::Type pType,
55 ResolveInfo::Desc pDesc,
56 ResolveInfo::Binding pBinding,
57 ResolveInfo::SizeType pSize,
58 ResolveInfo::Visibility pVisibility = ResolveInfo
[all...]
H A DResolver.h19 class ResolveInfo;
40 ResolveInfo* info;
52 virtual bool resolve(ResolveInfo& __restrict__ pOld,
53 const ResolveInfo& __restrict__ pNew,
58 /// @return the pointer to resolved ResolveInfo
62 ResolveInfo& __restrict__ pOld,
63 const ResolveInfo& __restrict__ pNew,
H A DLDSymbol.h13 #include "mcld/LD/ResolveInfo.h"
37 typedef ResolveInfo::SizeType SizeType;
44 static LDSymbol* Create(ResolveInfo& pResolveInfo);
108 const ResolveInfo* resolveInfo() const { return m_pResolveInfo; }
109 ResolveInfo* resolveInfo() { return m_pResolveInfo; }
123 void setResolveInfo(const ResolveInfo& pInfo);
136 ResolveInfo* m_pResolveInfo;
H A DResolveInfo.h1 //===- ResolveInfo.h ------------------------------------------------------===//
20 /** \class ResolveInfo
21 * \brief ResolveInfo records the information about how to resolve a symbol.
36 class ResolveInfo { class in namespace:mcld
79 static ResolveInfo* Create(const key_type& pKey);
81 static void Destroy(ResolveInfo*& pInfo);
83 static ResolveInfo* Null();
112 void override(const ResolveInfo& pForm);
114 void overrideAttributes(const ResolveInfo& pFrom);
116 void overrideVisibility(const ResolveInfo
[all...]
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.aidl20 parcelable ResolveInfo;
/frameworks/compile/mclinker/lib/LD/
H A DResolveInfo.cpp1 //===- ResolveInfo.cpp ----------------------------------------------------===//
9 #include "mcld/LD/ResolveInfo.h"
22 /// g_NullResolveInfo - a pointer to Null ResolveInfo.
23 static ResolveInfo* g_NullResolveInfo = NULL;
26 // ResolveInfo
28 ResolveInfo::ResolveInfo() : m_Size(0), m_BitField(0) { function in class:mcld::ResolveInfo
32 ResolveInfo::~ResolveInfo() {
35 void ResolveInfo
[all...]
H A DELFReaderIf.cpp31 ResolveInfo::Type ELFReaderIF::getSymType(uint8_t pInfo,
33 ResolveInfo::Type result = static_cast<ResolveInfo::Type>(pInfo & 0xF);
34 if (pShndx == llvm::ELF::SHN_ABS && result == ResolveInfo::Section) {
39 return ResolveInfo::Object;
46 ResolveInfo::Desc ELFReaderIF::getSymDesc(uint16_t pShndx,
49 return ResolveInfo::Undefined;
56 return ResolveInfo::Undefined;
57 return ResolveInfo::Define;
61 return ResolveInfo
[all...]
H A DNamePool.cpp29 ResolveInfo::Destroy(*info);
34 ResolveInfo* NamePool::createSymbol(const llvm::StringRef& pName,
36 ResolveInfo::Type pType,
37 ResolveInfo::Desc pDesc,
38 ResolveInfo::Binding pBinding,
39 ResolveInfo::SizeType pSize,
40 ResolveInfo::Visibility pVisibility) {
41 ResolveInfo** result = m_FreeInfoSet.allocate();
42 (*result) = ResolveInfo::Create(pName);
54 /// @return the pointer of resolved ResolveInfo
[all...]
H A DELFBinaryReader.cpp72 ResolveInfo::Section,
73 ResolveInfo::Define,
74 ResolveInfo::Local,
92 ResolveInfo::NoType,
93 ResolveInfo::Define,
94 ResolveInfo::Global,
102 ResolveInfo::NoType,
103 ResolveInfo::Define,
104 ResolveInfo::Global,
112 ResolveInfo
[all...]
H A DLDSymbol.cpp50 LDSymbol* LDSymbol::Create(ResolveInfo& pResolveInfo) {
70 g_NullSymbol->setResolveInfo(*ResolveInfo::Null());
72 ResolveInfo::Null()->setSymPtr(&*g_NullSymbol);
81 void LDSymbol::setResolveInfo(const ResolveInfo& pInfo) {
82 m_pResolveInfo = const_cast<ResolveInfo*>(&pInfo);
/frameworks/compile/mclinker/unittests/
H A DStaticResolverTest.cpp12 #include "mcld/LD/ResolveInfo.h"
49 ResolveInfo* old_sym = ResolveInfo::Create("abc");
50 ResolveInfo* new_sym = ResolveInfo::Create("abc");
51 new_sym->setDesc(ResolveInfo::Define);
52 old_sym->setDesc(ResolveInfo::Define);
53 ASSERT_TRUE(mcld::ResolveInfo::Define == new_sym->desc());
54 ASSERT_TRUE(mcld::ResolveInfo::Define == old_sym->desc());
55 ASSERT_TRUE(mcld::ResolveInfo
[all...]
H A DSymbolCategoryTest.cpp10 #include "mcld/LD/ResolveInfo.h"
43 ResolveInfo* a = ResolveInfo::Create("a");
44 ResolveInfo* b = ResolveInfo::Create("b");
45 ResolveInfo* c = ResolveInfo::Create("c");
46 ResolveInfo* d = ResolveInfo::Create("d");
47 ResolveInfo*
[all...]
H A DNamePoolTest.cpp13 #include "mcld/LD/ResolveInfo.h"
66 ResolveInfo::Type type = ResolveInfo::Function;
67 ResolveInfo::Desc desc = ResolveInfo::Define;
68 ResolveInfo::Binding binding = ResolveInfo::Local;
71 ResolveInfo::Visibility other = ResolveInfo::Default;
104 ResolveInfo
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h357 ResolveInfo* CreateLocalSymbol(FragmentRef& pFragRef);
371 /// function, no-type and so on. @see ResolveInfo
388 ResolveInfo::Type pType,
389 ResolveInfo::Desc pDesc,
390 ResolveInfo::Binding pBind,
391 ResolveInfo::SizeType pSize,
394 ResolveInfo::Visibility pVis = ResolveInfo::Default);
434 ResolveInfo::Type pType,
435 ResolveInfo
[all...]
/frameworks/support/v4/jellybean-mr2/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompatJellyBeanMr2.java20 import android.content.pm.ResolveInfo;
/frameworks/support/v4/ics/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompatIcs.java21 import android.content.pm.ResolveInfo;
40 public static ResolveInfo getResolveInfo(AccessibilityServiceInfo info) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.h35 typedef KeyEntryMap<ResolveInfo, PLTEntryBase> SymPLTMap;
36 typedef KeyEntryMap<ResolveInfo, Fragment> SymGOTPLTMap;
147 virtual void setupRel32DynEntry(FragmentRef& pFragRef, ResolveInfo* pSym) = 0;
149 virtual void setupTLSDynEntry(Fragment& pFrag, ResolveInfo* pSym,
153 bool isLocalReloc(ResolveInfo& pSym) const;
156 void setupRelDynEntry(FragmentRef& pFragRef, ResolveInfo* pSym,
161 typedef llvm::DenseMap<const ResolveInfo*, RelocationSet> SymRelocSetMap;
185 void addCopyReloc(ResolveInfo& pSym);
191 const ResolveInfo& pSym);
206 void setupRel32DynEntry(FragmentRef& pFragRef, ResolveInfo* pSy
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.h21 class ResolveInfo;
29 typedef KeyEntryMap<ResolveInfo, PLTEntryBase> SymPLTMap;
30 typedef KeyEntryMap<ResolveInfo, HexagonGOTEntry> SymGOTMap;
31 typedef KeyEntryMap<ResolveInfo, HexagonGOTEntry> SymGOTPLTMap;
36 * \brief The reserved entry type of reserved space in ResolveInfo.
119 void addCopyReloc(ResolveInfo& pSym, HexagonLDBackend& pTarget);
125 const ResolveInfo& pSym,
/frameworks/base/services/core/java/com/android/server/search/
H A DSearchables.java29 import android.content.pm.ResolveInfo;
66 private List<ResolveInfo> mGlobalSearchActivities;
213 List<ResolveInfo> searchList;
221 List<ResolveInfo> webSearchInfoList;
233 ResolveInfo info = (ii < search_count)
252 List<ResolveInfo> newGlobalSearchActivities = findGlobalSearchActivities();
283 private List<ResolveInfo> findGlobalSearchActivities() {
287 List<ResolveInfo> activities = queryIntentActivities(intent,
300 private ComponentName findGlobalSearchActivity(List<ResolveInfo> installed) {
324 List<ResolveInfo> activitie
[all...]
/frameworks/base/core/java/android/app/
H A DISearchManager.aidl22 import android.content.pm.ResolveInfo;
30 List<ResolveInfo> getGlobalSearchActivities();
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp399 ResolveInfo::Type pType,
400 ResolveInfo::Desc pDesc,
401 ResolveInfo::Binding pBind,
402 ResolveInfo::SizeType pSize,
405 ResolveInfo::Visibility pVis) {
409 ResolveInfo::Undefined == pDesc) {
420 if (pInput.noExport() && (pDesc != ResolveInfo::Undefined)) {
421 if ((pVis == ResolveInfo::Default) || (pVis == ResolveInfo::Protected)) {
422 pVis = ResolveInfo
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.h25 typedef KeyEntryMap<ResolveInfo, ARMGOTEntry> SymGOTMap;
26 typedef KeyEntryMap<ResolveInfo, ARMPLT1> SymPLTMap;
29 * \brief The reserved entry type of reserved space in ResolveInfo.
118 void addCopyReloc(ResolveInfo& pSym);
124 const ResolveInfo& pSym);
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h21 class ResolveInfo;
84 const ResolveInfo* symInfo() const { return m_pSymInfo; }
85 ResolveInfo* symInfo() { return m_pSymInfo; }
106 void setSymInfo(ResolveInfo* pSym);
116 ResolveInfo* m_pSymInfo;
/frameworks/compile/mclinker/lib/Fragment/
H A DStub.cpp14 #include "mcld/LD/ResolveInfo.h"
28 void Stub::setSymInfo(ResolveInfo* pSymInfo) {
47 ResolveInfo::Function,
48 ResolveInfo::Define,
49 ResolveInfo::Local,
53 ResolveInfo::Default);

Completed in 382 milliseconds

12345678910