Searched defs:exist (Results 1 - 14 of 14) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DELFSectionMap.cpp77 bool exist = false; local
78 NamePair& pair = append(map[i].from, map[i].to, exist);
79 if (exist) {
H A DArchive.cpp85 bool exist; local
86 ObjectMemberEntryType* entry = m_ObjectMemberMap.insert(pFileOffset, exist);
87 if (!exist)
89 return !exist;
121 bool exist; local
122 ArchiveMemberEntryType* entry = m_ArchiveMemberMap.insert(pName, exist);
123 if (!exist) {
129 return !exist;
H A DELFObjectReader.cpp104 bool exist = false; local
109 signatures().insert((*section)->name(), exist);
111 signatures().insert(signature->name(), exist);
114 if (exist) {
H A DNamePool.cpp62 bool exist = false; local
63 ResolveInfo* old_symbol = m_Table.insert(pName, exist);
65 if (exist && old_symbol->isSymbol()) {
66 exist = true;
70 exist = false;
82 if (!exist) {
110 bool exist = false; local
111 ResolveInfo* resolve_info = m_Table.insert(pString, exist);
/frameworks/compile/mclinker/unittests/
H A DHashTableTest.cpp84 bool exist; local
87 entry = hashTable->insert(pA, exist);
110 bool exist; local
112 HashTableTy::entry_type* val = hashTable->insert(key, exist);
115 EXPECT_FALSE(exist);
127 bool exist; local
130 entry = hashTable->insert(key, exist);
132 EXPECT_FALSE(exist);
149 bool exist; local
152 entry = hashTable->insert(key, exist);
174 bool exist; local
198 bool exist; local
234 bool exist; local
255 bool exist; local
278 bool exist; local
309 bool exist; local
[all...]
/frameworks/compile/libbcc/lib/Support/
H A DLinkerConfig.cpp116 bool exist = false; local
120 mLDInfo->scripts().renameMap().insert(pWrapSymbol, exist);
125 if (exist) {
132 mLDInfo->scripts().renameMap().insert(from_real_str, exist);
135 if (exist) {
143 bool exist = false; local
147 mLDInfo->scripts().renameMap().insert(pPortableSymbol, exist);
152 if (exist) {
159 mLDInfo->scripts().renameMap().insert(from_real_str, exist);
163 if (exist) {
[all...]
/frameworks/compile/mclinker/tools/mcld/lib/Support/
H A DLinkerConfig.cpp109 bool exist = false; local
113 mLDInfo->scripts().renameMap().insert(pWrapSymbol, exist);
118 if (exist) {
125 mLDInfo->scripts().renameMap().insert(from_real_str, exist);
128 if (exist) {
136 bool exist = false; local
140 mLDInfo->scripts().renameMap().insert(pPortableSymbol, exist);
145 if (exist) {
152 mLDInfo->scripts().renameMap().insert(from_real_str, exist);
156 if (exist) {
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocationFactory.cpp145 bool exist; local
146 GOTEntry& got_entry = helper_GetGOTEntry(pReloc, pParent, exist, 0);
175 bool exist; local
177 *ld_backend.getRelDyn().getEntry(*rsym, false, exist);
325 bool exist; local
326 GOTEntry& got_entry = helper_GetGOTEntry(pReloc, pParent, exist, res);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86RelocationFactory.cpp108 bool exist; local
109 GOTEntry& got_entry = *ld_backend.getGOT().getEntry(*rsym, exist);
110 if (!exist) {
119 *ld_backend.getRelDyn().getEntry(*rsym, true, exist);
120 assert(!exist && "GOT entry not exist, but DynRel entry exist!");
169 bool exist; local
170 PLTEntry& plt_entry = *ld_backend.getPLT().getPLTEntry(*rsym, exist);
171 if (!exist) {
218 bool exist; local
[all...]
H A DX86LDBackend.cpp190 bool exist; local
191 Relocation& rel_entry = *m_pRelDyn->getEntry(pSym, false, exist);
286 // create .rel.dyn section if not exist
328 // Create .got section if it dosen't exist
331 // create .plt and .rel.plt if not exist
348 // create .rel.dyn section if not exist
386 // Create .got section if it dosen't exist
389 // create .plt and .rel.plt if not exist
414 // create .rel.dyn section if not exist
432 // Create .got section if it dosen't exist
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp252 bool exist; local
253 Relocation& rel_entry = *m_pRelDyn->getEntry(pSym, false, exist);
385 //create .rel.dyn section if not exist
437 // create .rel.dyn section if not exist
506 // Create .got section if it doesn't exist
509 // create .plt and .rel.plt if not exist
526 // create .rel.dyn section if not exist
607 // create .rel.dyn section if not exist
650 // Create .got section if it doesn't exist
654 // create .plt and .rel.plt if not exist
[all...]
H A DARMRelocationFactory.cpp142 bool exist; local
143 GOTEntry& got_entry = *ld_backend.getGOT().getEntry(*rsym, exist);
144 if (!exist) {
154 *ld_backend.getRelDyn().getEntry(*rsym, true, exist);
155 assert(!exist && "GOT entry not exist, but DynRel entry exist!");
203 bool exist; local
204 PLTEntry& plt_entry = *ld_backend.getPLT().getPLTEntry(*rsym, exist);
205 if (!exist) {
252 bool exist; local
[all...]
/frameworks/compile/mclinker/tools/llvm-mcld/
H A Dllvm-mcld.cpp706 bool exist = false; local
710 pLDInfo.scripts().renameMap().insert(*wname, exist);
715 if (exist)
721 pLDInfo.scripts().renameMap().insert(from_real_str, exist);
723 if (exist)
731 bool exist = false; local
735 pLDInfo.scripts().renameMap().insert(*pname, exist);
740 if (exist)
746 pLDInfo.scripts().renameMap().insert(from_real_str, exist);
749 if (exist)
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java963 private void assertStatsFilesExist(boolean exist) { argument
965 if (exist) {

Completed in 138 milliseconds