/frameworks/base/tools/aapt/ |
D | ZipFile.cpp | 161 ZipEntry* pEntry = mEntries[idx]; in getEntryByName() local 162 if (!pEntry->getDeleted() && in getEntryByName() 163 strcmp(fileName, pEntry->getFileName()) == 0) in getEntryByName() 165 return pEntry; in getEntryByName() 309 ZipEntry* pEntry = new ZipEntry; in readCentralDir() local 311 result = pEntry->initFromCDE(mZipFp); in readCentralDir() 314 delete pEntry; in readCentralDir() 318 mEntries.add(pEntry); in readCentralDir() 362 ZipEntry* pEntry = NULL; in addCommon() local 394 pEntry = new ZipEntry; in addCommon() [all …]
|
D | ZipFile.h | 134 status_t remove(ZipEntry* pEntry); 150 void* uncompress(const ZipEntry* pEntry);
|
D | ZipEntry.cpp | 146 const ZipEntry* pEntry) in initFromExternal() argument 148 mCDE = pEntry->mCDE; in initFromExternal() 164 mLFH.mExtraFieldLength = pEntry->mLFH.mExtraFieldLength; in initFromExternal() 169 memcpy(mLFH.mExtraField, pEntry->mLFH.mExtraField, in initFromExternal()
|
D | ZipEntry.h | 175 status_t initFromExternal(const ZipFile* pZipFile, const ZipEntry* pEntry);
|
/frameworks/av/drm/drmserver/ |
D | PlugInManager.h | 205 struct dirent* pEntry; in getPlugInPathList() local 207 while (NULL != pDir && NULL != (pEntry = readdir(pDir))) { in getPlugInPathList() 208 if (!isPlugIn(pEntry)) { in getPlugInPathList() 214 plugInPath += pEntry->d_name; in getPlugInPathList() 229 bool isPlugIn(const struct dirent* pEntry) const { in isPlugIn() argument 230 String8 sName(pEntry->d_name); in isPlugIn() 239 bool isDirectory(const struct dirent* pEntry) const { in isDirectory() argument 240 return DT_DIR == pEntry->d_type; in isDirectory() 246 bool isRegularFile(const struct dirent* pEntry) const { in isRegularFile() argument 247 return DT_REG == pEntry->d_type; in isRegularFile() [all …]
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
D | StringEntry.tcc | 60 void StringEntryFactory<DataType>::destroy(StringEntry<DataType>* pEntry) { in destroy() argument 61 if (pEntry != NULL) { in destroy() 62 pEntry->~StringEntry<DataType>(); in destroy() 63 free(pEntry); in destroy()
|
D | HashEntryFactory.h | 29 void destroy(entry_type*& pEntry) { HashEntryTy::Destroy(pEntry); } in destroy() argument
|
D | HashEntry.tcc | 38 void EntryFactory<HashEntryTy>::destroy(HashEntryTy* pEntry) { in destroy() argument 39 delete pEntry; in destroy()
|
D | HashEntry.h | 77 void destroy(HashEntryTy* pEntry);
|
D | StringEntry.h | 120 void destroy(StringEntry<DataType>* pEntry);
|
/frameworks/av/media/libmedia/include/media/ |
D | PluginLoader.h | 42 struct dirent* pEntry; in PluginLoader() local 43 while ((pEntry = readdir(pDir))) { in PluginLoader() 44 String8 file(pEntry->d_name); in PluginLoader() 46 String8 path = pluginDir + "/" + pEntry->d_name; in PluginLoader()
|
/frameworks/compile/mclinker/lib/LD/ |
D | GarbageCollection.cpp | 181 void GarbageCollection::getEntrySections(SectionVecTy& pEntry) { in getEntrySections() argument 198 pEntry.push_back(section); in getEntrySections() 224 pEntry.push_back(sect); in getEntrySections() 235 pEntry.push_back(&entry_sym->fragRef()->frag()->getParent()->getSection()); in getEntrySections() 263 pEntry.push_back(sect); in getEntrySections() 283 pEntry.push_back(sect); in getEntrySections() 287 void GarbageCollection::findReferencedSections(SectionVecTy& pEntry) { in findReferencedSections() argument 292 SectionVecTy::iterator entry_it, entry_end = pEntry.end(); in findReferencedSections() 293 for (entry_it = pEntry.begin(); entry_it != entry_end; ++entry_it) { in findReferencedSections()
|
/frameworks/compile/mclinker/lib/Script/ |
D | EntryCmd.cpp | 20 EntryCmd::EntryCmd(const std::string& pEntry) in EntryCmd() argument 21 : ScriptCommand(ScriptCommand::ENTRY), m_Entry(pEntry) { in EntryCmd()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsGOT.cpp | 379 const Fragment& pEntry) const { in getGPRelOffset() 380 return addr() + pEntry.getOffset() - getGPAddr(pInput); in getGPRelOffset() 383 void MipsGOT::recordGlobalEntry(const ResolveInfo* pInfo, Fragment* pEntry) { in recordGlobalEntry() argument 388 m_GotGlobalEntriesMap[key] = pEntry; in recordGlobalEntry() 404 void MipsGOT::recordTLSEntry(const ResolveInfo* pInfo, Fragment* pEntry, in recordTLSEntry() argument 407 m_GotTLSLdmEntry = pEntry; in recordTLSEntry() 413 m_GotTLSGdEntriesMap[key] = pEntry; in recordTLSEntry() 419 m_GotTLSGotEntriesMap[key] = pEntry; in recordTLSEntry() 450 Fragment* pEntry) { in recordLocalEntry() argument 455 m_GotLocalEntriesMap[key] = pEntry; in recordLocalEntry()
|
D | MipsGOT.h | 67 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);
|
/frameworks/compile/mclinker/lib/Core/ |
D | LinkerScript.cpp | 38 void LinkerScript::setEntry(const std::string& pEntry) { in setEntry() argument 39 m_Entry = pEntry; in setEntry()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | GarbageCollection.h | 68 void findReferencedSections(SectionVecTy& pEntry); 69 void getEntrySections(SectionVecTy& pEntry);
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86RelocationFunctions.h | 13 static X86Relocator::Result Name(Relocation& pEntry, \ 80 static X86Relocator::Result Name(Relocation& pEntry, \
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | KeyEntryMap.h | 67 void record(const KeyType& pKey, EntryType& pEntry); 166 EntryType& pEntry) { in record() argument 169 mapping.entry.entry_ptr = &pEntry; in record()
|
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | PackageDexUsage.java | 276 for (Map.Entry<String, PackageUseInfo> pEntry : packageUseInfoMapClone.entrySet()) { in write() 278 String packageName = pEntry.getKey(); in write() 279 PackageUseInfo packageUseInfo = pEntry.getValue(); in write() 517 Map.Entry<String, PackageUseInfo> pEntry = pIt.next(); in syncData() local 518 String packageName = pEntry.getKey(); in syncData() 519 PackageUseInfo packageUseInfo = pEntry.getValue(); in syncData()
|
/frameworks/compile/mclinker/include/mcld/Script/ |
D | EntryCmd.h | 26 explicit EntryCmd(const std::string& pEntry);
|
/frameworks/compile/mclinker/include/mcld/ |
D | LinkerScript.h | 86 void setEntry(const std::string& pEntry);
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonRelocationFunctions.h | 40 static HexagonRelocator::Result Name(Relocation& pEntry, \
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMRelocationFunctions.h | 13 static ARMRelocator::Result Name(Relocation& pEntry, ARMRelocator& pParent);
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64RelocationFunctions.h | 13 static AArch64Relocator::Result Name(Relocation& pEntry, \
|