Searched refs:pEntry (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntryFactory.h29 void destroy(entry_type*& pEntry) { HashEntryTy::Destroy(pEntry); } argument
H A DHashEntry.h77 void destroy(HashEntryTy* pEntry);
H A DStringEntry.h120 void destroy(StringEntry<DataType>* pEntry);
/frameworks/compile/mclinker/lib/Script/
H A DEntryCmd.cpp20 EntryCmd::EntryCmd(const std::string& pEntry) argument
21 : ScriptCommand(ScriptCommand::ENTRY), m_Entry(pEntry) {
/frameworks/av/drm/libdrmframework/include/
H A DPlugInManager.h205 struct dirent* pEntry; local
207 while (NULL != pDir && NULL != (pEntry = readdir(pDir))) {
208 if (!isPlugIn(pEntry)) {
214 plugInPath += pEntry->d_name;
229 bool isPlugIn(const struct dirent* pEntry) const {
230 String8 sName(pEntry->d_name);
239 bool isDirectory(const struct dirent* pEntry) const {
240 return DT_DIR == pEntry->d_type;
246 bool isRegularFile(const struct dirent* pEntry) const {
247 return DT_REG == pEntry
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp38 void LinkerScript::setEntry(const std::string& pEntry) { argument
39 m_Entry = pEntry;
/frameworks/av/include/media/
H A DPluginLoader.h42 struct dirent* pEntry; local
43 while ((pEntry = readdir(pDir))) {
44 String8 file(pEntry->d_name);
46 String8 path = pluginDir + "/" + pEntry->d_name;
/frameworks/av/media/libmedia/include/media/
H A DPluginLoader.h42 struct dirent* pEntry; local
43 while ((pEntry = readdir(pDir))) {
44 String8 file(pEntry->d_name);
46 String8 path = pluginDir + "/" + pEntry->d_name;
/frameworks/compile/mclinker/include/mcld/Script/
H A DEntryCmd.h26 explicit EntryCmd(const std::string& pEntry);
/frameworks/base/tools/aapt/
H A DZipFile.cpp161 ZipEntry* pEntry = mEntries[idx]; local
162 if (!pEntry->getDeleted() &&
163 strcmp(fileName, pEntry->getFileName()) == 0)
165 return pEntry;
309 ZipEntry* pEntry = new ZipEntry; local
311 result = pEntry->initFromCDE(mZipFp);
314 delete pEntry;
318 mEntries.add(pEntry);
362 ZipEntry* pEntry = NULL; local
394 pEntry
541 ZipEntry* pEntry = NULL; local
875 remove(ZipEntry* pEntry) argument
916 ZipEntry* pEntry = mEntries[i]; local
971 ZipEntry* pEntry = mEntries[i]; local
[all...]
H A DZipFile.h134 status_t remove(ZipEntry* pEntry);
148 //bool uncompress(const ZipEntry* pEntry, void* buf) const;
149 //bool uncompress(const ZipEntry* pEntry, FILE* fp) const;
150 void* uncompress(const ZipEntry* pEntry);
H A DZipEntry.cpp146 const ZipEntry* pEntry)
148 mCDE = pEntry->mCDE;
164 mLFH.mExtraFieldLength = pEntry->mLFH.mExtraFieldLength;
169 memcpy(mLFH.mExtraField, pEntry->mLFH.mExtraField,
145 initFromExternal(const ZipFile* , const ZipEntry* pEntry) argument
H A DZipEntry.h175 status_t initFromExternal(const ZipFile* pZipFile, const ZipEntry* pEntry);
/frameworks/compile/mclinker/include/mcld/LD/
H A DGarbageCollection.h68 void findReferencedSections(SectionVecTy& pEntry);
69 void getEntrySections(SectionVecTy& pEntry);
/frameworks/compile/mclinker/lib/LD/
H A DGarbageCollection.cpp181 void GarbageCollection::getEntrySections(SectionVecTy& pEntry) { argument
198 pEntry.push_back(section);
224 pEntry.push_back(sect);
235 pEntry.push_back(&entry_sym->fragRef()->frag()->getParent()->getSection());
263 pEntry.push_back(sect);
283 pEntry.push_back(sect);
287 void GarbageCollection::findReferencedSections(SectionVecTy& pEntry) { argument
292 SectionVecTy::iterator entry_it, entry_end = pEntry.end();
293 for (entry_it = pEntry.begin(); entry_it != entry_end; ++entry_it) {
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86RelocationFunctions.h13 static X86Relocator::Result Name(Relocation& pEntry, \
80 static X86Relocator::Result Name(Relocation& pEntry, \
/frameworks/av/services/mediadrm/
H A DFactoryLoader.h99 struct dirent* pEntry; local
100 while ((pEntry = readdir(pDir))) {
101 String8 pluginPath = dirPath + "/" + pEntry->d_name;
136 struct dirent* pEntry; local
137 while ((pEntry = readdir(pDir))) {
138 String8 pluginPath = dirPath + "/" + pEntry->d_name;
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.h67 uint64_t getGPRelOffset(const Input& pInput, const Fragment& pEntry) const;
69 void recordGlobalEntry(const ResolveInfo* pInfo, Fragment* pEntry);
72 void recordTLSEntry(const ResolveInfo* pInfo, Fragment* pEntry,
78 Fragment* pEntry);
H A DMipsGOT.cpp379 const Fragment& pEntry) const {
380 return addr() + pEntry.getOffset() - getGPAddr(pInput);
383 void MipsGOT::recordGlobalEntry(const ResolveInfo* pInfo, Fragment* pEntry) { argument
388 m_GotGlobalEntriesMap[key] = pEntry;
404 void MipsGOT::recordTLSEntry(const ResolveInfo* pInfo, Fragment* pEntry, argument
407 m_GotTLSLdmEntry = pEntry;
413 m_GotTLSGdEntriesMap[key] = pEntry;
419 m_GotTLSGotEntriesMap[key] = pEntry;
450 Fragment* pEntry) {
455 m_GotLocalEntriesMap[key] = pEntry;
448 recordLocalEntry(const ResolveInfo* pInfo, Relocation::DWord pAddend, Fragment* pEntry) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/dex/
H A DPackageDexUsage.java210 for (Map.Entry<String, PackageUseInfo> pEntry : packageUseInfoMapClone.entrySet()) {
212 String packageName = pEntry.getKey();
213 PackageUseInfo packageUseInfo = pEntry.getValue();
349 Map.Entry<String, PackageUseInfo> pEntry = pIt.next();
350 String packageName = pEntry.getKey();
351 PackageUseInfo packageUseInfo = pEntry.getValue();
/frameworks/compile/mclinker/include/mcld/
H A DLinkerScript.h86 void setEntry(const std::string& pEntry);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocationFunctions.h40 static HexagonRelocator::Result Name(Relocation& pEntry, \
/frameworks/av/drm/libmediadrm/
H A DCrypto.cpp111 struct dirent* pEntry; local
112 while ((pEntry = readdir(pDir))) {
114 pluginPath = dirPath + "/" + pEntry->d_name;
/frameworks/compile/mclinker/include/mcld/Target/
H A DKeyEntryMap.h67 void record(const KeyType& pKey, EntryType& pEntry);
166 EntryType& pEntry) {
169 mapping.entry.entry_ptr = &pEntry;
165 record(const KeyType& pKey, EntryType& pEntry) argument
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocationFunctions.h13 static ARMRelocator::Result Name(Relocation& pEntry, ARMRelocator& pParent);

Completed in 560 milliseconds

12