Home
last modified time | relevance | path

Searched refs:pEntry (Results 1 – 21 of 21) sorted by relevance

/frameworks/av/drm/libdrmframework/include/
DPlugInManager.h205 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/
DZipFile.cpp161 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 …]
DZipEntry.cpp145 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()
DZipFile.h134 status_t remove(ZipEntry* pEntry);
150 void* uncompress(const ZipEntry* pEntry);
DZipEntry.h174 status_t initFromExternal(const ZipFile* pZipFile, const ZipEntry* pEntry);
/frameworks/compile/mclinker/include/mcld/ADT/
DStringEntry.tcc64 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()
DHashEntryFactory.h29 void destroy(entry_type*& pEntry) in destroy() argument
30 { HashEntryTy::Destroy(pEntry); } in destroy()
DHashEntry.tcc42 void EntryFactory<HashEntryTy>::destroy(HashEntryTy* pEntry) in destroy() argument
44 delete pEntry; in destroy()
DHashEntry.h87 void destroy(HashEntryTy* pEntry);
DStringEntry.h144 void destroy(StringEntry<DataType>* pEntry);
/frameworks/compile/mclinker/include/mcld/Target/
DSymbolEntryMap.h46 void record(const ResolveInfo& pSymbol, EntryType& pEntry);
93 SymbolEntryMap<EntryType>::record(const ResolveInfo& pSymbol, EntryType& pEntry) in record() argument
97 mapping.entry = &pEntry; in record()
/frameworks/compile/mclinker/lib/Target/X86/
DX86RelocationFunctions.h11 static X86Relocator::Result Name(Relocation& pEntry, X86_32Relocator& pParent);
78 static X86Relocator::Result Name(Relocation& pEntry, X86_64Relocator& pParent);
/frameworks/av/media/libmediaplayerservice/
DCrypto.cpp110 struct dirent* pEntry; in findFactoryForScheme() local
111 while ((pEntry = readdir(pDir))) { in findFactoryForScheme()
113 pluginPath = dirPath + "/" + pEntry->d_name; in findFactoryForScheme()
DDrm.cpp159 struct dirent* pEntry; in findFactoryForScheme() local
160 while ((pEntry = readdir(pDir))) { in findFactoryForScheme()
162 String8 pluginPath = dirPath + "/" + pEntry->d_name; in findFactoryForScheme()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsGOT.cpp329 const MipsGOTEntry& pEntry) const in getGPRelOffset()
332 return addr() + pEntry.getOffset() - gpAddr; in getGPRelOffset()
335 void MipsGOT::recordEntry(const ResolveInfo* pInfo, MipsGOTEntry* pEntry) in recordEntry() argument
340 m_GotEntriesMap[key] = pEntry; in recordEntry()
DMipsGOT.h70 const MipsGOTEntry& pEntry) const;
72 void recordEntry(const ResolveInfo* pInfo, MipsGOTEntry* pEntry);
DMipsRelocationFunctions.h11 static MipsRelocator::Result Name(Relocation& pEntry, \
/frameworks/compile/mclinker/include/mcld/
DGeneralOptions.h90 void setEntry(const std::string& pEntry) in setEntry() argument
91 { m_Entry = pEntry; } in setEntry()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocationFunctions.h11 static ARMRelocator::Result Name (Relocation& pEntry, \
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonRelocationFunctions.h37 static HexagonRelocator::Result Name (Relocation& pEntry, \
/frameworks/av/media/libstagefright/matroska/
DMatroskaExtractor.cpp339 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()