/frameworks/av/drm/libdrmframework/include/ |
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 isDotOrDDot(const struct dirent* pEntry) const { in isDotOrDDot() argument 240 String8 sName(pEntry->d_name); in isDotOrDDot() 247 bool isDirectory(const struct dirent* pEntry) const { in isDirectory() argument 248 return DT_DIR == pEntry->d_type; in isDirectory() [all …]
|
/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 | ZipEntry.cpp | 145 const ZipEntry* pEntry) in initFromExternal() argument 150 memcpy(&mCDE, &pEntry->mCDE, sizeof(mCDE)); in initFromExternal() 156 strcpy((char*) mCDE.mFileName, (char*)pEntry->mCDE.mFileName); in initFromExternal() 162 strcpy((char*) mCDE.mFileComment, (char*)pEntry->mCDE.mFileComment); in initFromExternal() 169 memcpy(mCDE.mExtraField, pEntry->mCDE.mExtraField, in initFromExternal() 181 mLFH.mExtraFieldLength = pEntry->mLFH.mExtraFieldLength; in initFromExternal() 186 memcpy(mLFH.mExtraField, pEntry->mLFH.mExtraField, in initFromExternal()
|
D | ZipFile.h | 134 status_t remove(ZipEntry* pEntry); 150 void* uncompress(const ZipEntry* pEntry);
|
D | ZipEntry.h | 174 status_t initFromExternal(const ZipFile* pZipFile, const ZipEntry* pEntry);
|
/frameworks/compile/mclinker/lib/LD/ |
D | ResolveInfoFactory.cpp | 33 void ResolveInfoFactory::destroy(ResolveInfoFactory::entry_type* pEntry) in destroy() argument 35 if (NULL != pEntry) { in destroy() 36 pEntry->~entry_type(); in destroy() 37 free(pEntry); in destroy()
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
D | StringEntry.tcc | 64 void StringEntryFactory<DataType>::destroy(StringEntry<DataType>* pEntry) in destroy() argument 66 if (NULL != pEntry) { in destroy() 67 pEntry->~StringEntry<DataType>(); in destroy() 68 free(pEntry); in destroy()
|
D | HashEntry.tcc | 42 void EntryFactory<HashEntryTy>::destroy(HashEntryTy* pEntry) in destroy() argument 44 delete pEntry; in destroy()
|
D | HashEntry.h | 87 void destroy(HashEntryTy* pEntry);
|
D | StringEntry.h | 144 void destroy(StringEntry<DataType>* pEntry);
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | ResolveInfoFactory.h | 30 void destroy(entry_type* pEntry);
|
/frameworks/compile/mclinker/include/mcld/MC/ |
D | MCLDOptions.h | 109 void setEntry(const std::string& pEntry) in setEntry() argument 110 { m_Entry = pEntry; } in setEntry()
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86RelocationFunctions.h | 11 static X86RelocationFactory::Result Name (Relocation& pEntry, \
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsRelocationFunctions.h | 11 static MipsRelocationFactory::Result Name(Relocation& pEntry, \
|
/frameworks/av/media/libstagefright/matroska/ |
D | MatroskaExtractor.cpp | 339 const mkvparser::SeekHead::Entry* pEntry; in seek() local 343 pEntry = pSH->GetEntry(index); in seek() 345 if (pEntry->id == 0x0C53BB6B) { // Cues ID in seek() 347 pSegment->ParseCues(pEntry->pos, pos, len); in seek()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMRelocationFunctions.h | 11 static ARMRelocationFactory::Result Name (Relocation& pEntry, \
|