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

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntryFactory.h29 void destroy(entry_type*& pEntry) argument
30 { HashEntryTy::Destroy(pEntry); }
/frameworks/compile/mclinker/lib/Script/
H A DEntryCmd.cpp19 EntryCmd::EntryCmd(const std::string& pEntry) argument
21 m_Entry(pEntry)
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp44 void LinkerScript::setEntry(const std::string& pEntry) argument
46 m_Entry = pEntry;
/frameworks/base/tools/aapt/
H A DZipEntry.cpp145 const ZipEntry* pEntry)
150 memcpy(&mCDE, &pEntry->mCDE, sizeof(mCDE));
156 strcpy((char*) mCDE.mFileName, (char*)pEntry->mCDE.mFileName);
162 strcpy((char*) mCDE.mFileComment, (char*)pEntry->mCDE.mFileComment);
169 memcpy(mCDE.mExtraField, pEntry->mCDE.mExtraField,
181 mLFH.mExtraFieldLength = pEntry->mLFH.mExtraFieldLength;
186 memcpy(mLFH.mExtraField, pEntry->mLFH.mExtraField,
144 initFromExternal(const ZipFile* pZipFile, 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
542 ZipEntry* pEntry = NULL; local
878 remove(ZipEntry* pEntry) argument
919 ZipEntry* pEntry = mEntries[i]; local
974 ZipEntry* pEntry = mEntries[i]; local
[all...]
/frameworks/compile/mclinker/include/mcld/Target/
H A DKeyEntryMap.h69 void record(const KeyType& pKey, EntryType& pEntry);
177 KeyEntryMap<KeyType, EntryType>::record(const KeyType& pKey, EntryType& pEntry) argument
181 mapping.entry.entry_ptr = &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 isDotOrDDot(const struct dirent* pEntry) const {
240 String8 sName(pEntry->d_name);
247 bool isDirectory(const struct dirent* pEntry) const {
248 return DT_DIR == pEntry
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DCrypto.cpp110 struct dirent* pEntry; local
111 while ((pEntry = readdir(pDir))) {
113 pluginPath = dirPath + "/" + pEntry->d_name;
H A DDrm.cpp171 struct dirent* pEntry; local
172 while ((pEntry = readdir(pDir))) {
174 String8 pluginPath = dirPath + "/" + pEntry->d_name;
/frameworks/compile/mclinker/lib/LD/
H A DGarbageCollection.cpp192 void GarbageCollection::getEntrySections(SectionVecTy& pEntry) argument
210 pEntry.push_back(section);
222 pEntry.push_back(&entry_sym->fragRef()->frag()->getParent()->getSection());
247 pEntry.push_back(sect);
272 pEntry.push_back(sect);
291 pEntry.push_back(sect);
295 void GarbageCollection::findReferencedSections(SectionVecTy& pEntry) argument
301 SectionVecTy::iterator entry_it, entry_end = pEntry.end();
302 for (entry_it = pEntry.begin(); entry_it != entry_end; ++entry_it) {
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp389 const mkvparser::SeekHead::Entry* pEntry; local
393 pEntry = pSH->GetEntry(index);
395 if (pEntry->id == 0x0C53BB6B) { // Cues ID
397 pSegment->ParseCues(pEntry->pos, pos, len);

Completed in 158 milliseconds