Searched defs:pEntry (Results 1 - 12 of 12) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntryFactory.h29 void destroy(entry_type*& pEntry) { HashEntryTy::Destroy(pEntry); } argument
/frameworks/compile/mclinker/lib/Script/
H A DEntryCmd.cpp20 EntryCmd::EntryCmd(const std::string& pEntry) argument
21 : ScriptCommand(ScriptCommand::ENTRY), m_Entry(pEntry) {
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp38 void LinkerScript::setEntry(const std::string& pEntry) { argument
39 m_Entry = pEntry;
/frameworks/base/tools/aapt/
H A DZipEntry.cpp145 const ZipEntry* pEntry)
147 mCDE = pEntry->mCDE;
163 mLFH.mExtraFieldLength = pEntry->mLFH.mExtraFieldLength;
168 memcpy(mLFH.mExtraField, pEntry->mLFH.mExtraField,
144 initFromExternal(const ZipFile* , const ZipEntry* pEntry) argument
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...]
/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/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/av/drm/libmediadrm/
H A DCrypto.cpp110 struct dirent* pEntry; local
111 while ((pEntry = readdir(pDir))) {
113 pluginPath = dirPath + "/" + pEntry->d_name;
H A DDrm.cpp233 struct dirent* pEntry; local
234 while ((pEntry = readdir(pDir))) {
236 String8 pluginPath = dirPath + "/" + pEntry->d_name;
/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/Mips/
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/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp403 const mkvparser::SeekHead::Entry* pEntry; local
407 pEntry = pSH->GetEntry(index);
409 if (pEntry->id == 0x0C53BB6B) { // Cues ID
411 pSegment->ParseCues(pEntry->pos, pos, len);

Completed in 1666 milliseconds